/* =====================================================================
   Sounds of Paradise — legal.css
   Shared style for About / Privacy Policy / Contact pages.
   Kept visually consistent with the game (style.css): black background,
   Lato font, same accent colors.
   ===================================================================== */

:root {
    --couleur-verte: #00ff00;
    --couleur-rouge: #ff4d4d;
    --couleur-orange: #ffa500;
    --couleur-bleue: #2299ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #eee;
    line-height: 1.6;
}

.page-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px 96px;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-nav a {
    color: #eee;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.top-nav .brand {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--couleur-verte);
}

.top-nav .brand:hover {
    text-decoration: underline;
}

.top-nav .links a {
    margin-left: 20px;
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
}

.top-nav .links a:hover,
.top-nav .links a.current {
    color: #fff;
    text-decoration: underline;
}

h1 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 2rem;
    margin-bottom: 4px;
}

.last-updated {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 32px;
}

h2 {
    font-weight: 700;
    color: var(--couleur-orange);
    margin-top: 36px;
    font-size: 1.2rem;
}

p, li {
    color: #ccc;
    font-size: 0.98rem;
}

a {
    color: var(--couleur-bleue);
}

.placeholder {
    color: var(--couleur-rouge);
    font-style: italic;
}

.back-link {
    display: inline-block;
    margin-top: 48px;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
}

.back-link:hover {
    background: #fff;
    color: #000;
}

footer.site-footer {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 64px;
}

footer.site-footer a {
    color: #888;
}
