:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(11, 14, 18, 0.78);
  --panel-strong: rgba(19, 22, 29, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f3e8;
  --muted: #aaa79e;
  --gold: #f0bd55;
  --cyan: #00d9ff;
  --cyan-soft: rgba(0, 217, 255, 0.22);
  --ember: #ff5a3c;
  --ember-soft: rgba(255, 90, 60, 0.22);
}

/* The fan club: a portrait-first, warm charcoal and rose interface. */

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 217, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(255, 90, 60, 0.16), transparent 28rem),
    linear-gradient(135deg, #030303 0%, #0f1115 48%, #050505 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button,
textarea,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.loading-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
}

.site-shell::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 68%, rgba(240, 189, 85, 0.08)),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.06), transparent 18rem);
  pointer-events: none;
}

.hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 14px 26px;
}

.hero__top,
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand__logo {
  position: relative;
  display: block;
  width: 178px;
  height: 58px;
  overflow: hidden;
  color: #d6d2c8;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

.brand.mini .brand__logo {
  width: 118px;
  height: 42px;
}

.brand__logo::before {
  position: absolute;
  inset: 50% auto auto 0;
  content: "CINENOX";
  font-size: 1.92rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-shadow:
    0 1px 0 #fff,
    0 0 18px rgba(255, 255, 255, 0.26);
  transform: translateY(-50%) scaleX(1.06);
}

.brand__logo::after {
  position: absolute;
  right: 42px;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(214, 210, 200, 0.8);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.brand.mini .brand__logo::before {
  font-size: 1.6rem;
}

.brand.mini .brand__logo::after {
  right: 22px;
  width: 17px;
  height: 17px;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.86rem;
}

.hero__copy {
  padding: 18px 0 14px;
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  font-size: clamp(0.75rem, 2vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

.hero__copy h1 {
  max-width: 820px;
  margin: 8px auto 0;
  font-size: clamp(2.05rem, 8.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__copy h1::first-line {
  color: var(--gold);
}

.hero__copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.25rem);
}

.stage-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.stage-strip span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(240, 189, 85, 0.22);
  border-radius: 8px;
  background: rgba(240, 189, 85, 0.08);
  color: #f8d887;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poll-grid {
  display: grid;
  gap: 14px;
}

.candidate {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 328px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), transparent 34%),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.candidate::after {
  position: absolute;
  inset: auto 14px 14px auto;
  color: rgba(255, 255, 255, 0.06);
  content: "VOICE";
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.candidate--cyan {
  box-shadow: 0 22px 74px rgba(0, 217, 255, 0.1);
}

.candidate--ember {
  box-shadow: 0 22px 74px rgba(255, 90, 60, 0.1);
}

.candidate--selected {
  border-color: rgba(240, 189, 85, 0.8);
}

.candidate__portrait {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 32%, rgba(255, 255, 255, 0.2), transparent 5rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent);
}

.candidate--cyan .candidate__portrait {
  background-color: rgba(0, 217, 255, 0.12);
}

.candidate--ember .candidate__portrait {
  background-color: rgba(255, 90, 60, 0.13);
}

.voice-avatar {
  position: absolute;
  right: 20px;
  bottom: 52px;
  width: 58px;
  height: 112px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.14));
  filter: drop-shadow(0 0 30px currentColor);
  opacity: 0.46;
}

.candidate--cyan .voice-avatar,
.candidate--cyan .waveform {
  color: var(--cyan);
}

.candidate--ember .voice-avatar,
.candidate--ember .waveform {
  color: var(--ember);
}

.voice-avatar::before {
  position: absolute;
  right: 34px;
  top: 24px;
  width: 56px;
  height: 44px;
  border-radius: 60% 40% 45% 55%;
  background: rgba(0, 0, 0, 0.72);
  content: "";
}

.waveform {
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: rotate(-90deg);
}

.waveform i {
  display: block;
  width: 3px;
  height: calc(8px + (var(--i, 1) * 4px));
  min-height: 12px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.waveform i:nth-child(3n) {
  height: 28px;
}

.waveform i:nth-child(4n) {
  height: 40px;
}

.candidate__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px 14px;
}

.candidate__body p,
.candidate__body textarea::placeholder {
  color: var(--muted);
}

.candidate__body h2 {
  margin-top: 3px;
  font-size: clamp(1.34rem, 6vw, 2rem);
  line-height: 1;
}

.play-button,
.action-panel button,
.admin-actions button,
.review-item button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffd983, #c58b24);
  color: #161007;
  font-weight: 900;
}

.play-button {
  width: 100%;
  padding: 0 14px;
}

.play-button b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
}

.audio-line,
.result-bar {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.audio-line span,
.result-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, currentColor, #f6d77d);
  transition: width 160ms ease;
}

.candidate--cyan .audio-line,
.candidate--cyan .result-bar {
  color: var(--cyan);
}

.candidate--ember .audio-line,
.candidate--ember .result-bar {
  color: var(--ember);
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.rating-row button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
}

.rating-row button.active {
  border-color: rgba(240, 189, 85, 0.8);
  background: rgba(240, 189, 85, 0.18);
  color: #ffe4a4;
}

.select-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e9e1ca;
  font-size: 0.9rem;
}

.select-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

textarea {
  width: 100%;
  min-height: 64px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 10px 12px;
  outline: none;
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.result-row strong {
  color: var(--text);
  font-size: 1.1rem;
}

.action-panel {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  border: 1px solid rgba(240, 189, 85, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  padding: 16px;
}

.action-panel p {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-panel strong {
  display: block;
  margin-top: 2px;
  font-size: 2rem;
}

.action-panel span,
.status-message {
  color: var(--muted);
}

.action-panel__buttons {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 10px;
}

.action-panel button {
  justify-content: center;
  padding: 0 18px;
}

.action-panel .ghost-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.status-message {
  margin-top: 12px;
  text-align: center;
}

.insight-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.insight-band div {
  min-width: 0;
  padding: 14px 10px;
  text-align: center;
}

.insight-band div + div {
  border-left: 1px solid var(--line);
}

.insight-band span,
.admin-metrics span,
.admin-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-band strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

footer {
  width: min(880px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: center;
}

.admin-shell {
  width: min(1180px, calc(100% - 28px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px 0 42px;
}

.admin-header {
  padding-bottom: 20px;
}

.admin-header h1 {
  margin-top: 4px;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
}

.admin-header span {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-metrics,
.admin-columns {
  display: grid;
  gap: 14px;
}

.admin-metrics {
  grid-template-columns: repeat(3, 1fr);
}

.admin-metrics article,
.admin-panel,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.admin-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(1.6rem, 5vw, 3rem);
}

.admin-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.admin-panel h2,
.admin-card h2 {
  margin: 0 0 8px;
}

.admin-panel p,
.admin-card p {
  color: var(--muted);
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-actions button,
.review-item button {
  padding: 0 16px;
}

.admin-columns {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.admin-card strong {
  display: block;
  margin: 12px 0;
  font-size: 2rem;
}

.admin-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.admin-card li {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  text-transform: capitalize;
}

.reviews-panel {
  display: grid;
}

.review-item {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.review-item p {
  color: var(--text);
}

.review-item span {
  color: var(--muted);
  text-transform: capitalize;
}

.review-item div {
  display: flex;
  gap: 8px;
}

@media (min-width: 760px) {
  .hero {
    padding: 28px 24px 34px;
  }

  .poll-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .candidate {
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 438px;
  }

  .candidate__body {
    padding: 24px;
  }

  .action-panel {
    grid-template-columns: 1fr minmax(320px, 0.7fr);
    align-items: center;
  }
}

@media (max-width: 520px) {
  .hero__top {
    align-items: flex-start;
  }

  .brand {
    display: grid;
    gap: 2px;
  }

  .brand__logo {
    width: 142px;
    height: 48px;
  }

  .brand__logo::before {
    font-size: 1.5rem;
    transform: translateY(-50%) scaleX(1.04);
  }

  .brand__logo::after {
    right: 32px;
    width: 17px;
    height: 17px;
  }

  .admin-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero__copy {
    padding-top: 10px;
  }

  .stage-strip span {
    min-height: 38px;
    font-size: 0.68rem;
  }

  .candidate {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 360px;
  }

  .candidate__body {
    gap: 10px;
    padding: 14px 10px;
  }

  .rating-row {
    grid-template-columns: 1fr;
  }

  .rating-row button {
    min-height: 36px;
  }

  .action-panel__buttons,
  .insight-band,
  .admin-metrics,
  .admin-columns {
    grid-template-columns: 1fr;
  }

  .insight-band div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .admin-panel {
    display: grid;
  }
}

:root { --bg:#191718; --panel:#242122; --panel-strong:#282426; --text:#f7f3f4; --muted:#aaa2a6; --gold:#f04b79; --line:#ffffff12; }
html { scroll-behavior:smooth; scroll-padding-top:24px; }
body { background:radial-gradient(ellipse at 50% 0%,#49222d66,transparent 650px),#191718; font-family:ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; }
button,a,input,textarea { -webkit-tap-highlight-color:transparent; }
button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible { outline:2px solid #ff7399; outline-offset:5px; }
.site-shell::before,.site-shell::after { display:none; }
.hero { max-width:1100px; padding:28px 28px 24px; }
.hero__top { padding-bottom:20px; border-bottom:1px solid var(--line); align-items:center; }
.brand { display:flex; gap:18px; letter-spacing:.14em; }
.brand__logo { width:142px; height:34px; filter:none; }
.brand__logo::before { font-size:24px; letter-spacing:-1px; font-style:italic; text-shadow:none; transform:translateY(-50%); color:#fff; }
.brand__logo::after { display:none; }
.admin-link { background:#ffffff05; border-radius:12px; color:#d7cdd2; }
.hero__copy { text-align:center; padding:52px 0 32px; }
.eyebrow { color:#d191a5; font-size:10px; letter-spacing:.2em; font-weight:700; }
.eyebrow i { display:inline-block; width:6px; height:6px; background:#ed4277; border-radius:50%; margin:0 7px 1px 0; }
.hero__copy h1 { margin-top:18px; max-width:850px; font-size:clamp(36px,5.6vw,67px); line-height:1.08; letter-spacing:-2.8px; font-weight:750; }
.hero__copy h1::first-line { color:var(--text); }
.hero__copy h1 em { color:#f05a83; font-style:normal; }
.mobile-break { display:none; }
.hero__copy p { margin-top:18px; font-size:14px; line-height:1.8; color:#b5a9b0; }
.hero-tags { display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin-top:22px; }
.hero-tags>span { border:1px solid #ffffff0c; background:#2c2428; border-radius:7px; padding:7px 10px; font-size:10px; color:#d2bfc6; }
.live-dot::before { content:""; display:inline-block; width:5px; height:5px; border-radius:50%; background:#66cfa0; margin-right:6px; vertical-align:middle; }
.stage-strip { display:flex; justify-content:center; max-width:500px; gap:4px; margin:0 auto 32px; padding:5px; background:#292527; border-radius:15px; }
.stage-strip a,.stage-strip button { flex:1; border:0; color:#cfc5ca; background:none; border-radius:11px; padding:12px 8px; text-align:center; font-size:12px; }
.stage-strip .active { color:white; background:linear-gradient(110deg,#d72b69,#e33f47); }
.section-heading { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:20px; }
.section-heading h2 { margin-top:7px; font-size:25px; letter-spacing:-.7px; }
.section-heading>span { font-size:11px; color:#8f8188; }
.poll-grid { gap:24px; }
.candidate { display:block; min-height:0; border:1px solid #ffffff0c; border-radius:22px; background:#242122; box-shadow:none; transition:border-color .2s; }
.candidate::after { display:none; }
.candidate--selected { border-color:#d9436c; }
.candidate__portrait { height:300px; background:#352b2d !important; }
.candidate__portrait img { width:100%; height:100%; display:block; object-fit:cover; object-position:center 24%; }
.candidate--cyan .candidate__portrait img { object-position:center 32%; }
.candidate__portrait::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,#0003,transparent 30%,#18141622 48%,#211c1ef5); }
.portrait-tag { position:absolute; left:20px; top:20px; z-index:1; font-size:9px; letter-spacing:.12em; border:1px solid #ffffff38; background:#201b2199; backdrop-filter:blur(12px); padding:8px 10px; border-radius:7px; }
.portrait-number { position:absolute; right:18px; top:16px; z-index:1; font-size:26px; font-weight:300; color:#fff9; }
.portrait-name { position:absolute; left:24px; right:15px; bottom:20px; z-index:1; }
.portrait-name p { color:#efb7c8; font-size:11px; margin-bottom:7px; }
.portrait-name h2 { font-size:29px; letter-spacing:-.8px; }
.portrait-name>span { display:block; margin-top:6px; color:#c6b8be; font-size:11px; }
.candidate__body { padding:20px 24px 24px; gap:13px; }
.play-button { color:#f7edf1; background:#30292c; border:1px solid #ffffff08; border-radius:13px; min-height:62px; font-weight:600; font-size:12px; }
.play-button small { display:block; margin-top:5px; font-size:9px; color:#a997a0; font-weight:400; }
.play-button b { background:linear-gradient(130deg,#d42b6b,#e44949); font-size:12px; min-width:34px; }
.mini-wave { letter-spacing:3px; color:#ce587d; font-size:20px; overflow:hidden; white-space:nowrap; }
.audio-line { height:3px; margin-top:-4px; }
.audio-line span,.result-bar span { background:linear-gradient(90deg,#b92e63,#ed5a72); }
.rating-row { grid-template-columns:repeat(3,1fr); gap:8px; }
.rating-row button { border-radius:9px; background:#ffffff03; min-height:42px; font-size:11px; font-weight:500; }
.rating-row button.active { color:#ffc0d3; border-color:#b94b6d; background:#75304744; }
.select-row { min-height:36px; font-size:12px; color:#e6d8df; }
.select-row input { accent-color:#df3b71; width:18px; height:18px; }
textarea { border-radius:10px; background:#1d1a1c; font-size:12px; min-height:62px; }
.result-row { font-size:11px; padding-top:4px; }
.result-row strong { font-size:15px; color:#ed92af; }
.result-bar { height:5px; }
.action-panel { border-radius:20px; border:1px solid #ffffff0c; background:#292326; padding:24px; margin-top:24px; }
.action-panel p { color:#cab2bd; font-size:10px; letter-spacing:.12em; }
.action-panel strong { font-size:32px; letter-spacing:-1px; margin:5px 0; }
.action-panel span { font-size:11px; }
.action-panel button,.admin-actions button,.review-item button { background:linear-gradient(110deg,#d72b69,#e33f47); color:#fff; border-radius:12px; font-size:13px; font-weight:600; min-height:50px; }
.action-panel .ghost-button { background:transparent; border-color:#754052; color:#ed95b1; }
.vote-hint { color:#8e8087; text-align:center; font-size:10px; margin-top:15px; }
.status-message { font-size:12px; line-height:1.7; }
.insight-band { max-width:1044px; width:calc(100% - 56px); grid-template-columns:repeat(3,1fr); border:0; border-radius:17px; background:#242022; margin-bottom:34px; }
.insight-band div { padding:22px 12px; }
.insight-band div+div { border-left:1px solid var(--line); border-top:0; }
.insight-band span { font-size:9px; letter-spacing:.06em; }
.insight-band strong { font-size:13px; margin-top:9px; }
.community { width:calc(100% - 56px); max-width:1044px; margin:0 auto 40px; }
.community>p { color:var(--muted); font-size:13px; line-height:1.8; padding:24px; background:#242022; border-radius:16px; }
.community article { display:flex; gap:13px; padding:20px; background:#242022; border-radius:16px; margin-bottom:10px; }
.community article strong { font-size:12px; }.community article small { color:#9f8d96; font-weight:400; margin-left:6px; }.community article p { color:#c7bbc1; font-size:13px; line-height:1.7; margin-top:8px; }
.review-avatar { background:#52303e; color:#ef9fb9; height:34px; min-width:34px; display:grid; place-items:center; border-radius:50%; font-size:12px; }
footer { max-width:560px; font-size:10px; line-height:1.9; padding-bottom:36px; color:#857b80; }footer>strong { display:block; font-size:20px; font-style:italic; letter-spacing:-1px; color:#c9bdc3; }footer>p { margin:5px 0 15px; color:#aa99a2; }footer details { margin-top:12px; font-size:9px; }footer summary { cursor:pointer; }.footer-admin { display:inline-block; margin-top:12px; color:#b79da9; }
.bottom-nav { display:none; }
.admin-panel,.admin-card,.admin-metrics article { border-radius:18px; }
@media(max-width:759px) {
 .hero { max-width:500px; padding:20px 20px 20px; }.brand { display:flex; }.brand>span { font-size:9px; }.hero__top { padding-bottom:16px; }.hero__copy { padding:34px 0 25px; }.hero__copy h1 { font-size:42px; letter-spacing:-1.7px; line-height:1.13; }.mobile-break { display:block; }.hero__copy p { font-size:12px; }.eyebrow { font-size:9px; }.hero-tags>span { font-size:9px; padding:6px 8px; }.stage-strip { margin-bottom:28px; }.section-heading h2 { font-size:23px; }.candidate__portrait { height:290px; }.poll-grid { gap:22px; }.candidate__body { padding:18px 20px 22px; }.portrait-name { left:20px; }.portrait-name h2 { font-size:28px; }.action-panel { padding:22px; }.action-panel__buttons { grid-template-columns:1fr .4fr; }.insight-band,.community { width:calc(100% - 40px); max-width:460px; }.insight-band div { padding:20px 8px; }.insight-band span { font-size:8px; }.insight-band strong { font-size:11px; }.community article small { display:block; margin:4px 0 0; }footer { padding:0 15px 112px; }.bottom-nav { position:fixed; z-index:10; bottom:0; left:0; right:0; display:flex; justify-content:space-around; background:#211d20f2; backdrop-filter:blur(20px); border-top:1px solid #ffffff0c; padding:9px 10px max(12px,env(safe-area-inset-bottom)); }.bottom-nav a { display:grid; gap:4px; justify-items:center; color:#a99aa3; font-size:9px; min-width:58px; min-height:44px; }.bottom-nav a>span { font-size:23px; line-height:28px; }.bottom-nav .active { color:#f35b8d; }.admin-header { flex-wrap:wrap; }
}
@media(prefers-reduced-motion:reduce) { html {scroll-behavior:auto;} * {transition:none !important;} }

.quick-select { cursor:pointer; border:1px solid #555; border-radius:10px; padding:10px 12px; min-height:46px; font-weight:600; }
.candidate--selected .quick-select { background:#e2dfd5; color:#161616; border-color:#e2dfd5; }
.voice-extras summary { cursor:pointer; font-size:12px; color:#aaa; padding:10px 0; min-height:40px; }
.voice-extras__content { display:grid; gap:12px; padding:8px 0; }

.post-vote-comment { border:1px solid #ffffff20; background:#191919; border-radius:16px; padding:24px; margin-top:20px; }
.post-vote-comment h2 { margin:10px 0; font-size:24px; }.post-vote-comment p { color:#aaa; font-size:13px; line-height:1.6; }
.post-vote-comment button,.post-vote-share button { min-height:44px; border:1px solid #555; background:#e2dfd5; color:#151515; padding:10px 16px; border-radius:9px; margin-top:12px; font-size:12px; }
.post-vote-comment form { display:grid; gap:14px; margin-top:18px; }.post-vote-comment label { display:grid; gap:8px; font-size:13px; }.post-vote-comment label span { font-size:11px; color:#aaa; }.post-vote-comment input { padding:12px; min-height:46px; border:1px solid #555; border-radius:9px; background:#111; color:#fff; }
.record-controls { display:flex; flex-wrap:wrap; align-items:center; gap:10px; }.record-controls span,.phone-note { color:#999; font-size:10px; line-height:1.6; }.post-vote-comment audio,.review-item audio,.community audio { max-width:100%; width:100%; margin:12px 0; }.post-vote-share { text-align:center; }

/* Movie artwork supplies the colour; the interface stays neutral. */
:root { --bg:#101010; --panel:#1a1a1a; --panel-strong:#222; --text:#f4f4f2; --muted:#a3a3a1; --gold:#ddd9ce; --line:#ffffff16; }
body { background:#101010; }
.hero { max-width:1280px; padding-top:22px; }
.hero__top { border:0; padding-bottom:22px; }
.hero__copy { position:relative; isolation:isolate; min-height:570px; display:flex; align-items:center; text-align:left; padding:65px 55px; margin:0 0 30px; border-radius:22px; overflow:hidden; background:#151515; }
.movie-wallpaper { position:absolute; inset:0; z-index:-2; background:url('assets/movie-wallpaper.png') center center / cover no-repeat; }
.hero__copy::after { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg,#0b0b0bf0 0%,#0b0b0ba6 37%,#0b0b0b05 70%),linear-gradient(0deg,#101010cc,transparent 35%); }
.movie-copy { max-width:610px; }
.hero__copy h1 { font-size:clamp(40px,5vw,67px); letter-spacing:-2.5px; margin:20px 0 0; max-width:610px; text-wrap:balance; }
.hero__copy h1 em { color:#d6d5ce; }
.hero__copy p { color:#c1c0bc; text-shadow:0 1px 10px #000; }
.hero-tags { justify-content:flex-start; }
.hero-tags>span { background:#171717ad; color:#d4d4ce; border-color:#ffffff22; backdrop-filter:blur(8px); }
.eyebrow { color:#aeadA6; }.eyebrow i { background:#d1c9b5; }
.stage-strip { background:#202020; max-width:560px; }.stage-strip a,.stage-strip button { color:#aaa; }.stage-strip .active { background:#e3e1da; color:#151515; }
.section-heading>span { color:#92928d; }
.candidate { background:#191919; }.candidate--selected { border-color:#aba79a; }.candidate__portrait { background:#242424 !important; }
.candidate__portrait::after { background:linear-gradient(180deg,#0003,transparent 30%,#15151522 48%,#191919fa); }.portrait-tag { background:#161616b3; }.portrait-name p,.portrait-name>span { color:#d4d1c7; }
.play-button { background:#242424; color:#eee; }.play-button small { color:#999; }.play-button b { background:#d9d5c9; color:#1a1a1a; }.mini-wave { color:#aaa69a; }
.audio-line span,.result-bar span { background:linear-gradient(90deg,#77756d,#d1caba); }.rating-row button.active { border-color:#aaa79a; background:#ffffff10; color:#fff; }.select-row { color:#ddd; }.select-row input { accent-color:#d1caba; }textarea { background:#111; }.result-row strong { color:#d9d4c9; }
.action-panel { background:#1c1c1c; }.action-panel p { color:#bdbbb5; }.action-panel button,.admin-actions button,.review-item button { background:#e2dfd5; color:#191919; }.action-panel .ghost-button { border-color:#555; color:#ddd; }
.vote-hint { color:#888; }.insight-band,.community article,.community>p { background:#1a1a1a; }.community article small { color:#96948d; }.community article p { color:#bbb; }.review-avatar { background:#35342f; color:#ded9cc; }
.insight-band,.community { max-width:1224px; }.bottom-nav { background:#181818f5; }.bottom-nav a { color:#999; }.bottom-nav .active { color:#ece6d6; }
footer { max-width:1224px; width:calc(100% - 56px); border-top:1px solid #ffffff16; padding:42px 0 30px; text-align:left; color:#81817d; }
.footer-main { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:36px; margin-bottom:38px; }.footer-brand { display:block; color:#eee; font-size:27px; font-weight:900; font-style:italic; letter-spacing:-1.2px; }.footer-main p { color:#d0cfc9; font-size:12px; margin:10px 0; }.footer-main span { font-size:11px; line-height:1.8; }.footer-main nav { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }.footer-main nav>span,.footer-invite>span { font-size:9px; letter-spacing:.15em; color:#b2afa4; }.footer-main nav a { font-size:12px; color:#c6c6c1; }.footer-invite button { margin-top:7px; min-height:42px; padding:0 18px; background:#242424; border:1px solid #444; border-radius:9px; color:#e4e1d6; font-size:12px; }
.footer-legal { border-top:1px solid #ffffff12; padding-top:20px; display:flex; justify-content:space-between; gap:12px; font-size:10px; }.footer-disclaimer { font-size:10px; color:#777; margin-top:12px; }footer .footer-admin { color:#a9a69e; }
@media(max-width:759px) {
 .hero { padding:18px 20px 20px; max-width:540px; }.hero__top { padding-bottom:18px; }
 .hero__copy { min-height:640px; margin:0 -20px 25px; border-radius:0; align-items:flex-end; padding:290px 24px 32px; }
 .movie-wallpaper { background-position:67% top; background-size:auto 440px; }
 .hero__copy::after { background:linear-gradient(0deg,#101010 0%,#101010fa 25%,#101010b8 43%,transparent 70%),linear-gradient(90deg,#0002,transparent); }
 .hero__copy h1 { font-size:43px; line-height:1.05; letter-spacing:-1.9px; margin-top:14px; }.hero__copy p { font-size:12px; margin-top:14px; }.hero-tags { gap:6px; margin-top:17px; }.hero-tags>span { font-size:9px; }.hero__copy .eyebrow { color:#dbd6c8; }
 .insight-band,.community { max-width:500px; }footer { width:calc(100% - 40px); max-width:500px; padding:30px 0 112px; }.footer-main { grid-template-columns:1fr 1fr; gap:25px 20px; margin-bottom:26px; }.footer-main>div:first-child { grid-column:1/-1; }.footer-main nav a { font-size:11px; }.footer-main p { font-size:11px; }.footer-legal { flex-wrap:wrap; font-size:9px; }
}

@media(max-width:759px) {
 .hero { padding:12px 16px 20px; }
 .hero__top { padding-bottom:10px; }.brand__logo { height:30px; }.brand>span { display:none; }
 .hero__copy { min-height:0; height:158px; margin:0 -16px 16px; padding:20px 20px; align-items:center; }
 .movie-wallpaper { background-size:cover; background-position:center 48%; }
 .hero__copy::after { background:linear-gradient(90deg,#101010ee,#10101077),linear-gradient(0deg,#101010,transparent 45%); }
 .hero__copy h1 { font-size:27px; line-height:1.06; letter-spacing:-.8px; margin-top:8px; }
 .hero__copy h1 br { display:none; }.hero__copy h1 br::after { content:" "; }
 .hero__copy h1 em::before { content:" "; }.hero__copy h1 em::after { content:" "; }
 .hero__copy p { font-size:11px; margin-top:9px; }.hero__copy p br,.hero-tags { display:none; }
 .hero__copy .eyebrow { font-size:8px; }
 .stage-strip { display:none; }
 .section-heading { margin-bottom:12px; }.section-heading .eyebrow { display:none; }.section-heading h2 { font-size:20px; margin:0; }
 .poll-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; align-items:start; }
 .candidate { border-radius:14px; min-width:0; }
 .candidate__portrait { height:178px; }
 .portrait-tag,.portrait-number,.portrait-name>span { display:none; }
 .portrait-name { left:10px; right:8px; bottom:10px; }.portrait-name p { font-size:8px; margin-bottom:5px; }.portrait-name h2 { font-size:17px; line-height:1.12; letter-spacing:-.4px; }
 .candidate__body { padding:10px; gap:4px; }
 .quick-select { font-size:11px; padding:8px; gap:6px; min-height:44px; border-radius:8px; }
 .quick-select input { width:16px; height:16px; margin:0; }
 .voice-extras summary { font-size:10px; min-height:36px; padding:10px 0; }
 .play-button { padding:8px; gap:4px; min-height:48px; font-size:10px; }.play-button b { width:24px; height:24px; min-width:24px; }.mini-wave { display:none; }.play-button small { font-size:8px; }
 .rating-row { grid-template-columns:1fr; gap:5px; }.rating-row button { min-height:36px; }
 .result-row { font-size:9px; gap:4px; padding:3px 0; }.result-row strong { font-size:12px; }.result-bar { height:3px; }
 .action-panel { margin-top:12px; padding:12px; gap:8px; border-radius:13px; }
 .action-panel>div:first-child { display:flex; align-items:center; gap:7px; flex-wrap:wrap; }.action-panel p { display:none; }.action-panel strong { font-size:16px; margin:0; }.action-panel span { font-size:9px; }
 .action-panel__buttons { grid-template-columns:1fr; }.action-panel__buttons .ghost-button { display:none; }.action-panel button { min-height:46px; font-size:12px; }
 .vote-hint,.status-message { margin-top:9px; font-size:10px; }
}

.action-panel strong { font-size:48px; font-weight:800; font-variant-numeric:tabular-nums; line-height:1.1; }
.result-row { flex-wrap:wrap; }.result-row>span { font-size:14px; color:#eee; font-weight:650; }
@media(max-width:759px) { .action-panel strong { font-size:34px; }.result-row>span { font-size:12px; }.action-panel>div:first-child { gap:10px; } }
.brand__logo,.brand.mini .brand__logo { width:155px; height:58px; background:url('assets/cinenox-brand-v2.png') center / contain no-repeat; mix-blend-mode:screen; }
.brand__logo::before,.brand__logo::after { display:none; }
.eyebrow,.hero__copy .eyebrow { color:#e5ba72; }
.hero__copy h1 em { color:#f2c477; }
.candidate--cyan { border-color:#345a60; background:linear-gradient(160deg,#203236,#171e20); }
.candidate--ember { border-color:#654c39; background:linear-gradient(160deg,#38291f,#201b17); }
.candidate--selected { border-color:#e6b86d; box-shadow:0 0 0 1px #e6b86d33; }
.candidate--selected .quick-select,.action-panel button,.post-vote-comment button { background:linear-gradient(120deg,#f0cf91,#d7a34d); color:#21190f; border-color:#d7a34d; }
.candidate--cyan .result-bar span { background:linear-gradient(90deg,#469998,#8cdbcf); }.candidate--ember .result-bar span { background:linear-gradient(90deg,#c98840,#f3ca85); }
.result-row strong { color:#f0c17d; }.action-panel { background:linear-gradient(120deg,#30291e,#202b2d); border-color:#a4824244; }.action-panel strong { color:#f3d49a; }
.post-vote-comment { background:linear-gradient(140deg,#202e30,#1c2024); border-color:#3e6264; }.review-avatar { background:#274746; color:#a5e6d7; }.community article { background:#1b2529; }.bottom-nav .active { color:#f1c579; }.footer-main nav a:hover { color:#f3c678; }
.site-shell { background:linear-gradient(#10101088,#101010f5 850px),url('assets/movie-wallpaper.png') center top / 100vw auto no-repeat; }
.hero__copy { overflow:visible; background:transparent; }
.movie-wallpaper { left:calc((100% - 100vw)/2); right:calc((100% - 100vw)/2); border-radius:0; }
.hero__copy::after { left:calc((100% - 100vw)/2); right:calc((100% - 100vw)/2); }
@media(max-width:759px) { .site-shell { background-size:auto,auto 100vh; }.hero__copy { overflow:hidden; }.post-vote-comment { padding:18px; }.post-vote-comment h2 { font-size:20px; } }
