:root {
            --primary-dark: #0a1a2d;
            --primary-blue: #1e3a8a;
            --accent-teal: #06d6a0;
            --accent-gold: #ffd166;
            --neutral-light: #f8f9fa;
            --neutral-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--accent-gold) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-teal) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 26, 45, 0.9), rgba(10, 26, 45, 0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-blue), var(--accent-teal));
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            color: white;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(6, 214, 160, 0.4);
            color: white;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background-color: var(--neutral-light);
            border-radius: 25px;
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--primary-dark);
            color: var(--neutral-light);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin: 0 8px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .social-icon:hover {
            background-color: var(--accent-teal);
            transform: scale(1.1);
        }
        .game-card-img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card-hover:hover .game-card-img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .process-step {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .process-step::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--accent-teal);
        }
        .testimonial-card {
            border-left: 5px solid var(--accent-teal);
            padding-left: 20px;
            font-style: italic;
        }
        .news-card {
            border-top: 5px solid transparent;
            transition: border-color 0.3s;
        }
        .news-card:hover {
            border-top-color: var(--accent-teal);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(30, 58, 138, 0.05);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
