

.theme-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgb(var(--theme-accent-primary-rgb) / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--theme-accent-primary-rgb) / 0.018) 1px, transparent 1px),
    var(--theme-background-deep);
  background-size: 64px 64px;
}

.theme-home::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 15%, rgb(var(--theme-accent-primary-rgb) / 0.05), transparent 22rem),
    radial-gradient(circle at 86% 42%, rgb(var(--theme-accent-secondary-rgb) / 0.045), transparent 26rem);
}


.theme-hero {
  position: relative;
  min-height: 294px;
  overflow: hidden;
  border-bottom: 1px solid rgb(var(--theme-accent-primary-rgb) / 0.26);
  background-color: var(--theme-background);
  background-image:
    linear-gradient(90deg, var(--theme-background) 0%, var(--theme-background) 23%, rgb(var(--theme-background-rgb) / 0.95) 39%, rgb(var(--theme-background-rgb) / 0.72) 51%, rgb(var(--theme-background-rgb) / 0.12) 73%, rgb(var(--theme-background-rgb) / 0) 100%),
    var(--theme-hero-image);
  background-repeat: no-repeat;
  background-position: center, right center;
  background-size: 100% 100%, auto 100%;
}

.theme-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgb(var(--theme-background-deep-rgb) / 0.04), transparent 50%, rgb(var(--theme-background-deep-rgb) / 0.36)),
    radial-gradient(circle at 67% 55%, rgb(var(--theme-accent-primary-rgb) / 0.045), transparent 28rem);
}

.theme-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 294px;
  padding: 28px 0 14px 148px;
}

.theme-hero-copy {
  width: 560px;
}

.theme-hero-title {
  margin: 0;
  color: var(--theme-accent-highlight-soft);
  font-family: var(--theme-serif);
  font-size: clamp(32px, 3.15vw, 48px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 18px rgb(var(--theme-background-deep-rgb) / 0.9);
}

.theme-hero-title em {
  color: var(--theme-accent-primary-data);
  font-style: normal;
  text-shadow: 0 0 20px rgb(var(--theme-accent-primary-data-soft-rgb) / 0.16);
}

.theme-hero-lead {
  margin: 8px 0 10px;
  color: var(--theme-text-dim);
  font-family: var(--theme-serif);
  font-size: 14px;
  letter-spacing: 0.18em;
}

.theme-benefit-cta,
.theme-recommend-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-on-secondary);
  border: 1px solid var(--theme-accent-secondary-pale);
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--theme-accent-secondary-soft), var(--theme-accent-secondary));
  box-shadow:
    0 0 0 2px rgb(var(--theme-accent-secondary-rgb) / 0.12),
    0 0 18px rgb(var(--theme-accent-secondary-rgb) / 0.92),
    inset 0 1px 10px rgb(var(--theme-on-secondary-rgb) / 0.08),
    inset 0 -7px 14px rgb(var(--theme-on-secondary-rgb) / 0.08);
  font-family: var(--theme-serif);
  letter-spacing: 0.08em;
  text-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.theme-benefit-cta:hover,
.theme-recommend-submit:hover {
  color: var(--theme-on-secondary);
  transform: translateY(-1px);
  filter: brightness(1.09);
  box-shadow:
    0 0 0 2px rgb(var(--theme-accent-secondary-rgb) / 0.18),
    0 0 28px rgb(var(--theme-accent-secondary-rgb) / 1),
    inset 0 1px 12px rgb(var(--theme-on-secondary-rgb) / 0.10);
}

.theme-benefit-cta span,
.theme-recommend-submit span {
  position: absolute;
  right: 28px;
  font-size: 25px;
  line-height: 1;
}


.theme-live-section {
  padding: 42px 0 48px;
  border-bottom: 1px solid rgb(var(--theme-accent-highlight-rgb) / 0.22);
  background:
    linear-gradient(180deg, rgb(var(--theme-accent-primary-rgb) / 0.018), transparent 32%),
    var(--theme-section-1);
}

.theme-live-section .theme-shell {
  padding: 0 60px;
}

.theme-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 31px;
  margin-bottom: 14px;
  padding: 0 3px;
}

.theme-section-heading h2 {
  margin: 0;
  color: var(--theme-accent-primary);
  font-family: var(--theme-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.theme-section-heading h2 small {
  margin-left: 10px;
  color: var(--theme-accent-highlight);
  font-family: var(--theme-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.theme-live-scroll {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 8px 8px 14px;
  border: 1px solid rgb(var(--theme-accent-primary-rgb) / 0.21);
  border-radius: 8px;
  background: rgb(var(--theme-section-3-rgb) / 0.76);
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgb(var(--theme-accent-primary-rgb) / 0.52) rgb(var(--theme-accent-primary-rgb) / 0.08);
  scrollbar-width: thin;
}

.theme-live-scroll::-webkit-scrollbar {
  height: 7px;
}

.theme-live-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgb(var(--theme-accent-primary-rgb) / 0.08);
}

.theme-live-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgb(var(--theme-accent-primary-rgb) / 0.52);
}

.theme-live-page {
  display: grid;
  min-width: 0;
  flex: 0 0 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.theme-live-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(var(--theme-accent-primary-rgb) / 0.28);
  border-radius: 7px;
  background: var(--theme-background);
  box-shadow: 0 0 12px rgb(var(--theme-accent-primary-rgb) / 0.06);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.theme-live-card:hover {
  transform: translateY(-3px);
  border-color: rgb(var(--theme-accent-secondary-rgb) / 0.7);
  box-shadow: 0 8px 24px rgb(var(--theme-accent-primary-rgb) / 0.11), 0 0 18px rgb(var(--theme-accent-secondary-rgb) / 0.13);
}

.theme-live-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.theme-live-card-media {
  position: relative;
  overflow: hidden;
  background: var(--theme-section-1);
}

.theme-live-card-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgb(var(--theme-section-1-rgb) / 0.82) 100%);
  content: "";
}

.theme-live-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.theme-live-card:hover img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.theme-live-card-badges {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.theme-live-badge {
  display: inline-flex;
  min-height: 19px;
  align-items: center;
  padding: 2px 6px;
  border: 1px solid rgb(var(--theme-accent-primary-rgb) / 0.5);
  border-radius: 3px;
  background: rgb(var(--theme-section-2-rgb) / 0.82);
  color: var(--theme-accent-primary-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.theme-live-badge--live {
  border-color: rgb(var(--theme-accent-secondary-rgb) / 0.75);
  background: rgb(var(--theme-accent-secondary-deep-rgb) / 0.86);
  color: var(--theme-text);
}

.theme-live-badge--live::before {
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--theme-text);
  box-shadow: 0 0 7px rgb(var(--theme-text-rgb) / 0.9);
  content: "";
}

.theme-live-badge--status {
  border-color: rgb(var(--theme-accent-highlight-rgb) / 0.68);
  color: var(--theme-accent-highlight-soft);
}

.theme-live-card-info {
  min-width: 0;
  padding: 9px 10px 10px;
}

.theme-live-card-name {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.theme-live-card-name strong {
  min-width: 0;
  overflow: hidden;
  color: var(--theme-text-soft);
  font-family: var(--theme-serif);
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-gender-icon {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(var(--theme-accent-primary-rgb) / 0.42);
  border-radius: 50%;
  background: rgb(var(--theme-accent-primary-rgb) / 0.08);
  color: var(--theme-accent-primary-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.theme-live-card-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.theme-live-card-viewers {
  display: flex;
  min-width: 0;
  min-height: 34px;
  align-items: baseline;
  gap: 4px;
  padding: 6px 8px;
  border: 1px solid rgb(var(--theme-accent-primary-rgb) / 0.46);
  border-radius: 5px;
  background: rgb(var(--theme-accent-primary-rgb) / 0.09);
  color: var(--theme-text);
  line-height: 1;
  box-shadow: inset 0 0 12px rgb(var(--theme-accent-primary-rgb) / 0.04);
}

.theme-live-card-viewers-icon {
  flex: 0 0 auto;
  color: var(--theme-accent-primary);
  font-size: 12px;
  text-shadow: 0 0 8px rgb(var(--theme-accent-primary-rgb) / 0.85);
}

.theme-live-card-viewers strong {
  overflow: hidden;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-live-card-viewers small {
  color: var(--theme-accent-primary-soft);
  font-size: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.theme-live-card-favorites {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border: 1px solid rgb(var(--theme-accent-secondary-rgb) / 0.3);
  border-radius: 5px;
  background: rgb(var(--theme-accent-secondary-rgb) / 0.07);
  color: var(--theme-accent-secondary-soft);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}




.theme-question--tags {
  padding-bottom: 20px;
}

.theme-tag-tabs {
  position: relative;
  margin-top: 14px;
}

.theme-tag-tab-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.theme-tag-tab-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid rgb(var(--theme-accent-highlight-rgb) / 0.28);
  border-radius: 8px;
  background: rgb(var(--theme-background-deep-rgb) / 0.24);
}

.theme-tag-tab-label {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--theme-muted);
  font-family: var(--theme-serif);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.theme-tag-tab-label:hover {
  color: var(--theme-text);
  border-color: rgb(var(--theme-accent-primary-rgb) / 0.34);
}

.theme-tag-tab-input--men:checked
  ~ .theme-tag-tab-labels
  [data-tab="men"],
.theme-tag-tab-input--girls:checked
  ~ .theme-tag-tab-labels
  [data-tab="girls"],
.theme-tag-tab-input--trans:checked
  ~ .theme-tag-tab-labels
  [data-tab="trans"],
.theme-tag-tab-input--couples:checked
  ~ .theme-tag-tab-labels
  [data-tab="couples"] {
  color: var(--theme-text);
  border-color: rgb(var(--theme-accent-secondary-rgb) / 0.66);
  background:
    linear-gradient(
      180deg,
      rgb(var(--theme-accent-secondary-rgb) / 0.22),
      rgb(var(--theme-accent-secondary-rgb) / 0.08)
    );
  box-shadow:
    inset 0 0 14px rgb(var(--theme-accent-secondary-rgb) / 0.08),
    0 0 12px rgb(var(--theme-accent-secondary-rgb) / 0.08);
}

.theme-tag-tab-input:focus-visible
  ~ .theme-tag-tab-labels
  .theme-tag-tab-label {
  outline: 2px solid var(--theme-accent-primary);
  outline-offset: 2px;
}

.theme-tag-tab-panels {
  margin-top: 12px;
}

.theme-tag-tab-panel {
  display: none;
  max-height: 300px;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid rgb(var(--theme-accent-primary-rgb) / 0.18);
  border-radius: 7px;
  background: rgb(var(--theme-accent-primary-rgb) / 0.025);
  scrollbar-color:
    rgb(var(--theme-accent-primary-rgb) / 0.45)
    rgb(var(--theme-accent-primary-rgb) / 0.06);
  scrollbar-width: thin;
}

.theme-tag-tab-input--men:checked
  ~ .theme-tag-tab-panels
  [data-panel="men"],
.theme-tag-tab-input--girls:checked
  ~ .theme-tag-tab-panels
  [data-panel="girls"],
.theme-tag-tab-input--trans:checked
  ~ .theme-tag-tab-panels
  [data-panel="trans"],
.theme-tag-tab-input--couples:checked
  ~ .theme-tag-tab-panels
  [data-panel="couples"] {
  display: block;
}

.theme-question--tags .theme-tag-tab-panel .theme-answer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 64px;
  margin-top: 0;
}

.theme-question--tags .theme-tag-tab-panel .theme-answer-option {
  display: flex;
  width: 100%;
  height: 100%;
}

.theme-question--tags .theme-tag-tab-panel .theme-answer {
  width: 100%;
  height: 100%;
  min-height: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}



.theme-recommend-section {
  padding: 48px 0 72px;
  background:
    radial-gradient(circle at 8% 12%, rgb(var(--theme-accent-secondary-rgb) / 0.11), transparent 25rem),
    radial-gradient(circle at 92% 78%, rgb(var(--theme-accent-primary-rgb) / 0.10), transparent 28rem),
    var(--theme-question-section);
}

.theme-recommend-inner {
  padding: 0 60px;
}

.theme-recommend-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgb(var(--theme-accent-primary-rgb) / 0.64);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(var(--theme-accent-primary-rgb) / 0.055), transparent 38%),
    var(--theme-question-panel);
  box-shadow:
    inset 0 0 34px rgb(var(--theme-accent-primary-rgb) / 0.035),
    0 18px 48px rgb(var(--theme-shadow-rgb) / 0.28);
}

.theme-recommend-heading h2 {
  margin: 0;
  color: var(--theme-question-heading);
  font-family: var(--theme-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.theme-recommend-heading p {
  margin: 4px 0 0;
  color: var(--theme-question-subtext);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.theme-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.theme-question {
  min-width: 0;
  margin: 0;
  padding: 16px 17px 18px;
  border: 1px solid var(--theme-question-card-border);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgb(var(--theme-accent-highlight-rgb) / 0.075), transparent 62%),
    var(--theme-question-card);
  box-shadow: inset 0 1px 0 rgb(var(--theme-text-rgb) / 0.035);
}

.theme-question--multiple {
  grid-column: 1 / -1;
}

.theme-question--multiple .theme-answer-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.theme-question legend {
  width: 100%;
  padding: 0;
  color: var(--theme-question-label);
  font-family: var(--theme-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.theme-question-note {
  margin: 5px 0 0;
  color: var(--theme-question-note);
  font-size: 9px;
}

.theme-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 64px;
  align-items: stretch;
  gap: 7px;
  margin-top: 8px;
}

.theme-answer-option {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.theme-answer-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.theme-answer {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  color: var(--theme-answer-text);
  border: 1px solid var(--theme-answer-border);
  border-radius: 4px;
  background: var(--theme-answer-background);
  font-family: var(--theme-serif);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.theme-answer:hover {
  color: var(--theme-answer-hover-text);
  border-color: var(--theme-answer-hover-border);
  background: var(--theme-answer-hover-background);
  box-shadow: 0 0 12px rgb(var(--theme-accent-primary-rgb) / 0.18);
  transform: translateY(-1px);
}

.theme-answer-input:checked + .theme-answer {
  color: var(--theme-answer-selected-text);
  border-color: var(--theme-answer-selected-border);
  background: linear-gradient(180deg, var(--theme-answer-selected-background-alt), var(--theme-answer-selected-background));
  box-shadow:
    0 0 0 1px rgb(var(--theme-answer-selected-border-rgb) / 0.42),
    0 0 16px rgb(var(--theme-answer-glow-rgb) / 0.68),
    inset 0 1px 8px rgb(var(--theme-on-secondary-rgb) / 0.08);
  font-weight: 800;
  transform: translateY(-1px);
}

.theme-answer-input:focus-visible + .theme-answer {
  outline: 2px solid var(--theme-answer-focus);
  outline-offset: 3px;
}

.theme-recommend-submit {
  display: flex;
  width: 350px;
  height: 42px;
  margin: 14px auto 0;
  font-size: 14px;
  cursor: pointer;
}


.theme-benefit-section {
  padding: 30px 0 38px;
  border-top: 1px solid rgb(var(--theme-accent-highlight-rgb) / 0.2);
  background: var(--theme-section-1);
}

.theme-benefit-strip {
  display: grid;
  grid-template-columns: 1.15fr 1.12fr 1.22fr 1.52fr;
  min-height: 82px;
  overflow: hidden;
  border: 1px solid rgb(var(--theme-accent-secondary-rgb) / 0.48);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgb(var(--theme-accent-secondary-rgb) / 0.06), transparent 26%, rgb(var(--theme-accent-primary-rgb) / 0.045) 70%, rgb(var(--theme-accent-secondary-rgb) / 0.06)),
    rgb(var(--theme-section-3-rgb) / 0.96);
  box-shadow: inset 0 0 25px rgb(var(--theme-accent-primary-rgb) / 0.022);
}

.theme-benefit-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 27px;
  border-right: 1px solid rgb(var(--theme-accent-highlight-rgb) / 0.25);
}

.theme-benefit-item svg {
  flex: 0 0 auto;
  width: 34px;
  fill: none;
  stroke: var(--theme-accent-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.theme-benefit-icon {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--theme-text);
  font-size: 0;
  line-height: 0;
  text-shadow: 0 0 11px var(--theme-accent-secondary), 0 0 19px var(--theme-accent-secondary);
}

.theme-benefit-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.theme-benefit-item small {
  color: var(--theme-accent-primary);
  font-family: var(--theme-serif);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.theme-benefit-item strong {
  margin-top: 2px;
  color: var(--theme-text-dim);
  font-family: var(--theme-serif);
  font-size: 10px;
  font-weight: 500;
}

.theme-benefit-item--secondary small,
.theme-benefit-item--secondary strong {
  color: var(--theme-accent-secondary-soft);
}

.theme-benefit-item--secondary strong {
  font-size: 19px;
}

.theme-benefit-cta {
  align-self: center;
  height: 48px;
  margin: 0 19px;
  font-size: 16px;
}


@media (max-width: 1180px) {
    .theme-hero-inner {
      padding-left: 75px;
    }

    .theme-live-section .theme-shell,
    .theme-recommend-inner {
      padding-inline: 28px;
    }

    .theme-benefit-strip {
      width: calc(100% - 56px);
    }

    .theme-benefit-item {
      padding-inline: 15px;
    }
}

@media (max-width: 960px) {
    .theme-hero {
      min-height: 450px;
      background-image:
        linear-gradient(180deg, rgb(var(--theme-background-rgb) / 0.08), rgb(var(--theme-background-rgb) / 0.12) 35%, rgb(var(--theme-background-rgb) / 0.96) 68%, var(--theme-background) 100%),
        var(--theme-hero-image);
      background-position: center, top right;
      background-size: 100% 100%, auto 64%;
    }

    .theme-hero-inner {
      display: flex;
      min-height: 450px;
      align-items: flex-end;
      padding: 180px 28px 24px;
    }

    .theme-hero-copy {
      width: min(100%, 620px);
    }


    .theme-benefit-strip {
      grid-template-columns: repeat(2, 1fr);
    }

    .theme-benefit-item:nth-child(2) {
      border-right: 0;
    }

    .theme-benefit-item:nth-child(-n+2) {
      border-bottom: 1px solid rgb(var(--theme-accent-highlight-rgb) / 0.2);
    }

    .theme-benefit-cta {
      margin: 12px 18px;
    }
}

@media (max-width: 680px) {
    .theme-hero {
      min-height: 520px;
      background-size: 100% 100%, auto 56%;
    }

    .theme-hero-inner {
      min-height: 520px;
      padding: 210px 16px 22px;
    }

    .theme-hero-title {
      font-size: clamp(28px, 9vw, 38px);
      letter-spacing: 0.03em;
    }

    .theme-hero-lead {
      font-size: 12px;
    }


    .theme-live-section .theme-shell,
    .theme-recommend-inner {
      padding-inline: 12px;
    }

    .theme-section-heading {
      align-items: flex-end;
    }

    .theme-section-heading h2 {
      font-size: 17px;
    }

    .theme-section-heading h2 small {
      display: block;
      margin: 2px 0 0;
    }


    .theme-live-scroll {
      gap: 8px;
      padding: 6px 6px 12px;
    }

    .theme-live-page {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .theme-live-card-info {
      padding: 8px;
    }

    .theme-live-card-name strong {
      font-size: 12px;
    }

    .theme-gender-icon {
      min-width: 21px;
      height: 21px;
      font-size: 10px;
    }

    .theme-live-card-stats {
      grid-template-columns: 1fr;
    }

    .theme-live-card-viewers,
    .theme-live-card-favorites {
      min-height: 31px;
    }

    .theme-live-card-favorites {
      justify-content: center;
    }

    .theme-recommend-panel {
      padding: 16px 12px;
    }

    .theme-question-grid {
      grid-template-columns: 1fr;
    }

    .theme-question--multiple .theme-answer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .theme-tag-tab-labels {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-tag-tab-panel {
      max-height: 360px;
      padding: 9px;
    }

    .theme-question--tags .theme-tag-tab-panel .theme-answer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-question legend {
      font-size: 12px;
    }

    .theme-answer {
      font-size: 11px;
    }

    .theme-recommend-submit {
      width: 100%;
    }

    .theme-benefit-strip {
      width: calc(100% - 24px);
      grid-template-columns: 1fr;
    }

    .theme-benefit-item {
      min-height: 70px;
      border-right: 0;
      border-bottom: 1px solid rgb(var(--theme-accent-highlight-rgb) / 0.2);
    }

    .theme-benefit-item:nth-child(2) {
      border-bottom: 1px solid rgb(var(--theme-accent-highlight-rgb) / 0.2);
    }

    .theme-benefit-cta {
      min-height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
  .theme-home *,
  .theme-home *::before,
  .theme-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.theme-benefit-icon .theme-icon { display: block; width: 34px; height: 34px; }
.theme-benefit-cta .theme-icon { width: 15px; height: 15px; }
.theme-section-heading small .theme-icon { width: 8px; height: 8px; vertical-align: 0; }
.theme-gender-icon .theme-icon { width: 15px; height: 15px; }
.theme-live-card-viewers-icon .theme-icon { width: 13px; height: 13px; vertical-align: -0.18em; }
.theme-live-card-favorites .theme-icon { width: 12px; height: 12px; vertical-align: -0.16em; }


.theme-hero-title {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.28;
}
.theme-hero-lead { font-size: 14px; line-height: 1.65; }
.theme-section-heading h2 { font-size: clamp(22px, 2vw, 26px); line-height: 1.35; }
.theme-section-heading h2 small,
.theme-live-badge,
.theme-question-note { font-size: 11px; }
.theme-live-card-title { font-size: 15px; }
.theme-live-card-viewers small,
.theme-live-card-favorites,
.theme-recommend-heading p,
.theme-answer,
.theme-benefit-item strong { font-size: 12px; }

@media (max-width: 680px) {
  .theme-hero-title {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.3;
    letter-spacing: .025em;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .theme-hero-lead { font-size: 13px; line-height: 1.65; letter-spacing: .1em; }
  .theme-section-heading h2 { font-size: 20px; }
  .theme-live-card-title { font-size: 14px; }
  .theme-answer { font-size: 12px; }
}


.theme-live-card-viewers {
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 961px) {
  .theme-hero-inner {
    display: flex;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 18px;
  }

  .theme-hero-copy {
    transform: translateY(18px);
  }

  .theme-hero-title {
    font-size: clamp(32px, 3.05vw, 46px);
  }

  .theme-hero-lead {
    font-size: 16px;
  }

  .theme-section-heading h2 {
    font-size: clamp(24px, 2.05vw, 28px);
  }

  .theme-section-heading h2 small,
  .theme-live-badge,
  .theme-question-note {
    font-size: 12px;
  }

  .theme-live-card-name strong {
    font-size: 15px;
  }

  .theme-live-card-viewers small,
  .theme-live-card-favorites,
  .theme-recommend-heading p,
  .theme-answer,
  .theme-benefit-item strong {
    font-size: 13px;
  }

  .theme-live-card-viewers strong {
    font-size: 17px;
  }
}

/* Recommendation required-field validation */
.theme-recommend-errors {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgb(255 103 118 / 0.72);
  border-radius: 6px;
  background: rgb(117 20 34 / 0.22);
  color: #ffd9df;
}

.theme-recommend-errors[hidden],
.theme-question-error[hidden] {
  display: none !important;
}

.theme-recommend-errors p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.theme-recommend-errors ul {
  margin: 7px 0 0;
  padding-left: 20px;
  font-size: 11px;
  line-height: 1.6;
}

.theme-question-required {
  display: inline-flex;
  align-items: center;
  margin-left: 7px;
  padding: 1px 5px;
  border: 1px solid rgb(255 103 118 / 0.66);
  border-radius: 999px;
  color: #ffd9df;
  background: rgb(117 20 34 / 0.28);
  font-family: var(--theme-sans);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.4;
  vertical-align: middle;
}

.theme-question.is-invalid {
  border-color: rgb(255 103 118 / 0.88);
  box-shadow:
    0 0 0 1px rgb(255 103 118 / 0.18),
    0 0 18px rgb(255 80 100 / 0.10);
}

.theme-question-error {
  margin: 9px 0 0;
  color: #ffb7c1;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .theme-recommend-errors {
    padding: 11px 12px;
  }

  .theme-recommend-errors p {
    font-size: 11px;
  }

  .theme-recommend-errors ul {
    font-size: 10px;
  }
}
