/* style.css */
:root {
    --bg: #0b0c10;
    --text: #e0e0e0;
    --panel: #11141a;
}

.light {
    --bg: #ffffff;
    --text: #000000;
    --panel: #f0f0f0;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
}

main {
    padding: 32px;
    max-width: 960px;
    margin: 40px auto;
    background: var(--panel);
    border-radius: 8px;
}

h1 {
    color: #9fd3ff;
    margin-bottom: 16px;
}

h2 {
    color: #c0e4ff;
    margin-top: 24px;
    margin-bottom: 8px;
}

a {
    color: #4fd1ff;
    text-decoration: none;
}

a:hover {
    color: #9fd3ff;
}

ul, ol {
    margin-left: 22px;
}

.input {
    width: 100%;
    padding: 10px;
    background: #0b0c10;
    border: 1px solid #333;
    border-radius: 6px;
    color: #e0e0e0;
}

.btn {
    width: 100%;
    padding: 12px;
    background: #4fd1ff;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.btn:hover {
    background: #9fd3ff;
}
