/* === BASE STYLES === */:root {
            --primary: #FF2D55;
            --secondary: #5E17EB;
            --accent: #00D9FF;
            --dark: #0A0E27;
            --light: #F8F9FF;
            --gradient-1: linear-gradient(135deg, #FF2D55 0%, #FF6B35 100%);
            --gradient-2: linear-gradient(135deg, #5E17EB 0%, #9D4EDD 100%);
            --gradient-3: linear-gradient(135deg, #00D9FF 0%, #7B2CBF 100%);
            --shadow-sm: 0 4px 12px rgba(255, 45, 85, 0.15);
            --shadow-md: 0 8px 24px rgba(94, 23, 235, 0.25);
            --shadow-lg: 0 16px 48px rgba(0, 217, 255, 0.3);
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--dark);
            color: var(--light);
            line-height: 1.7;
            font-size: 16px;
        }

        .container {
            max-width: 1320px;
            padding: 0 20px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--light);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--accent);
        }

        p {
            margin-bottom: 1.25rem;
            color: rgba(248, 249, 255, 0.85);
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .btn::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:hover::before {
            width: 300px;
            height: 300px;
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 45, 85, 0.4);
            color: white;
        }

        .card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 45, 85, 0.1), transparent);
            transition: left 0.6s;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            background: rgba(255, 255, 255, 0.05);
        }

        .content-image {
            max-width: 100%;
            margin: 1.5rem auto;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .content-image.portrait img {
            max-height: 350px;
            max-width: 300px;
        }

        .content-image.wide img {
            max-height: 300px;
            max-width: 100%;
        }

        .content-image figcaption {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
        }

        table {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            overflow: hidden;
        }

        th {
            background: var(--gradient-2);
            color: white;
            padding: 1rem;
        }

        td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        /* === LAYOUT STYLES === */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 45, 85, 0.1);
            padding: 1.25rem 0;
        }

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

        .logo img {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 2px 8px rgba(255, 45, 85, 0.3));
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
            transition: all 0.3s;
        }

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

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

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

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

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

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

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

        .header-container .cta-button {
            white-space: nowrap;
            padding: 10px 24px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
        }

        .site-footer {
            background: rgba(0, 0, 0, 0.4);
            border-top: 1px solid rgba(255, 45, 85, 0.2);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3, .footer-nav h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav ul li {
            margin-bottom: 0.75rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .responsible-gaming {
            color: rgba(255, 45, 85, 0.8);
            font-weight: 600;
            margin-top: 1rem;
        }

        @media (max-width: 767px) {
            .hamburger {
                display: flex;
            }

            .header-container {
                flex-wrap: wrap;
            }

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

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: rgba(10, 14, 39, 0.98);
                padding: 1rem 0;
                border-radius: 12px;
                margin-top: 1rem;
            }

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

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

            .header-container .cta-button {
                order: 2;
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .logo {
                order: 1;
            }
        }

@media (max-width: 767px) {
            .hamburger {
                display: flex;
            }

            .header-container {
                flex-wrap: wrap;
            }

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

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: rgba(10, 14, 39, 0.98);
                padding: 1rem 0;
                border-radius: 12px;
                margin-top: 1rem;
            }

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

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

            .header-container .cta-button {
                order: 2;
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .logo {
                order: 1;
            }
        }

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

            .hero-section {
                padding: 5rem 0 3rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .btn {
                padding: 14px 32px;
                font-size: 1rem;
            }

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

            .timeline-item, .strategy-item, .feature-block, .highlight-box {
                padding: 1.5rem;
            }

            .accordion-header {
                padding: 1.25rem 1.5rem;
                font-size: 1.1rem;
            }

            .accordion-body {
                padding: 0 1.5rem;
            }

            .accordion-item.active .accordion-body {
                padding: 0 1.5rem 1.25rem;
            }
        }