:root {
            --primary-blue: #1a3a8f;
            --secondary-green: #00c896;
            --accent-orange: #ff7a00;
            --dark-bg: #0f1525;
            --light-bg: #f8f9ff;
            --text-dark: #2d3748;
            --text-light: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar {
            background-color: rgba(15, 21, 37, 0.95);
            backdrop-filter: blur(10px);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--secondary-green), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-green) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(15, 21, 37, 0.85), rgba(26, 58, 143, 0.9)), 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: 8rem 0 6rem;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .section-padding {
            padding: 6rem 0;
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(26, 58, 143, 0.3);
        }
        .footer {
            background-color: var(--dark-bg);
            color: #b0b7c3;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-green);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            color: #b0b7c3;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink:hover {
            background-color: var(--secondary-green);
            color: var(--dark-bg);
            transform: translateY(-3px);
            text-decoration: none;
        }
        .friendlink {
            background-color: rgba(15, 21, 37, 0.7);
            border-radius: 20px;
            padding: 3rem;
        }
        .company-logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 2rem;
            align-items: center;
        }
        .company-logo-grid img {
            filter: grayscale(100%) brightness(120%);
            opacity: 0.7;
            transition: all 0.5s;
            max-height: 60px;
            width: auto;
        }
        .company-logo-grid img:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--secondary-green), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .game-card-img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .game-card:hover .game-card-img {
            transform: scale(1.05);
        }
        .accordion-button {
            font-weight: 600;
            padding: 1.2rem 1.5rem;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 58, 143, 0.05);
            color: var(--primary-blue);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .company-logo-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 1.5rem;
            }
        }
