.cookie-consent{
  position:fixed;
  right:max(20px, env(safe-area-inset-right));
  bottom:max(20px, env(safe-area-inset-bottom));
  width:min(420px, calc(100vw - 24px));
  z-index:9999;
  border:1px solid rgba(28,33,43,.10);
  border-radius:24px;
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 55px rgba(17,24,39,.16);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  padding:22px 22px 18px;
  color:#1c212b;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity:0;
  transform:translateY(14px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.cookie-consent.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.cookie-consent__title{
  margin:0 0 10px;
  font-size:15px;
  line-height:1.35;
  font-weight:700;
  letter-spacing:-0.01em;
}
.cookie-consent__text{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:rgba(28,33,43,.78);
}
.cookie-consent__actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
}
.cookie-consent__more{
  appearance:none;
  border:none;
  background:none;
  padding:0;
  margin:0;
  color:#596579;
  font-size:14px;
  line-height:1.2;
  cursor:pointer;
  text-decoration:none;
}
.cookie-consent__more:hover{
  color:#1c212b;
}
.cookie-consent__accept{
  appearance:none;
  border:none;
  border-radius:999px;
  padding:12px 20px;
  min-width:112px;
  background:linear-gradient(180deg,#151922 0%, #0f1219 100%);
  color:#fff;
  font-size:14px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(15,18,25,.28);
}
.cookie-consent__accept:hover{
  transform:translateY(-1px);
}
.cookie-consent__accept:active{
  transform:translateY(0);
}
.cookie-consent-modal{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(15,18,25,.34);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.cookie-consent-modal.is-open{
  display:flex;
}
.cookie-consent-modal__card{
  width:min(720px, 100%);
  max-height:min(82vh, 900px);
  overflow:auto;
  border-radius:24px;
  background:#fff;
  color:#1c212b;
  box-shadow:0 26px 80px rgba(15,18,25,.28);
  border:1px solid rgba(28,33,43,.10);
}
.cookie-consent-modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px 14px;
  border-bottom:1px solid rgba(28,33,43,.08);
}
.cookie-consent-modal__title{
  margin:0;
  font-size:18px;
  line-height:1.25;
  font-weight:700;
}
.cookie-consent-modal__close{
  appearance:none;
  border:none;
  background:none;
  color:#596579;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  padding:0;
}
.cookie-consent-modal__body{
  padding:20px 22px 22px;
  font-size:14px;
  line-height:1.7;
  color:rgba(28,33,43,.82);
}
.cookie-consent-modal__body p{
  margin:0 0 12px;
}
.cookie-consent-modal__body a{
  color:#1c212b;
}
@media (max-width:640px){
  .cookie-consent{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    border-radius:20px;
    padding:18px 18px 16px;
  }
  .cookie-consent__actions{
    gap:10px;
  }
  .cookie-consent__accept{
    padding:11px 18px;
    min-width:104px;
  }
  .cookie-consent-modal{
    padding:12px;
    align-items:flex-end;
  }
  .cookie-consent-modal__card{
    max-height:88vh;
    border-radius:20px 20px 16px 16px;
  }
}
