body {
    background-color: #ffebee; /* Light Red */
    color: #b71c1c; /* Dark Red */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(183, 28, 28, 0.1);
    border-top: 8px solid #f44336;
    max-width: 500px;
}

.status-badge {
    background: #f44336;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
}

.region-text {
    font-size: 1.2rem;
    color: #d32f2f;
    margin-bottom: 2rem;
}

.info-box {
    background: #ffebee;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.timestamp {
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

/* Adds a nice warning pulse effect to the failover badge */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}