/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.cookie-consent.active {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(229, 9, 20, 0.1);
    animation: cookieFloat 0.6s ease;
}

@keyframes cookieFloat {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e50914, #ff4d4d);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(229, 9, 20, 0.3);
}

.cookie-consent-body {
    flex: 1;
    min-width: 0;
}

.cookie-consent-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.cookie-consent-text {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 16px;
}
.cookie-consent-text a {
    color: #e50914;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent-text a:hover {
    color: #ff4d4d;
}

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

.cookie-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.cookie-btn:active {
    transform: scale(0.96);
}

.cookie-btn-accept {
    background: #e50914;
    color: #fff;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}
.cookie-btn-accept:hover {
    background: #ff0f1a;
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

/* Мобильная адаптация */
@media (max-width: 480px) {
    .cookie-consent {
        padding: 12px;
    }
    .cookie-consent-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 12px;
        border-radius: 16px;
    }
    .cookie-consent-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 12px;
    }
    .cookie-consent-title {
        font-size: 15px;
    }
    .cookie-consent-text {
        font-size: 11px;
    }
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}
