:root {
            --primary: #0d47a1;
            --secondary: #ff6f00;
            --dark: #121212;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
        }
        .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 0.8rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary) !important;
        }
        .hero {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .game-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .game-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            background: #f8f9fa;
            border-radius: 8px;
            margin: 5px;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: var(--dark);
            color: #fff;
            padding: 4rem 0 2rem;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 4rem 0;
                min-height: 80vh;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 3rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary);
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 7px;
            top: 15px;
            width: 2px;
            height: calc(100% + 2rem);
            background: var(--primary);
        }
        .timeline-item:last-child:after {
            display: none;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(13, 71, 161, 0.1);
            color: var(--primary);
            font-weight: 600;
        }
        .contact-info i {
            width: 40px;
            color: var(--primary);
        }
