@import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;600;700;800&display=swap');

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

body {
    font-family: 'Muli', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    padding-top: 36px;
}

/* ── Laufbanner ───────────────────────────────────────── */
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.ticker-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #333738;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    overflow: hidden;
    white-space: nowrap;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: inline-flex;
    animation: ticker 18s linear infinite;
    will-change: transform;
}

.ticker-item {
    padding: 0 3rem;
    flex-shrink: 0;
}

/* ── Backdrop ─────────────────────────────────────────── */
.age-gate {
    min-height: calc(100vh - 36px - 48px);
    background: linear-gradient(160deg, #5da054 0%, #3a7535 50%, #1e4a1a 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 1rem 3rem;
}

/* ── Inner wrapper ────────────────────────────────────── */
.age-gate__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.8rem;
    width: 100%;
    max-width: 960px;
    margin: auto;
}

/* ── Modal Card ───────────────────────────────────────── */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

.age-gate__card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.age-gate__card.is-exiting {
    animation: fadeOut 0.4s ease forwards;
}

/* ── Heading ──────────────────────────────────────────── */
.age-gate__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333738;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.age-gate__subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #333738;
    margin-bottom: 1.5rem;
}

/* ── Checkbox Captcha ─────────────────────────────────── */
.captcha-wrap {
    margin: 0 auto 1.5rem;
    max-width: 380px;
    text-align: left;
}

.captcha-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    cursor: pointer;
    user-select: none;
}

.captcha-label {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
    font-size: 0.96rem;
    color: #333;
    font-weight: 500;
    flex: 1;
}

.captcha-label input[type="checkbox"] { display: none; }

.captcha-checkmark {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 3px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.captcha-label input:checked + .captcha-checkmark {
    background: #3a7535;
    border-color: #3a7535;
}

.captcha-label input:checked + .captcha-checkmark::after {
    content: "";
    display: block;
    width: 6px;
    height: 11px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

.captcha-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: #888;
    font-size: 0.62rem;
    text-align: center;
    line-height: 1.3;
    min-width: 52px;
}

.captcha-brand svg { opacity: 0.6; }

.captcha-brand strong {
    display: block;
    font-size: 0.68rem;
    color: #666;
    font-weight: 600;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.captcha-cta {
    margin-top: 1rem;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.captcha-btn {
    width: 100%;
    background: #5da054;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.captcha-btn:hover {
    background: #4a9045;
    transform: translateY(-1px);
}

/* ── Trust Badge ──────────────────────────────────────── */
.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.trust-badge__award {
    width: 52px;
    height: auto;
    flex-shrink: 0;
}

.trust-badge__info { text-align: left; }

.trust-badge__rating-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.15rem;
}

.trust-badge__score {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333738;
}

.trust-badge__stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.trust-badge__text {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.4;
}

.trust-badge__text strong {
    color: #333738;
    font-weight: 700;
}

/* ── Legal Note ───────────────────────────────────────── */
.age-gate__legal {
    font-size: 0.72rem;
    color: #bbb;
    line-height: 1.5;
}

/* ── Reviews ──────────────────────────────────────────── */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    animation: slideUp 0.45s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.review {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review__stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.review__text {
    font-size: 0.85rem;
    color: #333738;
    line-height: 1.55;
    flex: 1;
}

.review__footer {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: auto;
}

.review__meta { display: flex; flex-direction: column; }

.review__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #333738;
}

.review__role {
    font-size: 0.75rem;
    color: #888;
}

/* ── Bottom Bar ───────────────────────────────────────── */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #333738;
    border-top: 1px solid rgba(255,255,255,0.1);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 0 1.5rem;
    flex-wrap: wrap;
}

.bottom-bar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.bottom-bar__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.95;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 600px) {
    .ticker-item { padding: 0 1.2rem; }

    .bottom-bar {
        position: static;
        height: auto;
        padding: 1.2rem 0;
    }

    .bottom-bar__inner {
        gap: 0.8rem 1.4rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 1rem;
    }

    .bottom-bar__item { font-size: 0.8rem; white-space: normal; }

    .age-gate {
        min-height: calc(100vh - 36px);
        padding: 3rem 1rem 5rem;
    }

    body { padding-bottom: 0; }
}

@media (max-width: 700px) {
    .age-gate { align-items: flex-start; }

    .reviews {
        grid-template-columns: repeat(3, 260px);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
}
