:root {
    --bg-color: #0d0d0d;
    --text-color: #e0e0e0;
    --accent-red: #b71c1c;
    --terminal-bg: #1a1a1a;
    --font-mono: 'Courier New', Courier, monospace;
    --font-headline: 'Impact', 'Arial Black', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 90%;
    padding: 20px;
}

/* Logo Styling */
.sf-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(183, 28, 28, 0.5));
}

/* Glitch Headline Styling */
h1 {
    font-family: var(--font-headline);
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
}

/* Terminal Styling */
.terminal-window {
    background-color: var(--terminal-bg);
    border: 2px solid var(--accent-red);
    border-radius: 4px;
    text-align: left;
    box-shadow: 10px 10px 0px rgba(183, 28, 28, 0.2);
    margin-bottom: 40px;
}

.terminal-header {
    background-color: #333;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #444;
}

.dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.title {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #aaa;
}

.terminal-body {
    padding: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

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

.status-blink {
    color: var(--accent-red);
    font-weight: bold;
    animation: blink 1.5s infinite;
}

.message {
    color: #888;
    margin-top: 10px;
    border-left: 3px solid var(--accent-red);
    padding-left: 10px;
}

/* Footer Links */
.footer-nav {
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.separator {
    color: #444;
    margin: 0 10px;
}

/* Animations */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .sf-logo { width: 100px; height: 100px; }
}
