:root {
    --bg-color: #0f172a; /* Slate 900 */
    --text-color: #94a3b8; /* Slate 400 */
    --accent-color: #10b981; /* Emerald 500 */
    --glow: rgba(16, 185, 129, 0.5);
}

body {
    margin: 0;
    height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace; /* Terminal vibe */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

/* Status Indicator (Pulse) */
.status-ring {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 0 10px var(--glow);
}

.status-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(3); opacity: 0; }
    100% { transform: scale(3); opacity: 0; }
}

h1 {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.details {
    font-size: 0.9rem;
    line-height: 1.6;
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}
