:root {
    --bg-color: #0a0a0a;
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --terminal-bg: #151515;
    --border-color: #333333;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
}

.container {
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    color: #ffffff;
}

h2 {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

.status {
    font-family: "Courier New", Courier, monospace;
    font-size: 0.9rem;
    color: #ffffff;
    background: var(--terminal-bg);
    padding: 12px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.terminal {
    position: absolute;
    bottom: 20px;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.8rem;
    color: #444444;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    p { font-size: 0.95rem; }
    .links { gap: 15px; }
}