/**
 * Cookie Consent Banner Styles
 */

#cookieConsentBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.5);
    padding: 1.5rem 2rem;
    animation: slideUp 0.3s ease-out;
}

#cookieConsentBanner.show {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

#cookieConsentBanner.hide {
    animation: slideDown 0.3s ease-out forwards;
}

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

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    color: #e2e8f0;
}

.cookie-consent-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #e2e8f0;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a5b4fc;
}

.cookie-consent-text a {
    color: #a5b4fc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: #c084fc;
}

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

.cookie-consent-btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.cookie-consent-accept {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cookie-consent-accept:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.cookie-consent-accept:active {
    transform: translateY(0) scale(1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookieConsentBanner {
        padding: 1.25rem 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-consent-icon {
        font-size: 2rem;
        text-align: center;
    }

    .cookie-consent-text {
        min-width: auto;
        text-align: center;
    }

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

    .cookie-consent-btn {
        flex: 1;
        max-width: 300px;
    }
}

