/* Cookie consent banner — shared across all pages */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    background: #1a1a35;
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.cookie-banner-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.cookie-banner-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #94a3b8;
    margin: 0 0 16px;
}

.cookie-banner-text a {
    color: #d946ef;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #ffffff;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-banner-actions button {
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cookie-banner-actions button:hover {
    transform: translateY(-1px);
}

.cookie-banner-actions .reject {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner-actions .reject:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-banner-actions .accept {
    background: linear-gradient(135deg, #d946ef, #8b5cf6, #06b6d4);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(217, 70, 239, 0.3);
}

.cookie-banner-actions .accept:hover {
    box-shadow: 0 8px 24px rgba(217, 70, 239, 0.45);
}

@media (max-width: 520px) {
    .cookie-banner {
        bottom: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
        padding: 18px 20px;
    }
}
