:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0fccce;
            --light: #e6e6e6;
            --dark: #0d0d1a;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--light);
            background-color: var(--primary);
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        .navbar {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            padding-top: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(15, 204, 206, 0.2);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(to right, #0fccce, #4cd8da);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            color: var(--light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent) !important;
        }
        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent);
        }
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .display-1 {
            font-weight: 800;
            background: linear-gradient(to right, #fff 30%, var(--accent) 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #cccccc;
            margin-bottom: 2rem;
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--accent), #2ae0e2);
            border: none;
            color: var(--primary);
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(15, 204, 206, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(15, 204, 206, 0.4);
        }
        section {
            padding: 5rem 0;
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: white;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent);
        }
        .card-custom {
            background: rgba(30, 30, 46, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
        }
        .card-custom:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent), #2ae0e2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: var(--primary);
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--accent);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            padding: 20px 30px;
            background-color: rgba(30, 30, 46, 0.8);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .timeline-item:nth-child(odd)::before {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background-color: var(--accent);
            border: 4px solid var(--primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item:nth-child(even)::before {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            left: -12px;
            background-color: var(--accent);
            border: 4px solid var(--primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0;
            }
            .timeline-item:nth-child(odd)::before,
            .timeline-item:nth-child(even)::before {
                left: 18px;
            }
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(15, 204, 206, 0.3);
            margin-bottom: 1.5rem;
        }
        .contact-info-box {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 15px;
            padding: 2rem;
            border-left: 5px solid var(--accent);
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateX(10px);
        }
        .friendlink {
            background-color: var(--dark);
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            color: #aaa;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(15, 204, 206, 0.1);
            color: var(--accent);
            border-color: var(--accent);
        }
        footer {
            background-color: #0a0a14;
            padding: 3rem 0 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: #ccc;
            margin-right: 0.8rem;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
        }
        .form-control-custom {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            padding: 0.8rem 1.2rem;
        }
        .form-control-custom:focus {
            background-color: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(15, 204, 206, 0.25);
        }
        .pixel-border {
            position: relative;
            border: 2px solid var(--accent);
            border-image-slice: 1;
            border-width: 2px;
            border-image-source: linear-gradient(to right, var(--accent), #2ae0e2);
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            position: relative;
            margin-bottom: 2rem;
        }
        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .game-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10,10,20,0.9) 0%, transparent 100%);
            padding: 2rem;
        }
