:root {
    --bg-color: #050505;
    --text-primary: #e5e5e5;
    --text-secondary: #a3a3a3;
    
    /* THE GOLD STANDARD */
    --accent-color: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.4);
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    /* Animated Deep Background */
    background: linear-gradient(135deg, #000000, #141414, #000000);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

.container {
    padding: 2rem;
    animation: fadeIn 1.5s ease-in-out;
    max-width: 600px;
}

/* Status Badge */
.badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: rgba(255, 215, 0, 0.05); /* Very subtle gold tint */
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    animation: pulse 3s infinite;
}

/* Main Title */
h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 0 0 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;

    /* Gold Gradient Text */
    background: linear-gradient(to right, #FFD700, #FDB931, #FFFFAC, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

/* Subtitle */
p.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Back Link */
.home-btn {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

.home-btn:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    letter-spacing: 0.5px; /* Subtle expansion on hover */
}

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

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}