:root {
            --primary: #1a237e;
            --secondary: #ff4081;
            --accent: #00bcd4;
            --dark: #121212;
            --light: #f5f5f7;
            --gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, #283593 50%, #3949ab 100%);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--primary);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--dark);
            color: #ccc;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent);
        }
        .friendlink {
            background: #f8f9fa;
            padding: 40px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px 10px;
            background: white;
            border-radius: 10px;
            border: 1px solid #ddd;
            color: #333;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none !important;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        .team-member img {
            border-radius: 50%;
            width: 180px;
            height: 180px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        .timeline-item {
            border-left: 3px solid var(--accent);
            padding-left: 30px;
            padding-bottom: 30px;
            position: relative;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -10px;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--accent);
        }
        .form-control {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #ced4da;
        }
        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 0.25rem rgba(0,188,212,0.25);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 35, 126, 0.05);
            color: var(--primary);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0,188,212,0.25);
            border-color: var(--accent);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0 60px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .game-showcase {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        .game-showcase img {
            transition: transform 0.5s ease;
        }
        .game-showcase:hover img {
            transform: scale(1.05);
        }
        .game-showcase .overlay {
            position: absolute;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            width: 100%;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        .game-showcase:hover .overlay {
            transform: translateY(0);
        }
