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

:root {
    --control: #31465a;
    --control-hover: #405c75;
    --accent: #a94727;
    --accent-hover: #87381f;
    --focus-ring: #d45b32;
    --option-surface: #fbf6ec;
    --option-hover: #f3e7d2;
    --option-border: #d7c5a5;
}

html {
    font-size: 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}

body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background-color: #ffffff;
    color: #202124;
    text-align: center;
}

.site-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px 28px;
    padding: 8px 18px;
    background: linear-gradient(90deg, #111820, #202b37);
    border-bottom: 2px solid #d45b32;
    box-shadow: 0 3px 9px rgba(17, 24, 32, 0.2);
}

.site-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    object-fit: contain;
}

.site-nav h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.site-nav a {
    display: block;
    padding: 6px 5px;
    color: #f2d39e;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.site-nav a:focus {
    outline: 2px solid #f2d39e;
    outline-offset: 2px;
}

.site-nav .current-page {
    color: #ffffff;
    background-color: rgba(212, 91, 50, 0.28);
}

.page-content,
.play-content {
    margin: auto 0;
}

@media (max-width: 640px) {
    .site-nav {
        gap: 5px 16px;
        padding: 7px 10px;
    }

    .site-logo {
        width: 44px;
        height: 44px;
    }
}
