:root {
    --bg-color: #1a0b2e;
    --ui-color: #764ba2;
    --text-color: #ffffff;
    --accent: #00ffcc;
    --card-bg: #251240;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: 'Courier New', Courier, monospace;
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid var(--ui-color);
    margin-bottom: 40px;
}

h1 {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h2 {
    color: var(--accent);
    border-bottom: 1px solid var(--ui-color);
    padding-bottom: 10px;
    margin-top: 30px;
}

.card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 8px var(--accent);
    text-decoration: underline;
}

.button {
    display: inline-block;
    background: var(--ui-color);
    border: 2px solid var(--accent);
    color: var(--text-color);
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 20px;
    margin-top: 20px;
    text-transform: uppercase;
}

.button:hover {
    background: var(--accent);
    color: var(--bg-color);
    text-decoration: none;
    box-shadow: 0 0 15px var(--accent);
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
}

.ghosts {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ghost-dot {
    width: 15px;
    height: 15px;
    border-radius: 50% 50% 0 0;
    display: inline-block;
}
