:root {
  --red-main: rgba(255, 23, 68, 1);
  --red-soft: rgba(255, 23, 68, 0.8);
  --pink: rgba(255, 105, 180, 1);
  --bg-main: #0a0008;
  --panel-bg: rgba(15, 5, 10, 0.85);
  --card-bg: rgba(20, 5, 12, 0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 90, 130, 0.22) 0%, rgba(255, 90, 130, 0) 40%),
    radial-gradient(circle at 88% 18%, rgba(230, 80, 175, 0.2) 0%, rgba(230, 80, 175, 0) 40%),
    linear-gradient(180deg, #17030d 0%, #090006 55%, #070005 100%);
  min-height: 100vh;
}

.results-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

.results-hero {
  border: 1px solid rgba(255, 23, 68, 0.22);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.results-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.78), rgba(40, 5, 12, 0.7)),
    url("./assets/images/wallpaper.webp") center/cover no-repeat;
}

.results-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.results-title {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-shadow: 0 0 16px rgba(255, 23, 68, 0.5);
}

.results-subtitle {
  margin-top: 10px;
  max-width: 920px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.results-section {
  border: 1px solid rgba(255, 23, 68, 0.18);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(36, 10, 22, 0.9), rgba(13, 4, 9, 0.92));
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.33);
}

.results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 23, 68, 0.14);
  background: rgba(255, 23, 68, 0.07);
}

.results-head h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 0.98rem;
}

.results-pill {
  font-size: 0.72rem;
  border: 1px solid rgba(255, 23, 68, 0.3);
  border-radius: 999px;
  padding: 3px 9px;
  color: rgba(255, 255, 255, 0.84);
}

.results-body {
  padding: 14px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.popup-grid .demo-side {
  align-self: center;
}

.reverse-grid .demo-side {
  order: 1;
  align-self: center;
}

.reverse-grid .demo-stage {
  order: 2;
}

.demo-stage {
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: 12px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.35);
}

.demo-side {
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 23, 68, 0.08), rgba(255, 105, 180, 0.07));
  padding: 14px;
}

.explain-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.explain-copy {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.explain-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.explain-list li {
  border: 1px solid rgba(255, 120, 170, 0.18);
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.explain-list li.is-active {
  border-color: rgba(255, 120, 170, 0.55);
  background: linear-gradient(140deg, rgba(255, 23, 68, 0.2), rgba(255, 105, 180, 0.15));
  box-shadow: 0 0 22px rgba(255, 23, 68, 0.2);
}

.popup-stage {
  display: flex;
  justify-content: center;
}

.popup-frame {
  width: 300px;
  border: 1px solid rgba(255, 23, 68, 0.35);
  box-shadow: 0 0 24px rgba(255, 23, 68, 0.2), 0 10px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.popup-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: radial-gradient(ellipse at top center, rgba(255, 23, 68, 0.08) 0%, rgba(10, 0, 8, 1) 65%);
  position: relative;
}

.popup-container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255, 23, 68, 0.9) 0%, rgba(156, 39, 176, 0.5) 40%, rgba(255, 23, 68, 0.2) 70%, rgba(255, 105, 180, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.popup-header {
  text-align: center;
  padding: 10px 0 6px;
  position: relative;
}

.header-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(255, 23, 68, 0.35) 0%, transparent 70%);
}

.header-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.05rem;
  text-shadow: 0 0 15px rgba(255, 23, 68, 0.5);
  letter-spacing: 0.04em;
}

.header-title .heart {
  color: #ff1744;
}

.header-sub {
  font-size: 0.6rem;
  color: #ff69b4;
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 23, 68, 0.18);
  border-radius: 10px;
  padding: 10px 12px;
}

.status-row,
.control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.status-dot.inactive {
  background: #555;
  box-shadow: none;
}

.status-text {
  font-size: 0.8rem;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #333;
  border-radius: 22px;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #888;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #ff1744, #ff69b4);
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
  background: #fff;
}

.control-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #aaa;
  min-width: 50px;
}

.volume-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  outline: none;
  background: linear-gradient(to right, rgba(255, 23, 68, 0.9) 0%, rgba(255, 23, 68, 0.9) var(--fill, 100%), rgba(60, 15, 25, 0.8) var(--fill, 100%), rgba(60, 15, 25, 0.8) 100%);
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1744, #ff69b4);
}

.volume-value {
  font-size: 0.65rem;
  color: #888;
  min-width: 28px;
  text-align: right;
}

.start-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #ff1744 0%, #d50000 50%, #b71c1c 100%);
  border: 1px solid rgba(255, 80, 100, 0.4);
  border-radius: 10px;
  color: #fff;
  font-family: "Cinzel Decorative", serif;
  font-size: 0.85rem;
  cursor: pointer;
}

.start-btn-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.goddess-links {
  border-radius: 10px;
  border: 1px solid rgba(255, 23, 68, 0.28);
  background: linear-gradient(145deg, rgba(34, 9, 20, 0.9), rgba(12, 3, 10, 0.98));
  overflow: hidden;
}

.goddess-links-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 11px;
  list-style: none;
  cursor: pointer;
}

.goddess-links-summary::-webkit-details-marker {
  display: none;
}

.goddess-links-chevron {
  color: rgba(255, 120, 170, 0.9);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.goddess-links[open] .goddess-links-chevron {
  transform: rotate(180deg);
}

.goddess-links-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 8px 8px;
}

.goddess-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 70, 120, 0.25);
  background: rgba(255, 23, 68, 0.09);
  text-decoration: none;
}

.goddess-link-badge {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel Decorative", serif;
  font-size: 0.58rem;
  color: #ffdbe7;
  border: 1px solid rgba(255, 105, 180, 0.45);
  background: radial-gradient(circle at 35% 30%, rgba(255, 105, 180, 0.4), rgba(255, 23, 68, 0.18) 65%, rgba(0, 0, 0, 0.25) 100%);
}

.goddess-link-badge-logo {
  width: 12px;
  height: 12px;
  display: block;
  object-fit: contain;
}

.goddess-link-text {
  flex: 1;
  min-width: 0;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.goddess-link-cta {
  padding: 3px 7px;
  border-radius: 999px;
  flex: 0 0 auto;
  font-family: "Cinzel Decorative", serif;
  font-size: 0.48rem;
  color: #ffe9f1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 105, 180, 0.42);
  background: rgba(255, 23, 68, 0.18);
}

.goddess-links-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 0.72rem;
  color: #ffe4ee;
  text-transform: uppercase;
}

.popup-footer {
  text-align: center;
  padding: 4px 0;
  font-size: 0.6rem;
  color: rgba(255, 23, 68, 0.3);
  letter-spacing: 0.08em;
}

.gate-stage {
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px;
  display: flex;
  justify-content: center;
}

#succu-consent-gate {
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 12px;
  padding: 10px 0;
}

.consent-panel {
  background: rgba(15, 5, 10, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 23, 68, 0.4);
  border-radius: 24px;
  padding: 2.5rem 2.5rem 2rem;
  width: 90%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 23, 68, 0.2);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.consent-panel.consent-switching {
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  filter: blur(8px);
}

.consent-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 23, 68, 0.7);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.5), 0 0 50px rgba(255, 105, 180, 0.2);
  margin-bottom: 1rem;
}

.consent-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consent-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 23, 68, 0.6);
  letter-spacing: 0.04em;
}

.consent-subtitle {
  font-size: 0.95rem;
  color: #ff69b4;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.consent-divider {
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 23, 68, 0.4), transparent);
  margin: 1.4rem 0;
}

.consent-question {
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
  letter-spacing: 0.03em;
}

.consent-intensity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 1.4rem;
  width: 100%;
}

.consent-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consent-level:hover {
  background: rgba(255, 23, 68, 0.1);
  border-color: rgba(255, 23, 68, 0.4);
  color: #ddd;
  transform: translateY(-2px);
}

.consent-level.active {
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.2), rgba(156, 39, 176, 0.15));
  border-color: rgba(255, 23, 68, 0.7);
  color: #fff;
}

.level-emoji {
  font-size: 1.4rem;
}

.level-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.level-range {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  opacity: 0.65;
}

.consent-yes-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff1744, #d50000, #b71c1c);
  border: none;
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-change-btn {
  background: none;
  border: none;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 105, 180, 0.55);
  cursor: pointer;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tests-grid {
  grid-template-columns: 1fr;
}

.media-box {
  border: 1px dashed rgba(255, 23, 68, 0.3);
  border-radius: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.media-box h3 {
  font-family: "Cinzel Decorative", serif;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.media-note {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.redirect-proof {
  margin-bottom: 14px;
}

.proof-slot {
  margin-top: 8px;
  border: 1px dashed rgba(255, 105, 180, 0.4);
  border-radius: 12px;
  min-height: 220px;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.proof-slot img {
  width: 100%;
  min-height: 220px;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.video-slot {
  min-height: 0;
  background: rgba(0, 0, 0, 0.4);
}

.media-preview {
  width: 100%;
  max-height: 420px;
  display: block;
  border-radius: 10px;
  background: #000;
}

.media-steps {
  list-style: none;
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.media-steps li {
  border: 1px solid rgba(255, 120, 170, 0.16);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(255, 23, 68, 0.08);
}

.process-diff {
  grid-column: 1 / -1;
  border-style: solid;
}

.closing-section {
  border-color: rgba(255, 105, 180, 0.35);
}

.tribute-certificate {
  position: relative;
  border: 1px solid rgba(255, 170, 205, 0.4);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(44, 10, 24, 0.9), rgba(24, 7, 14, 0.92));
  padding: 26px 20px 22px;
  text-align: center;
  overflow: hidden;
}

.tribute-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 225, 238, 0.95);
}

.tribute-avatar {
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}

.tribute-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.tribute-seal {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 130, 180, 0.75);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  color: #ffd9ea;
  background: radial-gradient(circle at 30% 30%, rgba(255, 130, 180, 0.45), rgba(120, 15, 52, 0.45));
  box-shadow: 0 0 22px rgba(255, 80, 140, 0.4);
}

.tribute-signoff {
  margin-top: 10px;
  font-style: italic;
  color: rgba(255, 215, 234, 0.88);
}

.tribute-sparkles img {
  position: absolute;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 110, 170, 0.35));
  opacity: 0.72;
  transform: rotate(var(--rot, 0deg));
  animation: sparkle-pulse 4.2s ease-in-out infinite;
  will-change: transform, opacity;
}

/* Curated halo (12) — Redistributed to fill empty space and frame the center */
.tribute-sparkles img:nth-child(1)  { top: 15%; left: 12%; --rot: -16deg; }
.tribute-sparkles img:nth-child(2)  { top: 12%; left: 88%; --rot: 12deg;  animation-delay: 0.4s; }
.tribute-sparkles img:nth-child(3)  { top: 28%; left: 25%; --rot: 8deg;   animation-delay: 0.9s; }
.tribute-sparkles img:nth-child(4)  { top: 24%; left: 75%; --rot: -10deg; animation-delay: 1.2s; }

/* Brought inward to frame the avatar */
.tribute-sparkles img:nth-child(5)  { top: 20%; left: 38%; --rot: 20deg;  animation-delay: 1.6s; }
.tribute-sparkles img:nth-child(6)  { top: 18%; left: 62%; --rot: -22deg; animation-delay: 2.0s; }

/* Mid-level outer edges */
.tribute-sparkles img:nth-child(7)  { top: 48%; left: 10%; --rot: 9deg;   animation-delay: 2.4s; }
.tribute-sparkles img:nth-child(8)  { top: 46%; left: 90%; --rot: -14deg; animation-delay: 2.8s; }

/* Flanking the sides of the text */
.tribute-sparkles img:nth-child(9)  { top: 72%; left: 18%; --rot: 18deg;  animation-delay: 3.2s; }
.tribute-sparkles img:nth-child(10) { top: 70%; left: 82%; --rot: -8deg;  animation-delay: 3.6s; }

/* Tucked neatly under the text block */
.tribute-sparkles img:nth-child(11) { top: 86%; left: 32%; --rot: -20deg; animation-delay: 1.1s; }
.tribute-sparkles img:nth-child(12) { top: 88%; left: 68%; --rot: 16deg;  animation-delay: 1.9s; }

@keyframes sparkle-pulse {
  0%, 100% { transform: rotate(var(--rot, 0deg)) scale(0.92); opacity: 0.45; }
  50% { transform: rotate(var(--rot, 0deg)) scale(1.05); opacity: 0.82; }
}

.closing-line {
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 240, 247, 0.95);
  text-shadow: 0 0 12px rgba(255, 80, 140, 0.25);
}

.dev-section {
  margin-top: 2px;
}

.dev-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.55rem;
  color: rgba(255, 160, 0, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4px;
}

.dev-card {
  border-color: rgba(255, 160, 0, 0.15) !important;
}

.dev-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
}

.dev-row + .dev-row {
  border-top: 1px solid rgba(255, 160, 0, 0.1);
  margin-top: 6px;
  padding-top: 6px;
}

.dev-toggle-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  color: rgba(255, 160, 0, 0.65);
}

code {
  color: #ffdbe7;
}

@media (min-width: 980px) {
  .demo-grid {
    grid-template-columns: minmax(520px, 1.35fr) minmax(320px, 1fr);
    align-items: start;
  }

  .tests-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Mobile ──────────────────────────────────────────────────── */

.popup-frame {
  width: min(300px, 100%);
}

@media (max-width: 640px) {
  .results-hero {
    min-height: 220px;
  }

  .results-hero-content {
    padding: 20px 16px;
  }

  .results-title {
    font-size: clamp(1.15rem, 5.5vw, 2rem);
  }

  .results-head {
    flex-wrap: wrap;
  }

  #succu-consent-gate {
    min-height: 480px;
    padding: 6px 0;
  }

  .consent-panel {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .consent-title {
    font-size: 1.4rem;
  }

  .consent-intensity {
    gap: 6px;
  }

  .consent-level {
    padding: 10px 5px;
    gap: 4px;
  }

  .level-emoji {
    font-size: 1.2rem;
  }

  .level-name {
    font-size: 0.88rem;
  }

  .level-range {
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .results-shell {
    padding: 14px 10px 40px;
  }

  .results-title {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .results-body {
    padding: 10px;
  }

  .demo-stage {
    padding: 10px;
  }

  #succu-consent-gate {
    min-height: 430px;
  }

  .consent-panel {
    padding: 1.2rem 1rem 1rem;
    width: 96%;
  }

  .consent-title {
    font-size: 1.2rem;
  }

  .consent-yes-btn {
    font-size: 0.95rem;
    padding: 13px;
  }

  .consent-intensity {
    gap: 5px;
  }

  .consent-level {
    padding: 9px 3px;
  }

  .level-name {
    font-size: 0.78rem;
  }

  .level-range {
    font-size: 0.65rem;
  }
}
