.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 9999;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.4s ease-out;
}

.cookie-content {
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.cookie-btn.accept {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.cookie-btn.decline {
    background: rgba(255, 77, 77, 0.4);
    color: white;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}