/* ============================================
   Bandeau de confidentialité
   ============================================ */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.5s ease-out;
    border-top: 3px solid #00B4D8;
}

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

.privacy-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.privacy-banner-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.2);
    border-radius: 50%;
    color: #00B4D8;
}

.privacy-banner-text {
    flex: 1;
}

.privacy-banner-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.privacy-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.privacy-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.privacy-banner-link {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #00B4D8;
    border: 2px solid #00B4D8;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.privacy-banner-link:hover {
    background: #00B4D8;
    color: white;
}

.privacy-banner-btn {
    padding: 0.75rem 2rem;
    background: #00B4D8;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.privacy-banner-btn:hover {
    background: #0096b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-banner {
        padding: 1.5rem 1rem;
    }
    
    .privacy-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .privacy-banner-icon {
        width: 40px;
        height: 40px;
    }
    
    .privacy-banner-text strong {
        font-size: 1.1rem;
    }
    
    .privacy-banner-text p {
        font-size: 0.9rem;
    }
    
    .privacy-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .privacy-banner-link,
    .privacy-banner-btn {
        width: 100%;
        text-align: center;
    }
}
