/* skybuilds_app/static/css/style.css */
:root {
    --bg-color: #0b0e14;
    --card-bg: #161b22;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --accent-blue: #3b82f6;
    --accent-hover: #2563eb;
    --neon-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 40px 20px;
    background-color: var(--bg-color);
    color: var(--text-primary);
    text-align: center;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #30363d;
}

h1 {
    color: var(--accent-blue);
    font-size: 2.8em;
    margin-bottom: 0.2em;
    text-shadow: var(--neon-shadow);
}

p {
    color: var(--text-secondary);
    font-size: 1.1em;
    line-height: 1.6;
}

.status {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(5, 150, 105, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    font-weight: 600;
    margin: 20px 0;
}

.nav-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    padding: 16px;
    background-color: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    
    /* ADD THIS LINE: Apply the glow pulse animation */
    animation: glow-pulse 3s infinite ease-in-out;
}

.nav-links a:hover {
    background-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: var(--neon-shadow);
    transform: translateY(-2px);
    /* Pause the pulse on hover so it doesn't distract from the static hover state */
    animation-play-state: paused;
}

/* --- GLOW PULSE ANIMATION --- */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
        border-color: rgba(59, 130, 246, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.4);
    }
}

.footer-note {
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 0.9em;
}