/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 95%;
    max-width: 900px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6), 0 0 20px rgba(124, 58, 237, 0.15);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner-content p {
    color: #a0a0b0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.cookie-banner-content strong {
    color: #fff;
    font-weight: 600;
}

.cookie-banner-content a {
    color: var(--purple-mid, #8b5cf6);
    text-decoration: none;
    margin-left: 5px;
}

.cookie-banner-content a:hover {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--gradient-primary, linear-gradient(135deg, #7c3aed, #3b82f6));
    color: #fff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.4);
}

.cookie-btn-outline {
    background: transparent;
    color: #a0a0b0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-outline:hover {
    color: #fff;
    border-color: #fff;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 24px;
    }
    .cookie-banner-content p {
        text-align: left;
    }
}
