/* style.css – modern, dark‑mode friendly */
:root {
    --bg: #1e1e2f;
    --card: #262637;
    --text: #e0e0ff;
    --accent: #7c4dff;   /* neon purple */
    --font: 'Inter', sans-serif;
    --radius: 12px;
}

/* Light‑mode fallback */
@media (prefers-color-scheme: light) {
    :root {
        --bg: #f5f5fa;
        --card: #ffffff;
        --text: #212121;
        --accent: #6200ea;
    }
}

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

header {
    background: var(--card);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--accent);
    border-radius: 0 0 var(--radius) var(--radius);
}

h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--accent);
}

.content {
    flex: 1;
    max-width: 800px;
    margin: 2rem auto;
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

h2 {
    margin-top: 1.5rem;
    color: var(--accent);
}

ul {
    list-style: disc inside;
    margin-left: 1rem;
}

a {
    color: var(--accent);
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #777;
}