        :root {
            --primary-coral: #FF6B6B;
            --primary-deep: #C44569;
            --accent-cyan: #00D9FF;
            --accent-mint: #7FDBDA;
            --dark-navy: #0A1128;
            --dark-slate: #1C2541;
            --text-light: #E8E9ED;
            --text-muted: #A5A9B8;
            --surface-dark: #151B2E;
            --gradient-primary: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-deep) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-mint) 100%);
            --gradient-overlay: linear-gradient(180deg, rgba(10,17,40,0.95) 0%, rgba(28,37,65,0.98) 100%);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.25);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.35);
            --shadow-glow: 0 0 32px rgba(255,107,107,0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--dark-navy);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 24px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        .nav-list a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-list a:hover {
            color: var(--primary-coral);
        }

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

        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger-menu span {
            width: 28px;
            height: 3px;
            background: var(--primary-coral);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .cta-button {
            background: var(--gradient-primary);
            color: white;
            padding: 14px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            display: inline-block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .cta-button::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: left 0.6s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: var(--shadow-glow);
            color: white;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .hero-section {
            background: var(--gradient-overlay), radial-gradient(circle at 20% 50%, rgba(255,107,107,0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(0,217,255,0.12) 0%, transparent 50%);
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,107,107,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 48px;
        }

        .promo-card, .game-card, .info-card {
            background: var(--dark-slate);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255,107,107,0.1);
        }

        .promo-card:hover, .game-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 64px rgba(255,107,107,0.2);
            border-color: var(--primary-coral);
        }

        .promo-card img, .game-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .promo-card:hover img, .game-card:hover img {
            transform: scale(1.08);
        }

        .promo-card h3, .game-card h4 {
            padding: 32px 32px 0;
        }

        .promo-card p, .promo-card ul, .promo-card h4, .game-card p {
            padding: 0 32px;
        }

        .promo-card ul, .promo-card h4:not(:first-of-type) {
            padding-top: 16px;
        }

        .promo-card {
            padding-bottom: 32px;
        }

        .game-card {
            padding-bottom: 24px;
        }

        .info-card {
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
        }

        .info-card h4 {
            margin-top: 0;
        }

        .cards-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .feature-item {
            background: var(--dark-slate);
            padding: 36px;
            border-radius: 16px;
            border-left: 4px solid var(--primary-coral);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255,107,107,0.08);
            transform: translateX(8px);
        }

        .feature-item h4 {
            margin-top: 0;
        }

        .info-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .tabs-nav {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            flex-wrap: wrap;
        }

        .tab-button {
            background: transparent;
            border: none;
            color: var(--text-muted);
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .tab-button.active {
            color: var(--primary-coral);
            border-bottom-color: var(--primary-coral);
        }

        .tab-button:hover {
            color: var(--primary-coral);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        .site-footer {
            background: var(--surface-dark);
            padding: 60px 0 32px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--primary-coral);
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            gap: 32px;
        }

        .footer-nav a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--primary-coral);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        @media (max-width: 1024px) {
            .hero-section h1 {
                font-size: 52px;
            }

            h2 {
                font-size: 42px;
            }

            .cards-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }

            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 16px;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            .nav-list.active {
                max-height: 400px;
            }

            .nav-list li {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            .hamburger-menu {
                display: flex;
            }

            .cta-button {
                order: 2;
                width: 100%;
                text-align: center;
            }

            .hero-section {
                padding: 80px 0 60px;
            }

            .hero-section h1 {
                font-size: 38px;
            }

            .hero-section p {
                font-size: 17px;
            }

            h2 {
                font-size: 36px;
            }

            h3 {
                font-size: 26px;
            }

            section {
                padding: 60px 0;
            }

            .cards-container, .cards-grid-4 {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 16px;
            }

            .tabs-nav {
                flex-direction: column;
                gap: 8px;
            }

            .tab-button {
                width: 100%;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 32px;
            }

            h2 {
                font-size: 30px;
            }

            .overview-table td {
                padding: 16px;
                font-size: 14px;
            }

            .payment-table th, .payment-table td {
                padding: 12px;
                font-size: 14px;
            }
        }    

        @media (max-width: 600px) {
            .container {
                padding: 0 16px;
            }

            .header-content {
                display: grid;
                grid-template-columns: 1fr;
                grid-template-areas:
                    "logo"
                    "hamburger"
                    "cta"
                    "nav";
                gap: 16px;
                justify-items: start;
            }

            .logo {
                grid-area: logo;
            }

            .hamburger-menu {
                grid-area: hamburger;
                justify-self: start;
            }

            .cta-button {
                grid-area: cta;
                width: 100%;
                min-width: auto;
                text-align: center;
            }

            .main-nav {
                grid-area: nav;
                justify-self: stretch;
                width: 100%;
            }

            .nav-list {
                width: 100%;
            }

            body > section.container:first-of-type {
                margin-top: 12px !important;
                padding-top: 2.5rem !important;
            }

            main > section:first-of-type {
                padding-top: 70px;
            }

            main > section:first-of-type h1,
            body > section.container:first-of-type h1 {
                margin-top: 4px;
            }
        }

@media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }

            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 16px;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            .nav-list.active {
                max-height: 400px;
            }

            .nav-list li {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            .hamburger-menu {
                display: flex;
            }

            .cta-button {
                order: 2;
                width: 100%;
                text-align: center;
            }

            .hero-section {
                padding: 80px 0 60px;
            }

            .hero-section h1 {
                font-size: 38px;
            }

            .hero-section p {
                font-size: 17px;
            }

            h2 {
                font-size: 36px;
            }

            h3 {
                font-size: 26px;
            }

            section {
                padding: 60px 0;
            }

            .cards-container, .cards-grid-4 {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 16px;
            }

            .tabs-nav {
                flex-direction: column;
                gap: 8px;
            }

            .tab-button {
                width: 100%;
                text-align: left;
            }
        }
