.cookie-consent {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(760px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(122, 255, 184, .22);
  border-radius: 20px;
  color: #eef7f1;
  background: rgba(5, 14, 10, .96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(20px);
  font-family: Inter, system-ui, sans-serif;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent span { display: block; margin-bottom: 6px; color: #7affb8; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cookie-consent p { margin: 0 0 7px; color: rgba(238, 247, 241, .72); font-size: 13px; line-height: 1.55; }
.cookie-consent a { color: #fff; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent-actions { display: flex; align-items: center; gap: 9px; }
.cookie-consent button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #eef7f1;
  background: transparent;
  font: 700 12px/1 Inter, system-ui, sans-serif;
  white-space: nowrap;
  cursor: pointer;
}
.cookie-consent button.is-primary { border-color: #7affb8; color: #07110d; background: #7affb8; }
.cookie-consent button:focus-visible { outline: 3px solid rgba(122, 255, 184, .35); outline-offset: 2px; }
@media (max-width: 720px) {
  .cookie-consent { right: 12px; bottom: 12px; grid-template-columns: 1fr; gap: 16px; width: calc(100% - 24px); padding: 18px; }
  .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-consent button { white-space: normal; }
}
