/* ============================================================
   ShakeBet — light base, yellow + black, fast & minimal
   Rule: yellow = fills/borders, black = text (for contrast)
   ============================================================ */
:root {
    --bg: #faf9f6;
    --surface: #ffffff;
    --ink: #141414;
    --muted: #6b6b70;
    --line: #e8e7e3;
    --yellow: #f5c400;
    --yellow-hi: #ffd633;
    --yellow-dk: #e0b300;
    --yellow-soft: rgba(245, 196, 0, 0.16);
    --radius: 14px;
    --shadow: 0 6px 24px rgba(20, 20, 20, 0.08);
    --shadow-hover: 0 14px 34px rgba(20, 20, 20, 0.16);
    --container: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;            /* geen horizontale scroll */
    padding-bottom: 72px;          /* ruimte voor sticky bonus */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: var(--yellow-dk); box-shadow: 0 8px 20px var(--yellow-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

.btn-bonus {
    background: var(--ink);
    color: var(--yellow-hi);
    animation: bonusPulse 1.6s ease-in-out infinite;
}
.btn-bonus:hover { background: #000; transform: translateY(-1px); }
@keyframes bonusPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,196,0,.5); }
    50%      { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(245,196,0,0); }
}

/* ---------------- Header ---------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
}
.logo img { height: 40px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: border-color .15s ease;
}
.nav-links a:hover { border-color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--line);
    border-radius: 10px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------------- Banner ---------------- */
.banner {
    background: #f5efe0 url('/images/banner.png') center / cover no-repeat;
    border-bottom: 1px solid var(--line);
}
.banner-inner {
    padding: 84px 20px 96px;
    max-width: 720px;
}
.banner h1 {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 18px;
}
.banner-sub {
    font-size: clamp(16px, 2.2vw, 19px);
    color: var(--muted);
    margin-bottom: 30px;
    max-width: 560px;
}

/* ---------------- Section heads ---------------- */
.games { padding: 64px 0 56px; }
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}
.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    background: var(--yellow);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* ---------------- Slider ---------------- */
.slider-nav { display: flex; gap: 10px; }
.slider-btn {
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: 24px; line-height: 1;
    color: var(--ink);
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.slider-btn:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 2px 14px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }
.slider-track { display: contents; }

.game-card {
    flex: 0 0 auto;
    width: 240px;
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    list-style: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--yellow);
}
.game-card__media { display: block; overflow: hidden; aspect-ratio: 1 / 1; }
.game-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.game-card:hover .game-card__media img { transform: scale(1.05); }
.game-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
}
.game-card__name { font-weight: 700; font-size: 15px; }

/* ---------------- SEO text ---------------- */
.seo-text { padding: 24px 0 56px; }
.seo-text .container { max-width: 900px; }
.seo-text :is(h2, h3) { margin: 22px 0 10px; font-weight: 800; }
.seo-text p { color: var(--muted); margin-bottom: 14px; }
.seo-text a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--yellow); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--surface); border-top: 3px solid var(--yellow); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
    padding: 52px 20px 40px;
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 16px; }
.footer-about { color: var(--muted); font-size: 15px; max-width: 380px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--muted);
    transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
}
.social svg { width: 18px; height: 18px; }
.social:hover { color: var(--ink); background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }

.footer-col h3 {
    font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
    color: var(--muted); margin-bottom: 14px;
}
.footer-col a {
    display: block; font-weight: 600; font-size: 15px;
    padding: 6px 0; color: var(--ink);
    border-bottom: 2px solid transparent;
    width: fit-content;
    transition: border-color .15s ease;
}
.footer-col a:hover { border-color: var(--yellow); }

.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .container { padding: 18px 20px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ---------------- Sticky bonus ---------------- */
.sticky-bonus {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: var(--ink);
    border-top: 2px solid var(--yellow);
}
.sticky-bonus__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 20px;
}
.sticky-bonus__text { color: #fff; font-size: 15px; }
.sticky-bonus__text strong { color: var(--yellow-hi); }

/* ---------------- Responsive ---------------- */
@media (max-width: 820px) {
    .nav-toggle { display: inline-flex; }
    .primary-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        padding: 8px 20px 18px;
        display: none;
    }
    .primary-nav.open { display: flex; }
    .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav-links a:hover { border-color: var(--line); }
    .nav-actions { margin-top: 14px; }
    .nav-actions .btn { flex: 1; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    .banner-inner { padding: 60px 20px 70px; }
    .game-card { width: 200px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .sticky-bonus__text { font-size: 13px; }
    .sticky-bonus .btn { padding: 11px 16px; font-size: 14px; }
}

/* ---------------- Accessibility ---------------- */
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
