/* 
   ========================================================================
   STYLE SYSTEM: SHAOLIN INK & GOLD (ELITE EDITION)
   Designed by: World-Class UI/UX Architect
   Domain: browsepilotstack.site
   Theme: Traditional Japanese/Chinese Martial Arts Ink Wash with Premium Gold
   ========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg: #0c0c0c;
    --color-bg-alt: #141414;
    --color-card: #181816;
    --color-card-border: #2a2822;
    --color-gold: #d4af37;
    --color-gold-light: #f3e5ab;
    --color-gold-dark: #aa841c;
    --color-crimson: #8b0000;
    --color-crimson-bright: #b22222;
    --color-text: #f5f5f0;
    --color-text-muted: #b5b5a7;
    --font-display: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
}

/* Base Reset & Textures */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Subtle Ink Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 0),
                      radial-gradient(rgba(0, 0, 0, 0.9) 30%, rgba(12, 12, 12, 1) 100%);
    background-size: 24px 24px, 100% 100%;
    z-index: -1;
    pointer-events: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #080808;
    border-left: 1px solid var(--color-card-border);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border: 2px solid #080808;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Persistent Top Compliance Strip */
.top-compliance-strip {
    background: #060606;
    border-bottom: 1px solid var(--color-card-border);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-compliance-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.compliance-items {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold-dark);
    padding: 3px 8px;
    border-radius: 3px;
    color: var(--color-gold);
    font-size: 11px;
}

.compliance-badge.alert {
    background: rgba(139, 0, 0, 0.2);
    border-color: var(--color-crimson);
    color: #ff9999;
}

/* Header & Navigation */
header {
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text);
}

.logo-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--color-gold);
    background: radial-gradient(circle, var(--color-card) 60%, var(--color-gold-dark) 100%);
    box-shadow: var(--shadow-gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--color-text) 30%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    color: #0c0c0c;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: var(--color-gold-light);
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-tagline {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tagline::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--color-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-compliance-card {
    background: rgba(24, 24, 22, 0.8);
    border: 1px solid var(--color-card-border);
    border-left: 4px solid var(--color-gold);
    padding: 24px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-compliance-card h3 {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 18px;
    text-transform: uppercase;
}

.hero-compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.compliance-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

.compliance-stat svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-card-border);
    color: var(--color-text);
    padding: 12px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Kung Fu Graphic */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yin-yang-seal {
    width: 380px;
    height: 380px;
    border: 4px double var(--color-gold-dark);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    box-shadow: var(--shadow-gold), 0 0 50px rgba(0, 0, 0, 0.8);
    animation: rotateSlow 25s linear infinite;
}

.yin-yang-seal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.seal-core {
    width: 280px;
    height: 280px;
    border: 1px dashed var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Main Game Showcase Section */
.game-section {
    padding: 100px 20px;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(to right, var(--color-text), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Large Game Frame Structure */
.game-viewport-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    background: #000;
    border: 8px solid var(--color-card);
    border-image: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-card) 50%, var(--color-gold) 100%) 8;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), var(--shadow-gold);
}

.game-frame-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.game-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #080808;
}

/* Custom Controls Bar under Game Frame */
.game-controls-bar {
    background: var(--color-card);
    border-top: 2px solid var(--color-card-border);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.game-status-indicators {
    display: flex;
    gap: 15px;
}

.status-indicator {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
}

.status-dot.active {
    background-color: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
}

.game-action-buttons {
    display: flex;
    gap: 15px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-card-border);
    color: var(--color-text);
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    background: var(--color-gold);
    color: #0c0c0c;
    border-color: var(--color-gold);
}

.game-frame-compliance-note {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Feature Grid */
.features {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    padding: 40px 30px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-smooth);
    min-height: 380px; /* Force consistent size */
    overflow: visible;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
    font-size: 24px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-text);
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* How to Play Section */
.how-to-play {
    padding: 100px 20px;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-card-border);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card {
    background: var(--color-bg);
    border: 1px solid var(--color-card-border);
    padding: 30px 25px;
    border-radius: 4px;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger::after {
    content: '+';
    font-size: 24px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-trigger::after {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-content p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Legal & Static Page Container styles */
.legal-page {
    padding: 120px 20px 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    border-bottom: 1px solid var(--color-card-border);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.legal-date {
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.legal-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 10px;
}

.legal-content h2 {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 10px;
}

.legal-content h3 {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin-left: 20px;
    margin-bottom: 25px;
    color: var(--color-text-muted);
}

.legal-content li {
    margin-bottom: 10px;
}

/* Contact Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    padding: 24px;
    border-radius: 4px;
}

.info-label {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-value {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
}

.info-value a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-value a:hover {
    color: var(--color-gold);
}

.contact-form {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    padding: 40px;
    border-radius: 6px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-input, .form-textarea {
    width: 100%;
    background: var(--color-bg);
    border: 1px solid var(--color-card-border);
    padding: 12px 18px;
    border-radius: 4px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Complete Footer (Mandatory across all pages) */
footer {
    background: #060606;
    border-top: 2px solid var(--color-gold-dark);
    padding: 80px 20px 40px 20px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-compliance-text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.footer-compliance-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-title {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact-details {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact-details a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-details a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--color-card-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Functional Cookie Consent Banner */
#cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px);
    width: 90%;
    max-width: 650px;
    background: var(--color-card);
    border: 2px solid var(--color-gold);
    box-shadow: 0 30px 80px rgba(0,0,0,1), var(--shadow-gold);
    border-radius: 8px;
    padding: 30px;
    z-index: 100000;
    display: none;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.cookie-banner.visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.cookie-banner-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.cookie-banner-desc a {
    color: var(--color-gold);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-btn-primary {
    background: var(--color-gold);
    color: #0c0c0c;
    border: none;
}

.cookie-btn-primary:hover {
    background: var(--color-gold-light);
}

.cookie-btn-secondary {
    background: transparent;
    border: 1px solid var(--color-card-border);
    color: var(--color-text-muted);
}

.cookie-btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Cookie Preferences Panel inside Banner */
.cookie-settings-panel {
    display: none;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--color-card-border);
    padding-top: 20px;
    margin-top: 10px;
}

.preference-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
}

.preference-text h4 {
    font-size: 14px;
    color: var(--color-text);
}

.preference-text p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Switches */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.15);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: var(--color-text-muted);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-gold);
}

input:checked + .slider:before {
    transform: translateX(20px);
    background-color: #0c0c0c;
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Theater Mode Styles */
.theater-active .top-compliance-strip,
.theater-active header,
.theater-active .hero,
.theater-active .features,
.theater-active .how-to-play,
.theater-active .faq-section,
.theater-active footer {
    display: none !important;
}

.theater-active .game-section {
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
}

.theater-active .game-viewport-container {
    max-width: 100%;
    width: 100%;
    height: calc(100vh - 75px);
    border: none;
    border-radius: 0;
}

.theater-active .game-frame-wrapper {
    height: 100%;
    padding-bottom: 0;
}

/* Screen Width Adaptations */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-graphic {
        order: -1;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    .hero-actions {
        flex-direction: column;
    }
}