:root {
    --bg: #000;
    --fg: #fff;
    --font: "Courier New", Courier, monospace;
}

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

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
}

/* Common Headings */
h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: bold;
    letter-spacing: 2px;
}

.slogan {
    margin-top: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Countdown */
#countdown {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: 3px;
}

/* Links / Buttons */
.links,
.games {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 50px;
    width: 100%;
    max-width: 400px;
}

.link,
.game {
    border: 2px solid var(--fg);
    padding: 15px;
    text-decoration: none;
    color: var(--fg);
    font-weight: bold;
    transition: 0.2s;
}

.link:hover,
.game:hover {
    background: var(--fg);
    color: var(--bg);
}

/* Breadcrumb Navigation */
nav {
    width: 100%;
    max-width: 800px;
    text-align: left;
    margin-bottom: 50px;
    font-size: 1rem;
    opacity: 0.8;
}

nav a {
    color: var(--fg);
    text-decoration: none;
    font-weight: bold;
}

nav span {
    opacity: 0.6;
}

/* Footer */
footer {
    opacity: 0.5;
    font-size: 0.9rem;
    margin-top: 40px;
}
