/* Cookie Consent Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-wrap: wrap;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.cookie-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    max-width: 600px;
}

.cookie-text a {
    color: #a5b4fc;
    text-decoration: underline;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

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

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-popup {
        padding: 15px;
        gap: 15px;
    }

    .cookie-content {
        gap: 10px;
    }

    .cookie-icon {
        font-size: 32px;
    }

    .cookie-text {
        font-size: 13px;
        text-align: center;
    }

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

    .cookie-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}
