/* Cookie Consent Banner */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1.2rem 2rem;
    background: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
    opacity: 1;
}

#cookieConsentBanner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.consent-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 600px;
}

.consent-text a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-btn {
    padding: 0.55rem 1.4rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    border: none;
    white-space: nowrap;
}

.consent-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.consent-btn--accept {
    background: var(--full-grad, linear-gradient(135deg, #6366f1, #8b5cf6));
    color: #fff;
}

.consent-btn--decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.consent-btn--decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    #cookieConsentBanner {
        flex-direction: column;
        padding: 1rem 1.2rem;
        gap: 1rem;
        text-align: center;
    }

    .consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
