/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #1e293b, #1e293bee);
    backdrop-filter: blur(10px);
    border-top: 1px solid #334155;
    padding: 16px 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent-text {
    color: #e2e8f0;
    font-size: 0.9rem;
    max-width: 600px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-consent-btn.accept {
    background: #10b981;
    color: white;
}

.cookie-consent-btn.accept:hover {
    background: #059669;
}

.cookie-consent-btn.decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #334155;
}

.cookie-consent-btn.decline:hover {
    background: #334155;
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

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