/* host-game: scanning, topics, question, reveal, scoreboard */
.reveal-kicker {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.reveal-premise {
  margin: 0 0 22px;
  max-width: 1080px;
  font-size: clamp(2.1rem, 3.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}

/* SCANNING RADAR */
.scanning-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  gap: 32px;
  padding: 40px;
}

.radar-circle {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 3px solid var(--accent-cyan);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.35);
  animation: floatAnim 5s ease-in-out infinite;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 72%, rgba(0, 242, 254, 0.45) 100%);
  animation: rotateSweep 4.5s linear infinite;
}

@keyframes rotateSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-icon {
  font-size: 4.8rem;
  z-index: 2;
}

/* TOPICS VIEW */
.topics-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 28px;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.topics-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.topic-card {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 190px;
  transform: none !important;
}

.topic-card.highlight {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
  transform: none !important;
}

.topic-category {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--accent-magenta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.topic-title {
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1.28;
}

.topic-vote-bar {
  height: 9px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 10px;
}

.topic-vote-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
  width: 0%;
  transition: width 0.4s ease;
}

.topic-voters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  min-height: 28px;
}

/* QUESTION VIEW */
.question-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.story-box {
  max-width: 980px;
  padding: 46px 54px;
  border-left: 6px solid var(--accent-cyan);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.75);
  margin: 0 auto;
}

.story-premise {
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.28;
  color: #ffffff;
  text-align: center;
}

.voting-heading {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 8px;
}

.voting-premise {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.28;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto 18px;
}

.story-blank {
  display: inline-block;
  min-width: 180px;
  border-bottom: 4px dashed var(--accent-yellow);
  color: var(--accent-yellow);
  padding: 0 10px;
}

.submission-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* 3D OPTIONS & REVEAL GRID */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.option-card {
  padding: 26px 30px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 145px;
  overflow: hidden;
  transform: none !important;
}

.option-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.option-text {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Suspense Spotlight & Card Highlight - Zero Scaling or Size Change */
.option-card.spotlight {
  transform: none !important;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 208, 0, 0.08), rgba(26, 33, 56, 0.95));
  z-index: 5;
}

/* "FOOLED!" SLANTED RUBBER STAMP */
.stamp-fooled {
  position: absolute;
  top: auto;
  bottom: 10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: #ff0055;
  border: 3px solid #ff0055;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
  opacity: 0;
  animation: stampSlam 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
  box-shadow: 0 0 16px rgba(255, 0, 85, 0.35);
  z-index: 2;
}

@keyframes stampSlam {
  0% { opacity: 0; transform: rotate(-8deg) scale(1.6); }
  100% { opacity: 1; transform: rotate(-8deg) scale(1); }
}

/* Golden Real Truth Card - Clean Stable Highlight */
.option-card.is-truth {
  transform: none !important;
  border-color: var(--accent-green);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.14), rgba(16, 36, 28, 0.95));
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.4);
}

.option-author-reveal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-weight: 800;
  font-size: 1.05rem;
}

.voters-tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.voter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 800;
  animation: popIn 0.3s ease;
}

/* BROADCAST 3D LEADERBOARD PODIUMS */
.scoreboard-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 28px;
  max-width: 950px;
  margin: 0 auto;
  width: 100%;
}

.podium-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-height: 240px;
  margin-bottom: 20px;
}

.podium-column {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.podium-block {
  width: 100%;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.podium-1 .podium-block {
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.4), rgba(255, 208, 0, 0.1));
  border: 2px solid var(--accent-yellow);
  box-shadow: 0 0 35px rgba(255, 208, 0, 0.4);
  color: var(--accent-yellow);
}

.podium-2 .podium-block {
  height: 130px;
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.35), rgba(0, 242, 254, 0.08));
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
}

.podium-3 .podium-block {
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 0, 127, 0.35), rgba(255, 0, 127, 0.08));
  border: 2px solid var(--accent-magenta);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.3);
  color: var(--accent-magenta);
}

.podium-player-badge {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.podium-crown {
  font-size: 2.4rem;
  animation: floatAnim 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 208, 0, 0.8));
}

.scoreboard-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.scoreboard-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.scoreboard-item.leader {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 208, 0, 0.1), rgba(26, 33, 56, 0.9));
}

.score-rank {
  font-size: 1.8rem;
  font-weight: 900;
  width: 48px;
}

.score-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.score-avatar {
  font-size: 2.4rem;
}

.score-name {
  font-size: 1.35rem;
  font-weight: 900;
}

.score-points {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-cyan);
}

.score-delta {
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent-green);
  margin-left: 10px;
}

.truth-article-modal {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 36px calc(var(--ticker-h, 48px) + 20px);
  background: rgba(6, 8, 16, 0.38);
  pointer-events: none;
  overflow: hidden;
}

.truth-article-modal[hidden] {
  display: none !important;
}

.truth-article-table {
  width: min(680px, 92%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.truth-article {
  width: 100%;
  max-height: min(78vh, 820px);
  overflow: hidden;
  background: #fcfbf7;
  color: #1a1712;
  padding: 16px 26px 18px;
  pointer-events: auto;
  transform: rotate(-6deg);
  transform-origin: 52% 70%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    1px 2px 0 #d8d2c4,
    14px 28px 34px rgba(0, 0, 0, 0.42);
  opacity: 0;
}

.truth-article-modal.is-landed .truth-article {
  animation: newspaper-toss 560ms cubic-bezier(0.16, 0.84, 0.32, 1.12) both;
}

@keyframes newspaper-toss {
  0% {
    opacity: 0;
    transform: translate(90px, -170px) rotate(-20deg) scale(1.08);
  }
  72% {
    opacity: 1;
    transform: translate(-8px, 10px) rotate(-7.2deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(-6deg);
  }
}

.truth-article-masthead {
  text-align: center;
  margin: 0 0 8px;
}

.truth-article-masthead-rules {
  height: 4px;
  background:
    linear-gradient(#1a1712, #1a1712) 0 0 / 100% 1px no-repeat,
    linear-gradient(#1a1712, #1a1712) 0 100% / 100% 1px no-repeat;
}

.truth-article-nameplate {
  margin: 7px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #111;
}

.truth-article-dateline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 10px;
  padding: 6px 0 8px;
  border-bottom: 2px solid #1a1712;
}

.truth-article-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bf242a;
}

.truth-article-headline {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  color: #111;
}

.truth-article-date {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c564c;
}

.truth-article-media {
  position: relative;
  margin: 0 0 12px;
  background: #ddd6c8;
  overflow: hidden;
}

.truth-article-media[hidden] {
  display: none !important;
}

.truth-article-image {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.truth-article-media .photo-stamp {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  margin: 0;
  padding: 3px 7px;
  border: 2px solid #ff0055;
  color: #ff0055;
  background: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display), "Arial Black", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-11deg);
  pointer-events: none;
  white-space: nowrap;
}

.truth-article-intro {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.42;
  color: #1c1914;
}

.truth-article-more {
  position: relative;
  margin-top: 12px;
  max-height: 3.6em;
  overflow: hidden;
}

.truth-article-more[hidden] {
  display: none !important;
}

.truth-article-more-text {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.42;
  color: #1c1914;
}

.truth-article-more::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.8em;
  background: linear-gradient(to bottom, rgba(252, 251, 247, 0), #fcfbf7 78%);
  pointer-events: none;
}

