:root {
    --bg-color: #060606;
    --text-color: #ffffff;
    --glow-purple: rgba(123, 47, 247, 0.7);
    /* Super intense */
    --glow-blue: rgba(47, 123, 247, 0.6);
    /* Super intense */
    --accent-color: #a370ff;
    --secondary-text: #999999;
}

/* 1. CORE RESET */
* {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

html,
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    width: 100%;
}

body {
    display: block !important;
    /* Forces natural stacking */
    overflow-x: hidden;
    overflow-y: auto;
    padding: 60px 20px !important;
    /* Minimum breathing room at top/bottom */
}

/* 2. MEGA GLOW - Restoring the "Vibe" */
.background-glow {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -1 !important;
    pointer-events: none;

    /* Huge, wide-reaching color splashes */
    background:
        radial-gradient(circle at 30% 30%, var(--glow-purple) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, var(--glow-blue) 0%, transparent 60%),
        radial-gradient(circle at center, rgba(123, 47, 247, 0.3) 0%, transparent 80%) !important;
    filter: blur(80px) !important;
    opacity: 0.8 !important;
}

/* 3. THE WRAPPER - No more centering-squish */
#main-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto !important;
    display: block !important;
    /* Stack like blocks */
    text-align: center;
}

/* 4. OVERLAP PREVENTION - Fixed spacing */
#logo-section,
#content-section,
#footer-section {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 80px !important;
    /* Massive fixed gap - overlap is impossible */
}

#brand-logo {
    width: 240px !important;
    height: auto !important;
    margin: 0 auto 20px !important;
    filter: drop-shadow(0 0 40px var(--glow-purple));
    display: block !important;
}

h1 {
    font-size: clamp(3rem, 10vw, 4rem) !important;
    font-weight: 700 !important;
    letter-spacing: -2px !important;
}

#tagline-text {
    font-size: 1.6rem !important;
    color: var(--secondary-text) !important;
    margin-bottom: 30px !important;
}

#main-badge {
    display: inline-block !important;
    padding: 12px 30px !important;
    background: rgba(123, 47, 247, 0.2) !important;
    border: 2px solid var(--accent-color) !important;
    border-radius: 100px !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 0 20px var(--glow-purple);
}

#main-description {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: #ddd !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

#footer-section {
    margin-bottom: 0 !important;
    /* Last item */
    padding-top: 40px !important;
}

#server-status {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: rgba(0, 255, 136, 0.15) !important;
    padding: 10px 22px !important;
    border-radius: 40px !important;
    border: 1px solid #00ff88 !important;
    color: #00ff88 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
}

#pulse-dot {
    width: 10px !important;
    height: 10px !important;
    background-color: #00ff88 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 12px #00ff88 !important;
    animation: blink 2s infinite !important;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        filter: brightness(1.5);
    }

    50% {
        opacity: 0.3;
        filter: brightness(0.5);
    }
}

#copyright-text {
    font-size: 0.9rem !important;
    color: #666 !important;
}