/* GDPR Cookie Consent Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.cookie-content {
    color: #dddddd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #EC3655;
    text-decoration: none;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #EC3655;
    color: #ffffff;
}

.btn-accept:hover {
    background: #D02B47;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1100px;
    }
    .cookie-content {
        max-width: 70%;
    }
}
