:root {
    --bg-color: #05070a;
    --text-primary: #ffffff;
    --text-secondary: #8a94a6;
    --accent-cyan: #00e5ff;
    --accent-blue: #00a3ff;
    --discord-color: #5865F2;
    --gold-color: #ffd700;
    --nav-text: #8a94a6;
    --nav-active: #ffffff;
    --grid-color: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Elements */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.background-grid::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 191, 255, 0.04) 50%,
        transparent
    );
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(200%); }
}





/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 10;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.status-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
}

.main-title {
    font-size: 6.5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    position: relative;
    /* Glow behind title */
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.accent-slash {
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(0, 163, 255, 0.5);
    display: inline-block;
    transform: skewX(-15deg);
    margin: 0 0.2rem;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.4rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.primary-actions {
    display: flex;
    gap: 1.25rem;
}

.btn {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.btn-white {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.4);
}

.btn-discord {
    background-color: var(--discord-color);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(88, 101, 242, 0.4);
    background-color: #4752c4;
}

.btn-outline-gold {
    background-color: rgba(255, 215, 0, 0.03);
    color: #e0bc00;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.75rem;
    padding: 0.75rem 2rem;
}

.btn-outline-gold:hover {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

@media (max-width: 900px) {
    .main-title {
        font-size: 4rem;
    }
    
    .nav-links {
        display: none;
    }
}
@media (max-width: 600px) {
    .main-title {
        font-size: 3rem;
    }
    .primary-actions {
        flex-direction: column;
    }
}
