.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 400px;
    width: calc(100% - 48px);
    background: rgba(20, 20, 22, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    color: #f5f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    z-index: 99999;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cookie-consent-banner.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cookie-consent-banner.hide {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-consent-icon {
    font-size: 24px;
    margin-right: 12px;
    color: #FF7E00;
    animation: cookie-bounce 2s ease-in-out infinite alternate;
}

@keyframes cookie-bounce {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-3px) rotate(5deg); }
}

.cookie-consent-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    color: #ffffff;
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.5;
    color: #a1a1a6;
    margin: 0 0 20px 0;
}

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

.cookie-consent-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
    outline: none;
    box-sizing: border-box;
}

.cookie-consent-btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f5f5f7;
}

.cookie-consent-btn-decline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.cookie-consent-btn-accept {
    background: linear-gradient(135deg, #FF9F43 0%, #FF7E00 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 126, 0, 0.3);
}

.cookie-consent-btn-accept:hover {
    box-shadow: 0 6px 20px rgba(255, 126, 0, 0.4);
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.cookie-consent-btn:active {
    transform: translateY(1px);
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: calc(100% - 32px);
        max-width: none;
        padding: 20px;
    }
}
