/* === BASE STYLES === */:root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #F7B801;
            --dark: #0A0E27;
            --light: #F5F5F5;
            --success: #00D9FF;
            --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%);
            --gradient-2: linear-gradient(135deg, #004E89 0%, #00D9FF 100%);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
            --shadow-xl: 0 24px 64px rgba(0,0,0,0.24);
        }

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

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

        body {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--dark);
            background: var(--light);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        h3 {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            margin-bottom: 1rem;
            margin-top: 2.5rem;
        }

        h4 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            margin-bottom: 0.75rem;
        }

        p {
            margin-bottom: 1.25rem;
            font-size: 1.0625rem;
            color: #2C3E50;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--accent);
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

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

        .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: 0 8px 24px rgba(255,107,53,0.3);
        }

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

        .btn-secondary {
            background: var(--gradient-2);
            color: white;
            box-shadow: 0 8px 24px rgba(0,78,137,0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0,78,137,0.4);
        }

        .card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .content-image {
            max-width: 100%;
            margin: 2rem 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-lg);
        }

        .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.75rem;
            font-size: 0.9375rem;
            opacity: 0.7;
            font-style: italic;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        table {
            background: white;
        }

        /* === LAYOUT STYLES === */
        .site-header {
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 24px rgba(0,0,0,0.08);
            z-index: 1000;
            padding: 1rem 0;
        }

        .site-header .container {
            gap: 0.1rem;
        }

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

        .logo img {
            max-height: 50px;
            height: 50px;
            width: auto;
        }

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

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

        .nav-list a {
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
        }

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

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

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .site-footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

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

        .footer-links ul {
            display: flex;
            justify-content: center;
            gap: 2rem;
            list-style: none;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
        }

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

        .footer-info p {
            color: rgba(255,255,255,0.6);
            font-size: 0.9375rem;
            margin-bottom: 0.5rem;
        }

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

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

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

            .hamburger {
                display: flex;
            }

            .main-nav {
                width: 100%;
                display: none;
            }

            .main-nav.active {
                display: block;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                background: white;
                border-radius: 16px;
                padding: 1rem;
                box-shadow: var(--shadow-lg);
            }

            .nav-list li {
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .nav-list li:last-child {
                border-bottom: none;
            }

            .nav-list a {
                display: block;
                padding: 1rem;
            }

            .header-content .btn-primary {
                max-width: 200px;
                padding: 0.75rem 1.5rem;
                font-size: 0.9375rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

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

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

            .hero-content p {
                font-size: 1.0625rem;
            }

            .quick-links,
            .registration,
            .game-categories,
            .mobile-app,
            .security,
            .providers,
            .faq {
                padding: 2.5rem 0;
            }

            .card {
                padding: 1.5rem;
            }

            .timeline-item {
                padding: 1.75rem;
            }

            .highlight-box {
                padding: 1.5rem;
            }

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

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