:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --link-color: #333333;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --spacing-unit: 1.5rem;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #e0e0e0;
        --link-color: #e0e0e0;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.5;
    margin: 0;
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-unit);
    letter-spacing: -0.02em;
}

p {
    font-size: 1rem;
    margin-bottom: var(--spacing-unit);
    color: var(--text-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    transition: border-bottom-color 0.2s ease;
}

a:hover {
    border-bottom-color: var(--text-color);
}

@media (prefers-color-scheme: dark) {
    a {
        border-bottom-color: #555;
    }

    a:hover {
        border-bottom-color: var(--text-color);
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-unit) 0;
}

li {
    margin-bottom: 0.5rem;
}

header,
section {
    margin-bottom: 3rem;
}

.now-section h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 480px) {
    body {
        padding: 1.5rem;
    }
}