:root {
            --primary-dark: #1a1a2e;
            --secondary-accent: #00adb5;
            --highlight-glow: #00ffcc;
            --deep-space: #0f0f1f;
            --light-text: #eeeeee;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--light-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Orbitron', 'Segoe UI', sans-serif;
            font-weight: 700;
        }
        .navbar {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 173, 181, 0.3);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--secondary-accent), var(--highlight-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            color: #ccc !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: #fff !important;
        }
        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-accent), transparent);
        }
        .hero-section {
            background: linear-gradient(rgba(15, 15, 31, 0.85), rgba(26, 26, 46, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            padding: 10rem 0 6rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #fff, var(--highlight-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }
        .hero-section .lead {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: #ddd;
        }
        .pulse-btn {
            background: linear-gradient(90deg, var(--secondary-accent), #00969c);
            border: none;
            color: white;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .pulse-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 173, 181, 0.4);
            color: white;
        }
        .pulse-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
            z-index: -1;
        }
        .pulse-btn:hover::before {
            left: 100%;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
            position: relative;
        }
        .section-title h2 {
            display: inline-block;
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--secondary-accent), var(--highlight-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-accent), transparent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .card-hover {
            background: rgba(30, 30, 50, 0.7);
            border: 1px solid rgba(0, 173, 181, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-15px);
            border-color: rgba(0, 173, 181, 0.5);
            box-shadow: 0 15px 35px rgba(0, 13, 13, 0.5);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-dark), var(--deep-space));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1.5rem;
            border: 2px solid var(--secondary-accent);
            color: var(--highlight-glow);
            font-size: 2rem;
        }
        .feature-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--secondary-accent), #4cc9f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            background: rgba(40, 40, 60, 0.8);
            transition: all 0.4s;
            height: 100%;
        }
        .game-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.7s;
        }
        .game-card:hover img {
            transform: scale(1.08);
        }
        .game-card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border-color: var(--secondary-accent);
        }
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--secondary-accent);
            margin: 0 auto 1.5rem;
        }
        .contact-info-box {
            background: rgba(30, 30, 50, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            border-left: 5px solid var(--secondary-accent);
            margin-bottom: 2rem;
            transition: transform 0.3s;
        }
        .contact-info-box:hover {
            transform: translateX(10px);
        }
        .contact-icon {
            font-size: 2.5rem;
            color: var(--secondary-accent);
            margin-bottom: 1rem;
        }
        .footer {
            background-color: var(--deep-space);
            color: #aaa;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0, 173, 181, 0.2);
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--highlight-glow);
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: var(--secondary-accent);
            transform: translateY(-5px);
        }
        .friendlink {
            background: rgba(20, 20, 35, 0.9);
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.03);
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            margin: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #ddd;
            font-weight: 500;
            transition: all 0.3s;
        }
        .flink:hover {
            background: rgba(0, 173, 181, 0.15);
            border-color: var(--secondary-accent);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary-accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--highlight-glow);
            color: var(--primary-dark);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section .lead {
                font-size: 1.1rem;
            }
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
