.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 48px);
    max-width: 550px;
    background: rgba(18, 18, 22, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    z-index: 999999;
    color: #e8e6f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    box-sizing: border-box;
}
.cookie-banner * {
    box-sizing: border-box;
}
.cookie-banner--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.cookie-banner__title {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}
.cookie-banner__desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #a4b0be;
}
.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}
.btn-cookie {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}
.btn-cookie:active {
    transform: scale(0.98);
}
.btn-cookie--primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
}
.btn-cookie--primary:hover {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}
.btn-cookie--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #e8e6f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-cookie--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}
.btn-cookie--text {
    background: transparent;
    color: #a4b0be;
    padding-left: 8px;
    padding-right: 8px;
}
.btn-cookie--text:hover {
    color: #fff;
}
