* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #3b1b7a 0%, #090013 55%, #050008 100%);
    color: #f7f2ff;
    line-height: 1.6;
}

.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 0, 12, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #ffecb3, #ffb300 40%, #ff6f00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b0b3b;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.08),
        0 12px 24px rgba(0, 0, 0, 0.6);
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
}

.main-nav {
    flex: 1;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #e2d9ff;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.2rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffb300, #ff6f91);
    transition: width 0.2s ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.12s ease-out,
        box-shadow 0.12s ease-out,
        background 0.12s ease-out,
        border-color 0.12s ease-out,
        color 0.12s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb300, #ff6f00);
    color: #1b0b3b;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.btn-ghost {
    background: transparent;
    color: #f7f2ff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c2aff, #b832ff);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.75);
}

.btn-lg {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
}

.btn-table {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb300, #ff6f91);
    color: #1b0b3b;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}

.btn-table:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.75);
}

.btn-large-cta {
    margin-top: 0.5rem;
}

/* Hero */

.hero {
    padding: 3.5rem 0 2.5rem;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 32rem;
    color: #e1d4ff;
    margin-bottom: 1.25rem;
}

.hero-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #c1b5e9;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: radial-gradient(circle at 20% 0%, #ffe082 0%, #ffb300 35%, #ff6f00 70%, #4a217f 100%);
    border-radius: 1.5rem;
    padding: 1.5rem 1.4rem;
    color: #260b2b;
    width: 100%;
    max-width: 320px;
    position: relative;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.85),
        0 0 0 2px rgba(255, 255, 255, 0.15);
}

.hero-badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: rgba(10, 0, 30, 0.75);
    color: #ffecb3;
}

.hero-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-card-amount {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

/* Intro */

.intro-section {
    padding: 1.5rem 0 2.5rem;
}

.intro-section h1 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.intro-section p {
    margin-bottom: 0.75rem;
    color: #e6ddff;
}

/* Info-blokken */

.info-section {
    padding: 2rem 0 3rem;
    background: radial-gradient(circle at top, rgba(95, 54, 180, 0.35) 0%, rgba(5, 0, 12, 0.98) 55%);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-block {
    background: radial-gradient(circle at top left, rgba(83, 53, 180, 0.75), rgba(12, 5, 40, 0.9));
    border-radius: 1.25rem;
    padding: 1.4rem 1.4rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.75);
}

.info-block h2 {
    font-size: 1.3rem;
    margin-bottom: 0.9rem;
}

.info-block h3 {
    font-size: 1.05rem;
    margin: 0.6rem 0 0.35rem;
}

.info-block p {
    margin-bottom: 0.7rem;
    color: #f1e8ff;
}

.info-block ul,
.info-block ol {
    margin-left: 1.3rem;
    margin-bottom: 0.7rem;
}

.info-block li {
    margin-bottom: 0.25rem;
}

/* Tabellen */

.table-wrapper {
    margin: 0.9rem 0 1rem;
    overflow-x: auto;
}

.bonus-table,
.pay-table,
.games-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.bonus-table th,
.bonus-table td,
.pay-table th,
.pay-table td,
.games-table th,
.games-table td {
    padding: 0.6rem 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    vertical-align: top;
}

.bonus-table thead tr,
.pay-table thead tr,
.games-table thead tr {
    background: rgba(10, 0, 40, 0.8);
}

.bonus-table th,
.pay-table th,
.games-table th {
    text-align: left;
    font-weight: 600;
}

.games-table img {
    width: 60px;
    height: 40px;
    border-radius: 0.4rem;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    margin-right: 0.6rem;
}

.game-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fef6ff;
}

.game-link span {
    font-weight: 600;
}

/* FAQ schema */

.faq-schema {
    margin-top: 0.5rem;
}

.faq-item {
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.faq-item p {
    margin-bottom: 0.3rem;
}

/* Footer */

.site-footer {
    background: #050008;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: 2rem 1.5rem 1.5rem;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.footer-column p {
    font-size: 0.9rem;
    color: #d5c9ff;
}

.footer-column ul {
    list-style: none;
    margin-top: 0.35rem;
}

.footer-column li {
    margin-bottom: 0.3rem;
}

.footer-column a {
    color: #ffdf6b;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-age {
    margin-top: 0.8rem;
    font-weight: 600;
}

.microdata-org {
    font-size: 0.9rem;
    color: #e0d7ff;
}

.org-name {
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.org-contact {
    margin-top: 0.4rem;
}

.footer-disclaimer {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #cbbfff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1.5rem 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #b9aedf;
}

/* Zwevende CTA */

.floating-cta {
    position: fixed;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 60;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #ffb300, #ff6f91);
    color: #1b0b3b;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        transform 0.12s ease-out,
        box-shadow 0.12s ease-out,
        opacity 0.12s ease-out;
}

.floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
}

/* Responsief */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .main-nav ul {
        justify-content: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .header-inner {
        flex-wrap: wrap;
        row-gap: 0.75rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero {
        padding-top: 2.3rem;
    }

    .floating-cta {
        left: 50%;
        transform: translateX(-50%);
    }

    .floating-cta:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}
