/* Basisopmaak en lettertype */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #050505;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Kleuren voor Casino King stijl */
:root {
    --ck-black: #000000;
    --ck-dark: #101010;
    --ck-red: #e30613;
    --ck-red-hover: #ff1f2b;
    --ck-white: #ffffff;
    --ck-grey: #bbbbbb;
    --ck-border: #242424;
}

a {
    color: var(--ck-red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Bovenste navigatiebalk */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--ck-border);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Logo linksboven */

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ck-white);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22171a, #000000);
    border: 2px solid var(--ck-red);
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-top {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.03em;
    color: var(--ck-white);
}

.logo-text-bottom {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.12em;
    color: var(--ck-red);
}

/* Menu in het midden */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--ck-grey);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--ck-red);
    transition: width 0.2s ease-out;
}

.main-nav a:hover {
    color: var(--ck-white);
    text-decoration: none;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Knoppen rechtsboven */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease-out, color 0.15s ease-out, transform 0.1s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.btn-primary {
    background: var(--ck-red);
    color: var(--ck-white);
    box-shadow: 0 0 18px rgba(227, 6, 19, 0.45);
}

.btn-primary:hover {
    background: var(--ck-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(255, 31, 43, 0.65);
}

.btn-ghost {
    background: transparent;
    color: var(--ck-white);
    border-color: var(--ck-red);
}

.btn-ghost:hover {
    background: rgba(227, 6, 19, 0.12);
}

.btn-large {
    padding: 14px 32px;
    font-size: 15px;
}

.btn-small {
    padding: 7px 14px;
    font-size: 12px;
}

/* Hero blok met grote afbeelding */

.hero {
    background: radial-gradient(circle at top left, #2a1618 0, #050505 40%, #000000 100%);
    border-bottom: 1px solid var(--ck-border);
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    padding: 40px 0 48px;
}

.hero-content {
    flex: 1 1 320px;
    min-width: 280px;
}

.hero-content h1 {
    font-size: 32px;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
}

.hero-content p {
    margin: 0 0 12px;
    color: #dddddd;
}

.hero-image {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    object-fit: cover;
}

/* Algemene contentsecties */

.content-section {
    padding: 32px 0;
    background: #050505;
}

.content-section.alt {
    background: #0b0b0b;
    border-top: 1px solid var(--ck-border);
}

.page-title {
    font-size: 26px;
    margin: 0 0 18px;
}

.content-section p {
    margin: 0 0 12px;
    color: #e0e0e0;
}

/* Blogachtige blokken per onderwerp */

.block {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.block-inner {
    padding: 4px 0 4px;
}

.block-inner h2 {
    font-size: 22px;
    margin: 0 0 14px;
}

.block-inner p {
    font-size: 15px;
}

/* Centraal CTA-blok */

.cta-center {
    margin-top: 18px;
    text-align: center;
}

/* Tabelopmaak voor bonussen, games en betalingen */

.table-wrapper {
    margin: 14px 0 16px;
    overflow-x: auto;
}

.bonus-table,
.games-table,
.payments-table,
.withdraw-table {
    width: 100%;
    border-collapse: collapse;
    background: #080808;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}

.bonus-table th,
.games-table th,
.payments-table th,
.withdraw-table th,
.bonus-table td,
.games-table td,
.payments-table td,
.withdraw-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #1c1c1c;
    vertical-align: top;
}

.bonus-table thead,
.games-table thead,
.payments-table thead,
.withdraw-table thead {
    background: #111111;
}

.bonus-table tbody tr:nth-child(even),
.games-table tbody tr:nth-child(even),
.payments-table tbody tr:nth-child(even),
.withdraw-table tbody tr:nth-child(even) {
    background: #0f0f0f;
}

.games-table img {
    max-width: 120px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FAQ-lijst */

.faq-list {
    margin-top: 8px;
}

.faq-item {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

/* Zwevende speelknop linksonder */

.floating-play-btn {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ck-red), var(--ck-red-hover));
    color: var(--ck-white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.75);
}

.floating-play-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

/* Voettekst met navigatie en adres */

.site-footer {
    background: #020202;
    border-top: 1px solid var(--ck-border);
    margin-top: 24px;
    color: #cccccc;
    font-size: 13px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 28px 0 20px;
}

.footer-column h3 {
    font-size: 15px;
    margin: 0 0 10px;
    color: var(--ck-white);
}

.footer-nav,
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li,
.footer-links li {
    margin-bottom: 6px;
}

.footer-nav a,
.footer-links a {
    color: var(--ck-grey);
    font-size: 13px;
}

.footer-nav a:hover,
.footer-links a:hover {
    color: var(--ck-white);
}

.microdata {
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid var(--ck-border);
    background: #000000;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 8px;
}

.age-warning {
    color: #ff9f9f;
}

/* Responsieve aanpassingen */

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        order: 2;
    }

    .hero-inner {
        padding-top: 28px;
    }

    .hero-content h1 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .header-actions {
        display: none;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-image img {
        max-width: 100%;
    }

    .floating-play-btn {
        left: 50%;
        transform: translateX(-50%);
        bottom: 12px;
    }

    .bonus-table,
    .games-table,
    .payments-table,
    .withdraw-table {
        font-size: 13px;
    }
}
