:root {
            --primary: #0a0a0f;
            --primary-light: #151520;
            --secondary: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-gold-light: #f4d03f;
            --accent-gold-dark: #b8860b;
            --accent-bronze: #cd7f32;
            --accent-bronze-dark: #8b4513;
            --text-primary: #e8e8e8;
            --text-secondary: #a0a0a0;
            --text-muted: #6b6b6b;
            --fire-orange: #ff6b35;
            --fire-red: #c41e3a;
            --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
            --shadow-fire: 0 0 30px rgba(255, 107, 53, 0.4);
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Lato', sans-serif;
            background: var(--primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Cinzel Decorative', serif;
            font-weight: 700;
            letter-spacing: 0.05em;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(180deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
        }
        h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: var(--accent-gold);
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), transparent);
        }
        h3 {
            font-size: clamp(1.3rem, 2vw, 1.6rem);
            color: var(--accent-bronze);
        }
        .bg-underworld {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(196, 30, 58, 0.1) 0%, transparent 40%),
                linear-gradient(180deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
        }
        .bg-underworld::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 51px),
                repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 51px);
            opacity: 0.5;
        }
        .fog-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        .fog {
            position: absolute;
            width: 200%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)' opacity='0.4'/%3E%3C/svg%3E");
            opacity: 0.08;
            animation: drift 60s linear infinite;
        }
        .fog:nth-child(2) {
            animation: drift 45s linear infinite reverse;
            opacity: 0.05;
        }
        @keyframes drift {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .embers {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        .ember {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--fire-orange);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--fire-orange), 0 0 20px var(--fire-red);
            animation: rise 8s ease-in infinite;
            opacity: 0;
        }
        @keyframes rise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) scale(1.5);
                opacity: 0;
            }
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.9) 100%);
            border-bottom: 1px solid var(--accent-gold-dark);
            backdrop-filter: blur(10px);
        }
        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }
        .logo-icon {
            width: 50px;
            height: 50px;
            position: relative;
        }
        .logo-icon::before {
            content: '🔥';
            font-size: 2rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: drop-shadow(0 0 10px var(--fire-orange));
            animation: flicker 2s ease-in-out infinite;
        }
        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        .logo-text {
            font-family: 'Cinzel Decorative', serif;
            font-size: 1.5rem;
            color: var(--accent-gold);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
            transition: var(--transition-smooth);
            padding: 0.5rem 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-bronze));
            transition: var(--transition-smooth);
        }
        .nav-link:hover {
            color: var(--accent-gold);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            margin-left: auto;
            position: relative;
            z-index: 1002;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .mobile-menu-btn .hamburger-icon {
            width: 24px;
            height: 24px;
            color: var(--accent-gold);
            flex-shrink: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: opacity 0.2s ease;
        }
        .mobile-menu-btn .hamburger-icon--close {
            opacity: 0;
        }
        .mobile-menu-btn.is-open .hamburger-icon--menu {
            opacity: 0;
        }
        .mobile-menu-btn.is-open .hamburger-icon--close {
            opacity: 1;
        }
        .nav-mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 15, 0.7);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .nav-mobile-overlay.is-open {
            opacity: 1;
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            right: 0;
            width: min(320px, 85vw);
            height: 100%;
            height: 100dvh;
            min-height: -webkit-fill-available;
            background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
            border-left: 1px solid var(--accent-gold-dark);
            z-index: 1001;
            padding: 5rem 1.5rem 2rem;
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile.is-open {
            transform: translateX(0);
        }
        .nav-mobile .nav-link {
            display: block;
            padding: 1rem 0;
            font-size: 1rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        .nav-mobile .nav-link::after {
            display: none;
        }
        .nav-mobile .nav-link:last-child {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .nav-mobile-overlay {
                display: block;
                pointer-events: none;
            }
            .nav-mobile-overlay.is-open {
                pointer-events: auto;
            }
        }
        .hades {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 6rem 2rem 4rem;
            overflow: hidden;
        }
        .hades::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(196, 30, 58, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        .hades-content {
            max-width: 800px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .hades-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(205, 127, 50, 0.1));
            border: 1px solid var(--accent-gold-dark);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
        }
        .hades-badge::before {
            content: '⚡';
        }
        .hades h1 {
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hades-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .hades-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
        }
        .stat-value {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-shadow: var(--shadow-gold);
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .hades-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            font-family: 'Cinzel', serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: var(--transition-smooth);
        }
        .btn:hover::before {
            left: 100%;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 50%, var(--accent-gold-light) 100%);
            color: var(--primary);
            border: 2px solid var(--accent-gold);
            box-shadow: 
                0 4px 15px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255,255,255,0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 8px 30px rgba(212, 175, 55, 0.5),
                var(--shadow-gold);
        }
        .btn-secondary {
            background: transparent;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold-dark);
        }
        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }
        .greek-border {
            position: relative;
            padding: 2rem;
        }
        .greek-border::before,
        .greek-border::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid var(--accent-gold-dark);
        }
        .greek-border::before {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
        }
        .greek-border::after {
            bottom: 0;
            right: 0;
            border-left: none;
            border-top: none;
        }
        .ornament {
            width: 100%;
            height: 30px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30'%3E%3Cpath d='M0,15 Q25,0 50,15 T100,15 T150,15 T200,15' fill='none' stroke='%23d4af37' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E");
            background-repeat: repeat-x;
            margin: 2rem 0;
        }
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .section {
            margin-bottom: 4rem;
            position: relative;
        }
        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .section-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(205, 127, 50, 0.1));
            border: 1px solid var(--accent-gold-dark);
            border-radius: 8px;
            font-size: 1.5rem;
        }
        .section-content {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(21, 21, 32, 0.8) 100%);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
        }
        .section-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold-dark), transparent);
        }
        .two-col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .feature-card {
            background: linear-gradient(145deg, rgba(21, 21, 32, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 1.75rem;
            position: relative;
            transition: var(--transition-smooth);
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-bronze), var(--accent-gold));
            opacity: 0;
            transition: var(--transition-smooth);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold-dark);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-card-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(205, 127, 50, 0.15));
            border-radius: 12px;
            font-size: 2rem;
            margin-bottom: 1rem;
            border: 1px solid var(--accent-gold-dark);
        }
        .feature-card h3 {
            margin-bottom: 0.75rem;
        }
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .steps-container {
            counter-reset: step;
        }
        .step-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .step-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 25px;
            top: 60px;
            width: 2px;
            height: calc(100% - 30px);
            background: linear-gradient(180deg, var(--accent-gold-dark), transparent);
        }
        .step-number {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
            border-radius: 50%;
            font-family: 'Cinzel', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            position: relative;
            z-index: 1;
        }
        .step-content h4 {
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
        }
        .step-content p {
            color: var(--text-secondary);
        }
        .casino-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }
        .casino-card {
            background: linear-gradient(145deg, rgba(21, 21, 32, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transition: var(--transition-smooth);
        }
        .casino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .casino-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--shadow-gold);
        }
        .casino-header {
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        .casino-rank {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
            border-radius: 8px;
            font-family: 'Cinzel', serif;
            font-weight: 700;
            color: var(--primary);
            font-size: 1.25rem;
        }
        .casino-name {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: var(--accent-gold);
        }
        .casino-body {
            padding: 1.5rem;
        }
        .casino-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        .casino-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .casino-features li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.15);
            border-radius: 50%;
            color: var(--accent-gold);
            font-size: 0.85rem;
        }
        .faq-item {
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        .faq-question {
            width: 100%;
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            text-align: left;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .faq-question:hover {
            color: var(--accent-gold-light);
        }
        .faq-question::after {
            content: '+';
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            font-size: 1.25rem;
            transition: var(--transition-smooth);
        }
        .faq-item.active .faq-question::after {
            content: '−';
            background: var(--accent-gold);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        .faq-answer p {
            padding-bottom: 1.5rem;
            color: var(--text-secondary);
        }
        .paytable {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }
        .paytable th,
        .paytable td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        .paytable th {
            font-family: 'Cinzel', serif;
            color: var(--accent-gold);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            background: rgba(212, 175, 55, 0.05);
        }
        .paytable td {
            color: var(--text-secondary);
        }
        .paytable tr:hover td {
            background: rgba(212, 175, 55, 0.03);
        }
        .symbol-preview {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 8px;
            font-size: 1.5rem;
        }
        .info-box {
            display: flex;
            gap: 1rem;
            padding: 1.25rem;
            background: rgba(212, 175, 55, 0.05);
            border-left: 4px solid var(--accent-gold);
            border-radius: 0 8px 8px 0;
            margin: 1rem 0;
        }
        .info-box-icon {
            font-size: 1.5rem;
        }
        .info-box-content h4 {
            color: var(--accent-gold);
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        .info-box-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .site-footer {
            margin-top: 4rem;
            padding: 3rem 2rem;
            background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.98) 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .footer-logo {
            font-family: 'Cinzel Decorative', serif;
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        .footer-text {
            color: var(--text-muted);
            font-size: 0.9rem;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }
        .footer-ornament {
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-gold-dark), transparent);
            margin: 0 auto 1.5rem;
        }
        .footer-disclaimer {
            font-size: 0.8rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .header-inner {
                position: relative;
            }
            .mobile-menu-btn {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                order: 2;
            }
            .hades-stats {
                gap: 1.5rem;
            }
            .stat-value {
                font-size: 1.75rem;
            }
            .section-content {
                padding: 1.5rem;
            }
            .step-item {
                flex-direction: column;
                gap: 1rem;
            }
            .step-item:not(:last-child)::after {
                display: none;
            }
            .paytable {
                font-size: 0.85rem;
            }
            .paytable th,
            .paytable td {
                padding: 0.75rem 0.5rem;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--accent-gold-dark), var(--accent-bronze));
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-gold);
        }
        .text-gold { color: var(--accent-gold); }
        .text-bronze { color: var(--accent-bronze); }
        .text-muted { color: var(--text-muted); }
        @keyframes pulse-gold {
            0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
            50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
        }
        .pulse-gold {
            animation: pulse-gold 2s ease-in-out infinite;
        }
        .language-container {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  max-width: 200px;
}

.language-selector {
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--accent-gold-dark);
  background-color: var(--primary-light);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.language-selector:hover {
  border-color: var(--accent-gold);
  background-color: #222;
}