/* CSS Reset & Variable Definitions */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #0d1117; /* Solid deep dark base */
    background-image: url('prairie-sunrise.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: #e6edf3;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    z-index: 10;
    animation: fadeIn 1.2s ease-out forwards;
}

header h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 12px;
}

header .subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #8b949e;
    margin-bottom: 40px;
}

/* Minimalist status line animation */
.status-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ff9e79; /* Warm accent matching the sunrise glow */
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.status-text {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #8b949e;
}

.fallback {
    font-size: 0.8rem;
    color: #484f58;
    margin-top: 20px;
}

.fallback a {
    color: #8b949e;
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 148, 158, 0.3);
    transition: all 0.3s ease;
}

.fallback a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 8px rgba(255, 158, 121, 0.6);
    }
}
