.consent-banner {
position: fixed;
left: 20px;
bottom: 20px;
width: 360px;
max-width: 90%;
padding: 24px 20px;
border-radius: 18px;
background: linear-gradient(
145deg,
rgba(25, 25, 25, 0.85),
rgba(40, 40, 40, 0.55)
);
backdrop-filter: blur(18px) saturate(160%);
-webkit-backdrop-filter: blur(18px) saturate(160%);
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
color: #f9f9f9;
font-size: 15px;
text-align: left;
z-index: 1000;
opacity: 0;
animation: fadeIn 0.4s ease forwards;
display: none;
}

@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}

.consent-banner p {
margin: 0 0 16px;
line-height: 1.6;
font-weight: 400;
color: #eaeaea;
}

.consent-buttons {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.consent-buttons button {
flex-grow: 1;
flex-basis: 48%;
padding: 12px 14px;
border-radius: 10px;
border: none;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.25s ease;
letter-spacing: 0.3px;
}

/* Основная кнопка */
.consent-button-primary {
background: linear-gradient(135deg, #ffffff, #e4e4e4);
color: #111;
box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}
.consent-button-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 255, 255, 0.45);
}

/* Второстепенная кнопка */
.consent-button-secondary {
background: rgba(255, 255, 255, 0.08);
color: #c8c8c8;
border: 1px solid rgba(255, 255, 255, 0.15);
}
.consent-button-secondary:hover {
background: rgba(255, 255, 255, 0.18);
color: #fff;
}

/* 📱 Адаптация для телефонов */
@media (max-width: 480px) {
.consent-banner {
left: 10px;
right: 10px;
width: auto;
padding: 20px 16px;
border-radius: 16px;
font-size: 14px;
}

.consent-buttons {
flex-direction: column;
}

.consent-buttons button {
flex-basis: 100%;
}
}


