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

:root {
    --bg-dark:    #111111;
    --bg-surface: #1a1a1a;
    --bg-card:    #202020;
    --yellow:     #e5a93b;
    --yellow-dk:  #c8911e;
    --text:       #f0f0f0;
    --muted:      #999999;
    --border:     #2c2c2c;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── HEADER ── */
header {
    background: var(--bg-surface);
    border-bottom: 2px solid var(--yellow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo img { height: 38px; width: auto; display: block; }

nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--yellow); background: rgba(229,169,59,0.07); }

/* ── CONTENT ── */
.page-wrap {
    flex: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--yellow); text-decoration: none; }

h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; margin-bottom: 0.5rem; }
.last-updated { font-size: 0.82rem; color: var(--muted); }

h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 2.5rem 0 0.75rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--yellow);
}

h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin: 1.5rem 0 0.5rem; }

p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.9rem; }

ul { margin: 0.5rem 0 0.9rem 1.5rem; }
ul li { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.4rem; }

strong { color: var(--text); }

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--yellow);
    border-radius: 0 4px 4px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.info-box p { margin: 0; font-size: 0.88rem; }

/* ── FOOTER ── */
footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}
footer p { margin-bottom: 0.4rem; font-size: 0.8rem; }
footer a { color: var(--muted); text-decoration: none; margin: 0 0.5rem; }
footer a:hover { color: var(--yellow); }

.cookie-declaration-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .nav-wrap { padding: 0 1rem; }
    .page-wrap { padding: 2.5rem 1.25rem; }
}
