:root {
            --primary: #2a3b8f;
            --secondary: #ff6b35;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --accent: #00c9b7;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #333;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--dark);
        }
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .nav-link {
            font-weight: 600;
            margin: 0 0.5rem;
            color: var(--dark) !important;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary) !important;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #2a3b8f 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        .hero .lead {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        .btn-primary {
            background: var(--secondary);
            border: none;
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background: #ff5a1f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255,107,53,0.3);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background: var(--secondary);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .game-card {
            position: relative;
            overflow: hidden;
        }
        .game-card img {
            transition: transform 0.6s;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            padding: 2rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s;
        }
        .game-card:hover .game-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        .team-member {
            text-align: center;
            padding: 2rem 1rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }
        .stats {
            background: linear-gradient(135deg, var(--primary) 0%, #1a1a2e 100%);
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent);
        }
        .contact-form .form-control {
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid #ddd;
        }
        .contact-form .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 0.25rem rgba(0,201,183,0.25);
        }
        footer {
            background: var(--dark);
            color: #aaa;
            padding: 4rem 0 2rem;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--accent);
        }
        .friendlink {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 3rem;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: #ddd;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            margin: 0.5rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .flink:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
