:root {
    --bg-dark: #070311;
    --primary-neon: #9D4EDD;
    --primary-hover: #C77DFF;
    --secondary-blue: #1A0B2E;
    --text-white: #FFFFFF;
    --text-gray: #A09DB0;
    --glass-bg: rgba(26, 11, 46, 0.4);
    --glass-border: rgba(157, 78, 221, 0.3);
    --success-green: #00FF66;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(157, 78, 221, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 255, 102, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(7, 3, 17, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.logo .neon-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    text-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--primary-neon);
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-neon), #7B2CBF);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

.glow-effect:hover {
    box-shadow: 0 0 20px var(--primary-neon), 0 0 40px var(--primary-neon);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.discord:hover {
    background-color: #5865F2;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
    border-color: #5865F2;
}

.social-icon.facebook:hover {
    background-color: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
    border-color: #1877F2;
}

.social-icon.tiktok:hover {
    background-color: #00f2fe; /* TikTok cyan */
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
    border-color: #00f2fe;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.main-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-neon);
    background: linear-gradient(to right, var(--text-white), var(--primary-neon));
    -webkit-background-clip: text;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

/* Glass Pill */
.glass-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.online-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--success-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success-green);
    animation: pulse 2s infinite;
}

.players-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        text-align: center;
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 15px;
    }
    
    .nav-actions {
        display: none;
        width: 100%;
        justify-content: center;
        gap: 20px;
        padding-top: 15px;
    }
    
    .navbar.active {
        background: rgba(7, 3, 17, 0.95);
    }

    .navbar.active .nav-links,
    .navbar.active .nav-actions {
        display: flex;
    }
    
    /* Hamburger Animation */
    .navbar.active .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .navbar.active .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .navbar.active .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 20px;
        gap: 20px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}
