/* DaveRaptor - Fast & Vanilla CSS */

:root {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --accent-color: #4CAF50; /* Raptor Green */
    --secondary-accent: #8BC34A;
    --font-stack: system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #000;
    border-bottom: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    color: var(--secondary-accent);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

main {
    flex: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.card {
    background: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

footer {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* Simple animation for the "Raptor" feel */
.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { opacity: 1; box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

