:root {
    --bg-base: #030303;
    --bg-glass: rgba(15, 15, 18, 0.6);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #3b82f6;
    /* A sleek blue glow */
    --accent-glow: rgba(59, 130, 246, 0.4);
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.5);

    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Animation */
#bg-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.overlay-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-base) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Container & Glass Card */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 850px;
    padding: 20px;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 60px rgba(255, 255, 255, 0.03) inset;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.9), 0 0 80px rgba(59, 130, 246, 0.05) inset;
    transform: translateY(-5px);
}

/* Logo */
.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.logo-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    animation: slow-pulse 4s infinite alternate ease-in-out;
}

/* Typography */
.title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 99px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success-glow);
}

.status-text {
    color: var(--success);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Real Stats Dashboard */
.real-stats {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.stat-label {
    color: #71717a;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.primary-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.blinking {
    animation: pulse-dot 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slow-pulse {
    from {
        transform: scale(0.8);
        opacity: 0.5;
    }

    to {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    .glass-card {
        padding: 24px 20px;
    }

    .real-stats {
        flex-direction: row;
        flex-wrap: wrap;
        text-align: center;
        gap: 12px;
        padding: 16px 12px;
    }

    .stat-item {
        flex: 1 1 40%;
        /* Fit side by side */
        align-items: center;
        gap: 4px;
    }

    .logo-container {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .subtitle {
        margin-bottom: 24px;
    }

    .status-indicator {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .status-text {
        font-size: 0.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-value {
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
    }

    .real-stats {
        padding: 12px;
        margin-bottom: 16px;
    }
}