/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Absolute Centering Setup */
html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #050505;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
}

/* Main Container */
.center-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.status {
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Divider */
.divider {
    width: 40px;
    height: 1px;
    background-color: #333;
    margin: 2.5rem 0;
}

/* Fun Fact Styling */
.fun-fact-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    max-width: 400px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.fun-fact-container:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.fact-label {
    display: block;
    font-size: 0.75rem;
    color: #00ff88; /* Green Accent */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.fact-text {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.5;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
