/* Cookie consent banner. Self-contained and loaded on every page, including
   ones using styles.css, tour-lp.css, funnel.css and legal.css — so everything
   is namespaced under .consent- and nothing inherits from the host page. */

.consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #141414;
    border-top: 3px solid #F4259B;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
    font-family: Arial, Helvetica, sans-serif;
    animation: consent-rise 0.25s ease-out;
}

@keyframes consent-rise {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .consent-banner { animation: none; }
}

.consent-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.consent-text {
    margin: 0;
    flex: 1;
    color: #C4C4C4;
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-text a {
    color: #F4259B;
}

.consent-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* Accept and Decline are deliberately the same size and weight. Nudging people
   toward "accept" with a faint decline link is precisely the dark pattern the
   ICO has been writing to sites about. */
.consent-btn {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #F4259B;
    transition: all 0.2s ease;
}

.consent-accept {
    background: #F4259B;
    color: #0D0D0D;
}

.consent-accept:hover {
    background: #FF6EC0;
    border-color: #FF6EC0;
}

.consent-decline {
    background: transparent;
    color: #F4259B;
}

.consent-decline:hover {
    background: rgba(244, 37, 155, 0.15);
}

.consent-btn:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .consent-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding: 1rem;
    }

    .consent-actions {
        justify-content: stretch;
    }

    .consent-btn {
        flex: 1;
        padding: 0.8rem 1rem;
    }
}
