/* Basis kleuren in de stijl van 36Win */
:root {
    --kleur-achtergrond: #050505;
    --kleur-oppervlak: #181818;
    --kleur-oppervlak-alt: #222222;
    --kleur-accent: #ff7300;
    --kleur-accent-zacht: #ff9940;
    --kleur-accent-groen: #6cc24a;
    --kleur-tekst: #f5f5f5;
    --kleur-gedempt: #b3b3b3;
    --kleur-rand: #2a2a2a;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--kleur-achtergrond);
    color: var(--kleur-tekst);
    line-height: 1.6;
}

/* Algemene lay-out hulpfuncties */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header en navigatie */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #000000 0%, #111111 40%, #000000 100%);
    border-bottom: 1px solid var(--kleur-rand);
}

.header-inhoud {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 24px;
}

.logo img {
    height: 40px;
    display: block;
}

.hoofd-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.hoofd-nav a {
    color: var(--kleur-tekst);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}

.hoofd-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--kleur-accent);
    transition: width 0.2s ease-out;
}

.hoofd-nav a:hover::after,
.hoofd-nav a:focus::after {
    width: 100%;
}

/* Header-acties */

.header-acties {
    display: flex;
    gap: 10px;
}

/* Knoppen */

.knop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
    white-space: nowrap;
}

.knop-primaire {
    background: linear-gradient(135deg, var(--kleur-accent) 0%, var(--kleur-accent-zacht) 100%);
    color: #000;
    box-shadow: 0 0 12px rgba(255, 115, 0, 0.5);
}

.knop-primaire:hover,
.knop-primaire:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(255, 153, 64, 0.75);
}

.knop-secundair {
    background: var(--kleur-accent-groen);
    color: #021006;
    box-shadow: 0 0 10px rgba(108, 194, 74, 0.5);
}

.knop-secundair:hover,
.knop-secundair:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 16px rgba(108, 194, 74, 0.75);
}

.knop-groot {
    padding: 12px 32px;
    font-size: 1.05rem;
}

.knop-klein {
    padding: 6px 14px;
    font-size: 0.85rem;
}

/* Zwevende speelknop links/onder in beeld */

.zwevende-speelknop {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 200;
    background: linear-gradient(135deg, var(--kleur-accent) 0%, var(--kleur-accent-zacht) 100%);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.zwevende-speelknop:hover,
.zwevende-speelknop:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.75);
}

/* Hero-blok */

.hero {
    background: radial-gradient(circle at top left, #ff730022 0%, transparent 40%),
                radial-gradient(circle at bottom right, #ff994022 0%, transparent 45%);
    border-bottom: 1px solid var(--kleur-rand);
}

.hero-inhoud {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    padding: 40px 0 32px;
    align-items: center;
}

.hero-tekst h1 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin: 0 0 12px;
}

.hero-tekst p {
    margin: 0 0 20px;
    color: var(--kleur-gedempt);
    max-width: 540px;
}

.hero-beeld {
    display: flex;
    justify-content: center;
}

.hero-beeld-placeholder {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    background: radial-gradient(circle at 10% 0%, #ff7300 0%, #ffb347 30%, #ff4e50 60%, #1b1b1b 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

.hero-beeld-placeholder span {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
}

/* Content-blokken */

.content {
    padding: 24px 0 40px;
}

.content-blok {
    background: var(--kleur-oppervlak);
    border-radius: 16px;
    padding: 20px 20px 18px;
    margin-bottom: 18px;
    border: 1px solid var(--kleur-rand);
}

.content-blok h2 {
    font-size: 1.35rem;
    margin: 0 0 12px;
}

.content-blok p {
    margin: 0 0 10px;
    color: var(--kleur-gedempt);
}

.content-blok ol {
    margin: 0 0 10px 20px;
    color: var(--kleur-gedempt);
}

.content-blok li {
    margin-bottom: 4px;
}

.blok-cta {
    margin-top: 12px;
}

/* Tabellen voor bonussen, spellen en betalingen */

.tabel-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 10px 0 14px;
}

.bonus-tabel,
.spellen-tabel,
.betalingen-tabel {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 640px;
}

.bonus-tabel th,
.bonus-tabel td,
.spellen-tabel th,
.spellen-tabel td,
.betalingen-tabel th,
.betalingen-tabel td {
    border: 1px solid var(--kleur-rand);
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
}

.bonus-tabel thead,
.spellen-tabel thead,
.betalingen-tabel thead {
    background: var(--kleur-oppervlak-alt);
}

.bonus-tabel tbody tr:nth-child(even),
.spellen-tabel tbody tr:nth-child(even),
.betalingen-tabel tbody tr:nth-child(even) {
    background: #141414;
}

.spellen-tabel img {
    width: 72px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* FAQ-lijst in de content */

.faq-lijst {
    margin: 0;
    padding: 0;
}

.faq-lijst dt {
    font-weight: 600;
    margin-top: 12px;
    color: var(--kleur-tekst);
}

.faq-lijst dd {
    margin: 2px 0 4px 0;
    color: var(--kleur-gedempt);
}

/* Footer */

.site-footer {
    background: #000000;
    border-top: 1px solid var(--kleur-rand);
    padding: 24px 0 16px;
    margin-top: 12px;
    font-size: 0.9rem;
}

.footer-inhoud {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-kolommen {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer-kolom h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.footer-kolom p {
    margin: 0 0 6px;
    color: var(--kleur-gedempt);
}

.footer-kolom ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-kolom li {
    margin-bottom: 4px;
}

.footer-kolom a {
    color: var(--kleur-gedempt);
    text-decoration: none;
}

.footer-kolom a:hover,
.footer-kolom a:focus {
    color: var(--kleur-accent-zacht);
    text-decoration: underline;
}

.org-naam {
    font-weight: 600;
}

.footer-opmerking {
    margin-top: 6px;
    color: var(--kleur-gedempt);
    font-size: 0.85rem;
}

.footer-onder {
    border-top: 1px solid var(--kleur-rand);
    padding-top: 10px;
    text-align: center;
    color: var(--kleur-gedempt);
    font-size: 0.8rem;
}

/* Responsieve aanpassingen */

@media (max-width: 900px) {
    .hero-inhoud {
        grid-template-columns: 1fr;
        padding-top: 28px;
    }

    .hero-beeld {
        order: -1;
    }

    .header-inhoud {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hoofd-nav ul {
        gap: 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .footer-kolommen {
        grid-template-columns: 1fr;
    }

    .hero-inhoud {
        gap: 22px;
    }

    .zwevende-speelknop {
        left: 50%;
        transform: translateX(-50%);
        bottom: 12px;
    }

    .zwevende-speelknop:hover,
    .zwevende-speelknop:focus {
        transform: translateX(-50%) translateY(-1px);
    }

    .bonus-tabel,
    .spellen-tabel,
    .betalingen-tabel {
        min-width: 520px;
    }
}
