#p4-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(9,28,58,.97) 0%, rgba(3,16,36,.98) 100%);
  border-top: 1px solid rgba(86,213,79,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .875rem 1.25rem;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}

#p4-cookie-banner.p4-cb--visible {
  transform: translateY(0);
}

#p4-cookie-banner.p4-cb--hiding {
  transform: translateY(110%);
}

.p4-cb__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.p4-cb__text {
  flex: 1;
  min-width: 0;
}

.p4-cb__msg {
  font-family: var(--f-body, 'Plus Jakarta Sans', sans-serif);
  font-size: .8125rem;
  line-height: 1.6;
  color: rgba(254,254,254,.68);
  margin: 0;
}

.p4-cb__msg strong {
  color: #56D54F;
  font-weight: 600;
}

.p4-cb__link {
  color: #56D54F;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(86,213,79,.4);
  white-space: nowrap;
  transition: color .18s, text-decoration-color .18s;
}

.p4-cb__link:hover {
  color: #BAFF00;
  text-decoration-color: rgba(186,255,0,.5);
}

.p4-cb__actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
  align-items: center;
}

.p4-cb__btn {
  font-family: var(--f-head, 'Sora', sans-serif);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .5rem 1.125rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
  line-height: 1;
}

.p4-cb__btn--decline {
  background: transparent;
  color: rgba(254,254,254,.52);
  border-color: rgba(255,255,255,.12);
}

.p4-cb__btn--decline:hover {
  background: rgba(255,255,255,.06);
  color: rgba(254,254,254,.82);
  border-color: rgba(255,255,255,.22);
}

.p4-cb__btn--accept {
  background: #56D54F;
  color: #031024;
  border-color: rgba(86,213,79,.6);
  box-shadow: 0 4px 14px rgba(86,213,79,.22);
}

.p4-cb__btn--accept:hover {
  background: #6fe868;
  box-shadow: 0 4px 18px rgba(86,213,79,.35);
}

@media (max-width: 600px) {
  .p4-cb__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .p4-cb__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
