:root {
    --bg-color: #0d1117;
    --card-bg: #161b22;
    --text-color: #c9d1d9;
    --accent-color: #58a6ff;
    --terminal-green: #3fb950;
    --border-color: #30363d;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: #8b949e;
}

.dot { height: 12px; width: 12px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

h1 { color: var(--accent-color); margin: 0; font-size: 2.5rem; }
h2 { color: var(--terminal-green); font-size: 1.2rem; margin-top: 2rem; }

.tagline { color: #8b949e; font-style: italic; margin-top: 0.5rem; }

ul { list-style: none; padding: 0; }
li { margin-bottom: 0.8rem; border-left: 2px solid var(--border-color); padding-left: 1rem; }
li span { color: var(--accent-color); font-weight: bold; }

.cursor { animation: blink 1s infinite; color: var(--accent-color); }

@keyframes blink { 
    0%, 100% { opacity: 1; } 
    50% { opacity: 0; } 
}

/* Link Styling */
a {
    color: #22801f; /* This uses the light blue from your variables */
    text-decoration: none;      /* Removes the default underline */
    transition: color 0.3s ease; /* Makes the color change smooth */
}

/* Hover state - what happens when you mouse over it */
a:hover {
    color: #33bf2e; /* Changes to green when hovered */
    text-decoration: underline;    /* Adds the underline back on hover */
}

/* Visited state - what happens after you've clicked it */
a:visited {
    color: #729470; /* A soft purple, common for visited links */
}

footer { margin-top: 3rem; border-top: 1px solid var(--border-color); padding-top: 1rem; text-align: right; font-size: 0.7rem; color: #8b949e; }