.cookies-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 700px;
    background: rgba(10, 69, 149, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    z-index: 10000;
    animation: fadeInUp 0.6s ease;
}
.text-p {
    flex: 1;
}
.font-size {
    font-size: 24px;
}
.text-area-cookies {
    display: flex; gap: 15px; align-items: flex-start;
}
.privacy-btn {
    color: #ffc107; text-decoration: underline;
}
.btn-accept { 
    background: linear-gradient(to right, #578ae7, #1a4b8d);
    color: white;
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-reject { 
    background: linear-gradient(to right, #ff6f00, #ff8f00);
    color: white;
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-ar {
    display: flex; justify-content: flex-end; gap: 12px; margin-top: 20px; flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}