:root {
    --color-bg: #020720;
    --color-bg-alt: #07122c;
    --color-header: #050b28;
    --color-primary: #1e88ff;
    --color-primary-light: #33c1ff;
    --color-secondary: #ffb300;
    --color-text: #f4f7ff;
    --color-text-muted: #a1b0d8;
    --color-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.45);
    --radius-lg: 16px;
    --radius-xl: 22px;
    --transition-fast: 0.2s ease;
    --max-width: 1180px;
    --header-height: 72px;
}

*,
*::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: radial-gradient(circle at top, #192a5f 0, #020720 50%, #010315 100%);
    color: var(--color-text);
    line-height: 1.6;
}

/* Hulpfuncties */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(2, 7, 32, 0.95), rgba(4, 24, 68, 0.92));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo img {
    height: 32px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 1rem;
}

/* Navigatie */
.main-nav {
    flex: 1;
    text-align: center;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 24px;
}

.main-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--color-primary-light);
    border-color: var(--color-primary-light);
}

/* Headeracties */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Knoppen */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
}

.btn-large {
    padding: 10px 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(30, 136, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(30, 136, 255, 0.6);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary-light);
    border-color: rgba(51, 193, 255, 0.5);
}

.btn-ghost:hover {
    background: rgba(51, 193, 255, 0.08);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-text);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary), #ffd95a);
    color: #1a1300;
    box-shadow: 0 12px 28px rgba(255, 179, 0, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(255, 179, 0, 0.6);
}

.btn-hero {
    margin-top: 12px;
    font-size: 1rem;
    padding: 12px 26px;
}

.text-link {
    padding: 0;
    border: none;
    background: none;
    color: var(--color-primary-light);
    font-weight: 600;
}

.text-link:hover {
    color: #ffffff;
}

/* Hero sectie */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(51, 193, 255, 0.35), transparent 60%),
        radial-gradient(circle at bottom right, rgba(21, 101, 192, 0.6), transparent 65%),
        url("images/wolfy-hero.jpg") center/cover no-repeat;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(2, 7, 32, 0.9), rgba(2, 7, 32, 0.75), rgba(2, 7, 32, 0.9));
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 28px;
    padding: 40px 20px 56px;
}

.hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 12px;
}

.hero-text p {
    margin: 0 0 10px;
    color: var(--color-text-muted);
    max-width: 520px;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.hero-sidecard {
    background: linear-gradient(145deg, rgba(5, 11, 40, 0.98), rgba(12, 35, 80, 0.98));
    border-radius: var(--radius-xl);
    padding: 20px 20px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-sidecard h2 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.hero-sidecard ul {
    margin: 0 0 12px;
    padding-left: 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.small-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Pagina titel en secties */
.page-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.section {
    padding: 40px 0;
}

.section:nth-of-type(odd) {
    background: transparent;
}

.section:nth-of-type(even) {
    background: radial-gradient(circle at top, rgba(7, 18, 44, 0.8), rgba(2, 7, 32, 0.9));
}

.intro p {
    color: var(--color-text-muted);
}

/* Informatieblokken */
.info-section .container {
    background: rgba(5, 11, 40, 0.92);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
}

.info-section + .info-section {
    margin-top: -8px;
}

.info-section h2 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.info-section p {
    margin: 0 0 10px;
    color: var(--color-text-muted);
}

.info-section ol,
.info-section ul {
    color: var(--color-text-muted);
}

/* Tabellen */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 10px 0 14px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table thead {
    background: rgba(15, 35, 80, 0.9);
}

table th,
table td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

table th {
    font-weight: 600;
    color: var(--color-text);
}

table tr:nth-child(even) td {
    background: rgba(6, 14, 40, 0.8);
}

.bonus-table td:nth-child(1),
.payments-table td:nth-child(1),
.payouts-table td:nth-child(1),
.games-table td:nth-child(1) {
    font-weight: 600;
}

/* Spellentabel */
.games-table img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* FAQ */
.faq-list {
    margin-top: 10px;
    background: rgba(8, 18, 52, 0.9);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-list h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--color-text);
}

.faq-list p {
    margin: 0;
    color: var(--color-text-muted);
}

/* Sticky Speel-nu-knop */
.sticky-play-button {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 200;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(30, 136, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.sticky-play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(30, 136, 255, 0.8);
}

/* Footer */
.site-footer {
    background: #020513;
    border-top: 1px solid var(--color-border);
    margin-top: 40px;
    padding-top: 30px;
    color: var(--color-text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 20px;
}

.footer-column h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--color-text);
}

.footer-column p {
    margin: 0 0 8px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: var(--color-primary-light);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-address {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.org-name {
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 10px 20px 16px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Algemene links */
a {
    color: var(--color-primary-light);
}

a:hover {
    color: #ffffff;
}

/* Responsief ontwerp */
@media (max-width: 960px) {
    .hero-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-sidecard {
        margin-top: 10px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 14px;
    }

    .header-actions {
        order: 2;
    }
}

@media (max-width: 700px) {
    .info-section .container {
        padding: 18px 16px;
    }

    .hero {
        min-height: 55vh;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sticky-play-button {
        left: 50%;
        transform: translateX(-50%);
        bottom: 14px;
    }

    .sticky-play-button:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}
