/* Cookie consent banner — pafuon.takydela.pro / pafuon.ru
   Соответствие 152-ФЗ: информирование о cookie + согласие/отказ. */
#cookie-consent{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
#cookie-consent .cc-inner{
  pointer-events: auto;
  max-width: 760px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(13, 15, 22, .96);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  color: #eef1ff;
  line-height: 1.5;
  font-size: 14px;
  backdrop-filter: blur(8px);
  animation: cc-in .35s ease-out;
}
@keyframes cc-in{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
#cookie-consent.cc-hide .cc-inner{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
}
#cookie-consent .cc-text{
  flex: 1 1 360px;
  min-width: 240px;
}
#cookie-consent .cc-text a{
  color: #6ee7ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#cookie-consent .cc-text a:hover{
  text-decoration: none;
}
#cookie-consent .cc-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#cookie-consent .cc-btn{
  font: inherit;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
#cookie-consent .cc-accept{
  background: #6ee7ff;
  color: #0b0c10;
}
#cookie-consent .cc-accept:hover{
  background: #9cf0ff;
}
#cookie-consent .cc-reject{
  background: transparent;
  color: #b7bdd6;
  border-color: rgba(255,255,255,.25);
}
#cookie-consent .cc-reject:hover{
  border-color: rgba(255,255,255,.5);
  color: #eef1ff;
}
@media (max-width: 560px){
  #cookie-consent .cc-inner{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  #cookie-consent .cc-actions{
    justify-content: stretch;
  }
  #cookie-consent .cc-btn{
    flex: 1;
    text-align: center;
  }
}
