#tvf-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 8, 8, 0.97);
  border-top: 1px solid rgba(240, 180, 41, 0.28);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}
#tvf-cookie-banner.is-visible { transform: translateY(0); }
#tvf-cookie-banner .tvf-cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  #tvf-cookie-banner .tvf-cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}
#tvf-cookie-banner p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #c8cad4;
}
#tvf-cookie-banner a { color: #f0b429; text-decoration: underline; }
#tvf-cookie-banner .tvf-cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex-shrink: 0;
}
#tvf-cookie-banner button {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  min-height: 44px;
}
#tvf-cookie-accept {
  background: #f0b429;
  color: #000;
}
#tvf-cookie-essential {
  background: transparent;
  color: #e8eaf0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
