.hero-section {
            position: relative;
            background: linear-gradient(135deg, #004E89 0%, #00263E 100%);
            color: white;
            padding: 6rem 0;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -5%;
            right: -3%;
            width: 50%;
            height: 110%;
            background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -3%;
            width: 40%;
            height: 80%;
            background: radial-gradient(circle, rgba(0,217,255,0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        .hero-section h1 {
            color: white;
            text-shadow: 0 4px 24px rgba(0,0,0,0.3);
            margin-bottom: 2rem;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-content p {
            font-size: 1.1875rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
        }

        .quick-links {
            padding: 5rem 0;
            background: white;
        }

        .quick-links h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            list-style: none;
        }

        .links-grid li {
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .links-grid li:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .links-grid a {
            display: block;
            padding: 1.75rem;
            color: var(--secondary);
            font-weight: 600;
            font-size: 1.0625rem;
        }

        .registration {
            padding: 5rem 0;
            background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
        }

        .registration .container > h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .registration .container > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.125rem;
        }

        .timeline-item {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-lg);
            border-left: 6px solid var(--primary);
        }

        .game-categories {
            padding: 5rem 0;
            background: white;
        }

        .game-categories h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .game-categories .container > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.125rem;
        }

        .feature-list {
            background: linear-gradient(135deg, rgba(255,107,53,0.05) 0%, rgba(247,184,1,0.05) 100%);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .feature-list p {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .feature-list ul {
            list-style: none;
            padding-left: 0;
        }

        .feature-list li {
            padding: 0.75rem 0 0.75rem 2rem;
            position: relative;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

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

        .feature-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .mobile-app {
            padding: 5rem 0;
            background: linear-gradient(135deg, #004E89 0%, #001F3F 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .mobile-app::before {
            content: '';
            position: absolute;
            top: -3%;
            left: -3%;
            width: 35%;
            height: 80%;
            background: radial-gradient(circle, rgba(0,217,255,0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .mobile-app .container {
            position: relative;
            z-index: 1;
        }

        .mobile-app h2,
        .mobile-app h3 {
            color: white;
        }

        .mobile-app p {
            color: rgba(255,255,255,0.9);
        }

        .highlight-boxes {
            display: grid;
            gap: 2rem;
            margin: 2.5rem 0;
        }

        .highlight-box {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .highlight-box h4 {
            color: var(--accent);
            margin-bottom: 1.25rem;
        }

        .highlight-box ul {
            list-style: none;
            padding-left: 0;
        }

        .highlight-box li {
            padding: 0.75rem 0 0.75rem 2rem;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .highlight-box li:last-child {
            border-bottom: none;
        }

        .highlight-box li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .security {
            padding: 5rem 0;
            background: white;
        }

        .security h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .security .container > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.125rem;
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .security-card {
            background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            border: 2px solid rgba(0,78,137,0.1);
            transition: all 0.4s ease;
        }

        .security-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: var(--secondary);
        }

        .providers {
            padding: 5rem 0;
            background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
        }

        .providers h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .providers .container > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.125rem;
        }

        .faq {
            padding: 5rem 0;
            background: white;
        }

        .faq h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .accordion-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary);
        }

        .accordion-header {
            padding: 1.75rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.25rem;
            color: var(--secondary);
            margin: 0;
            position: relative;
        }

        .accordion-header::after {
            content: '+';
            font-size: 2rem;
            color: var(--primary);
            font-weight: 300;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .accordion-item.active .accordion-header::after {
            transform: rotate(45deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .accordion-item.active .accordion-body {
            max-height: 2000px;
        }

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

        .accordion-body p {
            margin-bottom: 1rem;
        }

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

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

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

        @media (max-width: 767px) {
            .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;
            }
        }