:root {
    --bg-dark: #0a0b10;
    --bg-card: rgba(18, 20, 28, 0.7);
    --primary: #9d4edd;
    --primary-glow: rgba(157, 78, 221, 0.5);
    --secondary: #3c096c;
    --accent: #00f2ff;
    --text-main: #f8f9fa;
    --text-dim: #adb5bd;
    --status-online: #2ecc71;
    --status-offline: #e74c3c;
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(20, 25, 40, 1) 0%, rgba(10, 11, 16, 1) 100%);
    z-index: -2;
}

.glow-sphere {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.sphere-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
}

.minimal-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    text-align: center;
}

.header {
    margin-bottom: 2rem;
}

.logo-text {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.logo-text span {
    color: var(--primary);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-dim);
    border-radius: 50%;
    margin-right: 0.6rem;
}

.status-badge.online .status-dot {
    background-color: var(--status-online);
    box-shadow: 0 0 8px var(--status-online);
}

.status-badge.offline .status-dot {
    background-color: var(--status-offline);
    box-shadow: 0 0 8px var(--status-offline);
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
}

.secondary-glow {
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.1);
}

.connect-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.connect-card p {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.join-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-weight: 700;
    gap: 0.75rem;
    box-shadow: 0 8px 30px var(--primary-glow);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.join-button svg {
    width: 22px;
    height: 22px;
}

.f8-info {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.f8-info code {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.social-minimal {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.social-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--text-main);
}

.divider {
    color: var(--glass-border);
}

.footer-minimal {
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-fade-in-delayed {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

@media (max-width: 480px) {
    .minimal-container {
        padding: 1.5rem;
    }

    .logo-text {
        font-size: 2.5rem;
    }
}