:root {
    --primary: #c82027;
    --secondary: #9f161c;
    --accent: #f0494f;
    --success: #c82027;
    --dark: #191c26;
    --light: #f2f2f2;
    --text-light: #f7f9ff;
    --text-dark: #141824;
    --muted-dark: rgba(247, 249, 255, 0.8);
    --muted-light: rgba(20, 24, 36, 0.8);
    --gradient-primary: linear-gradient(135deg, #f0494f 0%, #c82027 60%, #9f161c 100%);
    --gradient-secondary: linear-gradient(135deg, #c82027 0%, #9f161c 100%);
    --gradient-dark: linear-gradient(180deg, #191c26 0%, #0f1219 100%);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(200, 32, 39, 0.45);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --card-surface: #f2f2f2;
    --card-text: #141824;
    --card-muted: rgba(20, 24, 36, 0.7);
    --body-bg: #191c26;
    --text-color: var(--text-light);
    --muted-color: var(--muted-dark);
    --nav-bg: rgba(25, 28, 38, 0.95);
    --border-color: rgba(255, 255, 255, 0.08);
    --surface-overlay: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.08);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--body-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        body.dark-theme {
            --body-bg: #191c26;
            --text-color: var(--text-light);
            --muted-color: var(--muted-dark);
            --nav-bg: rgba(25, 28, 38, 0.95);
            --border-color: rgba(255, 255, 255, 0.08);
            --surface-overlay: rgba(255, 255, 255, 0.04);
            --surface-strong: rgba(255, 255, 255, 0.08);
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);
            --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
        }

        body.light-theme {
            --body-bg: #ffffff;
            --text-color: var(--text-dark);
            --muted-color: var(--muted-light);
            --nav-bg: rgba(255, 255, 255, 0.9);
            --border-color: rgba(20, 24, 36, 0.08);
            --surface-overlay: rgba(20, 24, 36, 0.04);
            --surface-strong: rgba(20, 24, 36, 0.08);
            --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 14px 32px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.15);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

        p {
            margin-bottom: 1.25rem;
            color: var(--muted-color);
            font-size: 1.1rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
            color: white;
        }

        .card {
            background: var(--card-surface);
            color: var(--card-text);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 2rem;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
            background: #ffffff;
        }

        /* === LAYOUT STYLES === */
        .site-header {
            background: #ffffff;
            backdrop-filter: blur(8px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(20, 24, 36, 0.1);
            padding: 1rem 0;
            color: var(--text-dark);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-link img {
            height: 48px;
            width: auto;
            display: block;
        }

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            background: transparent;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: var(--transition);
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2.5rem;
        }

        .nav-list a {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

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

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

        .nav-list a:hover {
            color: var(--primary);
            text-decoration: none;
        }

        .cta-button {
            background: var(--gradient-primary);
            color: #ffffff;
            padding: 12px 32px;
            border-radius: var(--border-radius);
            font-weight: 700;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: var(--shadow-md);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
            color: #ffffff;
            text-decoration: none;
        }

        .site-footer {
            background: var(--gradient-dark);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            margin-top: 5rem;
        }

        .footer-nav {
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--muted-color);
            font-weight: 500;
            transition: var(--transition);
        }

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

        @media (max-width: 767px) {
            .site-header {
                padding: 0.75rem 0;
            }

            .header-content {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
                text-align: center;
            }

            .main-nav {
                order: 3;
                width: 100%;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .logo {
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .nav-list {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #070914;
                min-height: 100vh;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 1.5rem;
                padding: 4rem 2rem 2rem;
                z-index: 999;
            }

            .nav-list::before {
                content: '';
                position: absolute;
                inset: 0;
                background: #070914;
                z-index: -1;
                pointer-events: none;
            }

            .nav-list a {
                color: #ffffff;
                font-size: 1.1rem;
                background: rgba(255, 255, 255, 0.08);
                padding: 0.75rem 1rem;
                border-radius: 8px;
                width: 100%;
            }

            .nav-list.active {
                display: flex;
            }

            .cta-button {
                order: 4;
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

@media (max-width: 767px) {
            .site-header {
                padding: 0.75rem 0;
            }

            .header-content {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .main-nav {
                order: 3;
                width: 100%;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .nav-list {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #070914;
                min-height: 100vh;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 1.5rem;
                padding: 4rem 2rem 2rem;
                z-index: 999;
            }

            .nav-list::before {
                content: '';
                position: absolute;
                inset: 0;
                background: #070914;
                z-index: -1;
                pointer-events: none;
            }

            .nav-list a {
                color: #ffffff;
                font-size: 1.1rem;
                background: rgba(255, 255, 255, 0.08);
                padding: 0.75rem 1rem;
                border-radius: 8px;
                width: 100%;
            }

            .nav-list.active {
                display: flex;
            }

            .cta-button {
                order: 4;
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

@media (max-width: 767px) {
            section {
                padding: 3rem 0;
            }

            .hero-section {
                padding: 4rem 0;
            }

            h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.5rem; }

            .tabs-nav {
                flex-direction: column;
            }

            .tab-button {
                width: 100%;
            }

            .games-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .icons-grid {
                grid-template-columns: 1fr;
            }

            .numbered-list li {
                padding-left: 3rem;
            }

            .numbered-list li::before {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 1rem;
            }

            .hero-cta {
                padding: 16px 40px;
                font-size: 1.1rem;
            }

            .comparison-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }
        }