:root {
  --ink: #0c1412;
  --sea: #2f6f62;
  --foam: #d8efe6;
  --sand: #e8d5b5;
  --ember: #c45c26;
  --glow: #7ec8b8;
  --font-display: Georgia, "Times New Roman", serif;
  --font-ui: system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
#app {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--foam);
  font-family: var(--font-ui);
}

body {
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(47, 111, 98, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(196, 92, 38, 0.22), transparent 50%),
    linear-gradient(165deg, #071411 0%, #0f241f 45%, #0a1210 100%);
}

canvas.scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  touch-action: none;
}

canvas.scene.visible {
  opacity: 1;
}

.screen {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#intro {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 128, 76, 0.24) 0 7%, rgba(255, 128, 76, 0.1) 14%, transparent 42%),
    linear-gradient(180deg, #101d3a 0%, #24385d 38%, #4b4e70 70%, #744952 100%);
}

#intro::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  background:
    radial-gradient(ellipse 62% 34% at 22% 24%, rgba(209, 227, 255, 0.12), transparent 72%),
    radial-gradient(ellipse 48% 30% at 78% 34%, rgba(212, 228, 255, 0.1), transparent 74%),
    radial-gradient(ellipse 72% 56% at 50% 102%, rgba(168, 68, 44, 0.2), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

#intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 12, 20, 0.28) 0%, rgba(6, 12, 20, 0.42) 48%, rgba(6, 12, 20, 0.68) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero {
  width: min(42rem, 100%);
  text-align: left;
  position: relative;
  z-index: 1;
  animation: rise 0.9s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 12vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--foam);
  text-shadow: 0 0 60px rgba(126, 200, 184, 0.25);
  animation: brandGlow 4s ease-in-out infinite alternate;
}

@keyframes brandGlow {
  from {
    text-shadow: 0 0 40px rgba(126, 200, 184, 0.15);
  }
  to {
    text-shadow: 0 0 80px rgba(126, 200, 184, 0.35);
  }
}

.lede {
  margin-top: 1.35rem;
  max-width: 22rem;
  font-size: 1.2rem;
  line-height: 1.45;
  color: rgba(216, 239, 230, 0.88);
  font-family: var(--font-display);
  font-style: italic;
}

.concept-note {
  margin-top: 0.9rem;
  max-width: 34rem;
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(216, 239, 230, 0.76);
}


.actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--ember);
  color: #fff8f0;
  padding: 0.95rem 1.6rem;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #d4682e;
}

.btn-ghost {
  background: transparent;
  color: var(--foam);
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(216, 239, 230, 0.35);
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(216, 239, 230, 0.08);
}

.status {
  margin-top: 1.25rem;
  min-height: 1.5rem;
  font-size: 0.9rem;
  color: var(--glow);
  letter-spacing: 0.02em;
}

.privacy-note {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(216, 239, 230, 0.5);
}

.credits {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(216, 239, 230, 0.45);
}

.credits a {
  color: rgba(216, 239, 230, 0.62);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.credits a:hover {
  color: var(--foam);
}

.waveform-wrap {
  margin-top: 1.75rem;
  height: 7rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 239, 230, 0.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: rgba(0, 0, 0, 0.25);
}

.waveform-wrap.recording {
  border-color: rgba(196, 92, 38, 0.55);
  box-shadow: 0 0 0 1px rgba(196, 92, 38, 0.2), inset 0 0 24px rgba(196, 92, 38, 0.08);
}

.waveform-wrap.recording::after {
  content: "LIVE";
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ember);
  animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.waveform-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(126, 200, 184, 0.08), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 23px,
      rgba(216, 239, 230, 0.06) 24px
    );
  pointer-events: none;
  z-index: 0;
}

#live-wave {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.meter {
  margin-top: 0.75rem;
  height: 3px;
  width: 100%;
  background: rgba(216, 239, 230, 0.12);
  overflow: hidden;
}

.meter > i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sea), var(--ember));
  transition: width 0.1s linear;
}

.intro-back {
  margin-top: 0.8rem;
  min-height: 2.7rem;
  padding: 0.8rem 1.2rem;
}

.hud {
  position: fixed;
  z-index: 20;
  inset: auto 0 0 0;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(transparent, rgba(7, 20, 17, 0.85));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hud.visible {
  opacity: 1;
  pointer-events: auto;
}

.hud-copy {
  max-width: 28rem;
}

.hud-copy h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--sand);
}

.hud-copy p {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(216, 239, 230, 0.7);
  line-height: 1.4;
}

.hud-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hud .btn-primary,
.hud .btn-ghost {
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
}

.crosshair {
  position: fixed;
  z-index: 15;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.crosshair.visible {
  opacity: 0.7;
}

.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: var(--foam);
}

.crosshair::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.crosshair::after {
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-50%);
}


.touch-controls {
  position: fixed;
  z-index: 28;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  max-height: 22rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.touch-controls[hidden] {
  display: none;
}

.touch-controls.active {
  opacity: 1;
}

.touch-controls.active .touch-stick,
.touch-controls.active .touch-actions,
.touch-controls.active .touch-action-btn {
  pointer-events: auto;
}

.touch-stick {
  position: absolute;
  bottom: max(5.75rem, calc(env(safe-area-inset-bottom) + 4.9rem));
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 2px solid rgba(216, 239, 230, 0.55);
  background:
    radial-gradient(circle at 35% 30%, rgba(216, 239, 230, 0.14), rgba(8, 18, 16, 0.72) 62%),
    radial-gradient(circle at 70% 75%, rgba(126, 200, 184, 0.18), rgba(8, 18, 16, 0.78) 58%);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 -8px 16px rgba(0, 0, 0, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  touch-action: none;
  overflow: hidden;
}

.touch-stick::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(216, 239, 230, 0.3);
  box-shadow: inset 0 0 14px rgba(126, 200, 184, 0.12);
}

.touch-stick::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(216, 239, 230, 0.09) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(216, 239, 230, 0.09) 50%, transparent 51%);
  pointer-events: none;
}

.touch-stick-left {
  left: max(1rem, env(safe-area-inset-left));
}

.touch-stick-right {
  right: max(1rem, env(safe-area-inset-right));
}

.touch-stick-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.6), rgba(232, 213, 181, 0.9) 58%),
    radial-gradient(circle at 68% 72%, rgba(130, 96, 58, 0.26), rgba(232, 213, 181, 0.65) 68%);
  border: 1px solid rgba(255, 255, 255, 0.46);
  transform: translate(-50%, -50%);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.35),
    inset 0 -4px 8px rgba(74, 56, 38, 0.28);
  pointer-events: none;
}

.touch-stick-knob::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(39, 54, 48, 0.34);
}

.touch-actions {
  position: absolute;
  left: 50%;
  bottom: max(1rem, calc(env(safe-area-inset-bottom) + 0.5rem));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(216, 239, 230, 0.24);
  background: rgba(8, 18, 16, 0.58);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.touch-action-btn {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 239, 230, 0.3);
  background: rgba(12, 26, 22, 0.78);
  color: var(--foam);
  touch-action: manipulation;
  pointer-events: none;
}

.touch-action-btn.is-active {
  border-color: rgba(255, 236, 156, 0.92);
  background: linear-gradient(160deg, rgba(66, 94, 82, 0.92), rgba(27, 48, 41, 0.95));
  color: #fff2bd;
  box-shadow:
    inset 0 0 0 1px rgba(255, 240, 170, 0.5),
    0 0 0 2px rgba(255, 232, 132, 0.34),
    0 0 18px rgba(255, 228, 122, 0.45);
  transform: translateY(-1px);
  animation: touchButtonPulse 1.35s ease-in-out infinite;
}

@keyframes touchButtonPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 240, 170, 0.5),
      0 0 0 2px rgba(255, 232, 132, 0.34),
      0 0 16px rgba(255, 228, 122, 0.4);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 246, 194, 0.7),
      0 0 0 2px rgba(255, 238, 161, 0.5),
      0 0 24px rgba(255, 235, 148, 0.6);
  }
}

.touch-action-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.touch-action-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.touch-action-play .touch-action-icon path {
  fill: currentColor;
  stroke: none;
}

.touch-coach {
  position: fixed;
  z-index: 32;
  left: 50%;
  bottom: max(12rem, calc(env(safe-area-inset-bottom) + 11rem));
  transform: translateX(-50%);
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.95rem 1.05rem 0.85rem;
  background: rgba(8, 18, 16, 0.88);
  border: 1px solid rgba(216, 239, 230, 0.28);
  color: rgba(216, 239, 230, 0.92);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.touch-coach.visible {
  opacity: 1;
  pointer-events: auto;
}

.touch-coach[hidden] {
  display: none;
}

.touch-coach-text {
  margin: 0 0 0.65rem;
}

.touch-coach-dismiss {
  min-height: 2.75rem;
  min-width: 6rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(216, 239, 230, 0.35);
  background: rgba(216, 239, 230, 0.12);
  color: var(--foam);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  touch-action: manipulation;
}

body.immersed .hud {
  opacity: 0 !important;
  pointer-events: none !important;
}





.explore-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  align-content: center;
  background: rgba(7, 20, 17, 0.55);
  backdrop-filter: blur(4px);
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) 1rem max(0.75rem, env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.explore-menu[hidden] {
  display: none;
}

.explore-menu-panel {
  width: min(22rem, 100%);
  max-height: min(90dvh, calc(100svh - 1.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.35rem;
  padding-bottom: max(1.25rem, calc(0.75rem + env(safe-area-inset-bottom, 0px)));
  background: rgba(8, 18, 16, 0.92);
  border: 1px solid rgba(216, 239, 230, 0.22);
  font-family: var(--font-ui);
  box-sizing: border-box;
}

.explore-menu-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--sand);
  margin-bottom: 0.35rem;
}

.explore-menu-hint {
  font-size: 0.85rem;
  color: rgba(216, 239, 230, 0.7);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.explore-menu-credits {
  margin-top: 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: rgba(216, 239, 230, 0.4);
}

.explore-menu-credits a {
  color: rgba(216, 239, 230, 0.55);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.explore-menu-credits a:hover {
  color: var(--foam);
}

.explore-menu-actions {
  display: grid;
  gap: 0.55rem;
}

.explore-menu-actions .btn-primary,
.explore-menu-actions .btn-ghost {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
}

html.touch-nav .look-hint {
  display: none !important;
}

html.touch-nav .crosshair {
  display: none;
}

.look-hint {
  position: fixed;
  z-index: 30;
  top: max(0.65rem, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  max-width: min(42rem, calc(100vw - 1.5rem));
  margin: 0;
  padding: 0.55rem 0.9rem;
  background: rgba(8, 18, 16, 0.82);
  border: 1px solid rgba(216, 239, 230, 0.22);
  color: rgba(216, 239, 230, 0.88);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.look-hint[hidden] {
  display: none;
}

.look-hint kbd {
  display: inline-block;
  min-width: 1.2rem;
  padding: 0.08rem 0.28rem;
  margin: 0 0.08rem;
  border: 1px solid rgba(216, 239, 230, 0.28);
  background: rgba(216, 239, 230, 0.08);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--foam);
}

.look-hint kbd.lit,
body.jetting .look-hint kbd[data-key="t"] {
  color: #0c1210;
  background: #f0c14b;
  border-color: #ffe08a;
  box-shadow: 0 0 0 1px rgba(240, 193, 75, 0.35);
}

body.immersed.menu-open .look-hint {
  opacity: 0;
}

@media (max-width: 640px) {
  .brand {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .hud {
    flex-direction: column;
    align-items: stretch;
  }

  .touch-stick {
    width: 6.75rem;
    height: 6.75rem;
  }

  .touch-actions {
    gap: 0.42rem;
    padding: 0.35rem 0.45rem;
  }

  .touch-action-btn {
    width: 2.7rem;
    height: 2.7rem;
    min-width: 2.7rem;
    min-height: 2.7rem;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  html.touch-nav .touch-controls {
    height: 100%;
    max-height: none;
  }

  html.touch-nav .touch-stick {
    width: 5.75rem;
    height: 5.75rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  html.touch-nav .touch-stick-left {
    left: max(0.75rem, env(safe-area-inset-left));
  }

  html.touch-nav .touch-stick-right {
    right: max(0.75rem, env(safe-area-inset-right));
  }

  html.touch-nav .touch-actions {
    left: 50%;
    bottom: max(1rem, env(safe-area-inset-bottom));
    transform: translateX(-50%);
  }

  html.touch-nav .touch-coach {
    top: max(0.75rem, env(safe-area-inset-top));
    bottom: auto;
    width: min(24rem, calc(100vw - 1.5rem));
  }
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 0;
  right: 0;
  bottom: 0;
  padding: max(0.75rem, env(safe-area-inset-bottom)) 1rem 1rem;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-panel {
  width: min(34rem, 100%);
  padding: 1rem 1.15rem;
  background: rgba(8, 18, 16, 0.94);
  border: 1px solid rgba(216, 239, 230, 0.22);
  font-family: var(--font-ui);
  pointer-events: auto;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
}

.cookie-banner-title {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.45rem;
}

.cookie-banner-copy {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(216, 239, 230, 0.82);
  margin-bottom: 0.85rem;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.cookie-banner-actions .btn-primary,
.cookie-banner-actions .btn-ghost {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
}

.cookie-banner-note {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(216, 239, 230, 0.55);
}

.cookie-banner-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--glow);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-reopen {
  position: fixed;
  z-index: 79;
  left: max(0.75rem, env(safe-area-inset-left));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(216, 239, 230, 0.22);
  background: rgba(8, 18, 16, 0.72);
  color: rgba(216, 239, 230, 0.7);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.cookie-reopen:hover {
  color: var(--foam);
  border-color: rgba(216, 239, 230, 0.4);
}

body.immersed .cookie-reopen {
  opacity: 0.45;
}

/* Touch/mobile: render reopen control as a cookie icon button. */
html.touch-nav .cookie-reopen {
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(126, 200, 184, 0.55);
  background: radial-gradient(circle at 35% 30%, #f4d7a2 0%, #d9a464 68%, #b67a43 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 188, 0.4),
    0 8px 18px rgba(0, 0, 0, 0.35);
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

html.touch-nav .cookie-reopen::before {
  content: "";
  position: absolute;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 22% 28%, rgba(140, 80, 42, 0.94) 0 12%, transparent 13%),
    radial-gradient(circle at 72% 20%, rgba(140, 80, 42, 0.94) 0 10%, transparent 11%),
    radial-gradient(circle at 76% 70%, rgba(140, 80, 42, 0.94) 0 11%, transparent 12%),
    radial-gradient(circle at 38% 74%, rgba(140, 80, 42, 0.94) 0 9%, transparent 10%),
    radial-gradient(circle at 50% 46%, rgba(140, 80, 42, 0.94) 0 10%, transparent 11%);
}

