@import url('https://fonts.googleapis.com/css2?family=VT323&family=Orbitron:wght@400;700;900&display=swap');

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

html {
  background: #050208;
}

body {
  font-family: 'VT323', monospace;
  color: #b8ffb8;
  background: #050208 url('background.png') center center / cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,2,8,0.15) 0%, rgba(5,2,8,0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.bg-layer { display: none; }

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,255,150,0.04) 0px,
    rgba(0,255,150,0.04) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: -1;
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.92; }
}

/* ===== Audio toggle ===== */
.audio-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10, 5, 24, 0.85);
  border: 2px solid #00ff88;
  border-radius: 30px;
  color: #00ff88;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.35);
  transition: all 0.2s;
}
.audio-toggle:hover { background: rgba(0, 255, 136, 0.15); transform: scale(1.04); }
.audio-toggle.playing .audio-icon { animation: audio-pulse 1.4s infinite; }
.audio-icon { font-size: 1.1rem; }
@keyframes audio-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); filter: drop-shadow(0 0 6px #00ff88); }
}

/* On mobile, shrink the toggle so it doesn't overlap the hero stamp */
@media (max-width: 600px) {
  .audio-toggle {
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    gap: 5px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    border-width: 1px;
  }
  .audio-toggle .audio-icon { font-size: 0.85rem; }
}


/* ===== Tractor beam on click ===== */
.tractor-beam {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 0;
  height: 0;
  transform: translate(-50%, -100%);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 0 solid transparent;
  animation: beam-drop 0.9s ease-out forwards;
}
@keyframes beam-drop {
  0% {
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-bottom-color: rgba(0, 255, 136, 0);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(0, 255, 136, 0));
  }
  20% {
    border-left-width: 40px;
    border-right-width: 40px;
    border-bottom-width: 100vh;
    border-bottom-color: rgba(0, 255, 136, 0.55);
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(0, 255, 136, 0.9));
  }
  100% {
    border-left-width: 50px;
    border-right-width: 50px;
    border-bottom-width: 100vh;
    border-bottom-color: rgba(0, 255, 136, 0);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0));
  }
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 60px 20px 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-section, footer { position: relative; z-index: 1; }

.classified-stamp {
  display: inline-block;
  padding: 6px 18px;
  border: 2px dashed #ff3366;
  color: #ff3366;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  transform: rotate(-2deg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.glitch {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 9vw, 6rem);
  font-weight: 900;
  color: #00ff88;
  text-shadow:
    0 0 10px #00ff88,
    0 0 20px #00ff88,
    0 0 40px rgba(0,255,136,0.5);
  letter-spacing: 0.05em;
  position: relative;
  animation: glitch-anim 4s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.glitch::before {
  color: #ff00ff;
  animation: glitch-1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
  color: #00ffff;
  animation: glitch-2 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 2px); }
  94% { transform: translate(3px, -2px); }
  96% { transform: translate(-2px, -1px); }
}

@keyframes glitch-2 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(3px, -2px); }
  94% { transform: translate(-3px, 2px); }
  96% { transform: translate(2px, 1px); }
}

@keyframes glitch-anim {
  0%, 100% { text-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88, 0 0 40px rgba(0,255,136,0.5); }
  50% { text-shadow: 0 0 15px #00ff88, 0 0 30px #ff00ff, 0 0 50px rgba(0,255,255,0.6); }
}

.subtitle {
  font-family: 'Orbitron', sans-serif;
  color: #ffcc00;
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin: 10px 0 25px;
  text-shadow: 0 0 12px rgba(255,204,0,0.6);
  letter-spacing: 0.15em;
}

.tagline {
  font-size: 1.4rem;
  color: #b8ffb8;
  margin: 10px 0;
}

.tagline2 {
  font-size: 1.25rem;
  color: #ddd;
  max-width: 700px;
  margin: 20px auto 40px;
  font-style: italic;
}

.countdown {
  margin: 30px auto 12px;
  padding: 18px 24px;
  display: inline-block;
  background: rgba(0,0,0,0.55);
  border: 2px solid #ffcc00;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(255,204,0,0.35);
  backdrop-filter: blur(4px);
}

.cd-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #ffcc00;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  animation: pulse 2s infinite;
}

.cd-row {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.cd-unit span {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 12px #00ff88;
  line-height: 1;
}

.cd-unit small {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #88ffaa;
  margin-top: 6px;
}

/* ===== Cursor star trail ===== */
.cursor-star {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 6px currentColor, 0 0 12px currentColor;
  animation: starFade 0.9s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes starFade {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(-50%, -120%) scale(0.3) rotate(180deg); }
}

.counter-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 10px 0 30px;
  flex-wrap: wrap;
}

.counter {
  text-align: center;
}

.counter span {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 15px #00ff88;
  display: block;
}

.counter small {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: #88ffaa;
  letter-spacing: 0.15em;
}

.cta {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #00ff88, #00ccff);
  color: #050208;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0,255,136,0.6);
  transition: all 0.2s;
}

.cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 50px rgba(0,255,136,0.9);
}

/* ===== BRIEFING (inline, no card) ===== */
.briefing-inline {
  max-width: 720px;
  margin: 10px auto 40px;
  padding: 0 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.briefing-heading {
  font-family: 'Orbitron', sans-serif;
  color: #ffcc00;
  font-size: 1.6rem;
  margin-bottom: 18px;
  letter-spacing: 0.18em;
  text-shadow: 0 0 14px rgba(255, 204, 0, 0.5);
}

.briefing-inline p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 14px 0;
  color: #d8ffd8;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.briefing-inline strong { color: #ff3366; }
.briefing-inline em { color: #00ccff; }

.briefing-cta {
  margin-top: 28px;
}

/* ===== FORM SECTION (still in a card) ===== */
.form-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(10, 5, 20, 0.72);
  border: 2px solid #00ff88;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,255,136,0.2);
  backdrop-filter: blur(6px);
}

.form-section h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ffcc00;
  font-size: 1.6rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

/* ===== FORM ===== */
.warn {
  color: #ffcc00;
  font-size: 1.1rem;
  margin-bottom: 25px;
  padding: 10px;
  border-left: 3px solid #ffcc00;
  background: rgba(255,204,0,0.05);
}

#enlist-form label {
  display: block;
  margin: 22px 0;
  font-size: 1.2rem;
  color: #b8ffb8;
}

#enlist-form input[type="text"],
#enlist-form select,
#enlist-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.6);
  border: 1px solid #00ff88;
  border-radius: 4px;
  color: #00ff88;
  font-family: 'VT323', monospace;
  font-size: 1.15rem;
}

#enlist-form input[type="text"]:focus,
#enlist-form select:focus,
#enlist-form textarea:focus {
  outline: none;
  border-color: #00ccff;
  box-shadow: 0 0 12px rgba(0,204,255,0.5);
}

#enlist-form input[type="range"] {
  width: 100%;
  margin: 10px 0;
}

#enlist-form output {
  font-family: 'Orbitron', sans-serif;
  color: #ffcc00;
  font-size: 1.4rem;
  font-weight: 900;
  margin-left: 10px;
}

.radio-row {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.radio-row label,
.check-col label {
  font-size: 1.1rem !important;
  margin: 4px 0 !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.check-col {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.hint {
  display: block;
  font-size: 0.95rem;
  color: #88ffaa;
  opacity: 0.75;
  margin: 6px 0 8px;
  font-style: italic;
}

#enlist-form input[type="file"] {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: rgba(0,0,0,0.4);
  border: 1px dashed #00ff88;
  border-radius: 4px;
  color: #b8ffb8;
  font-family: 'VT323', monospace;
  font-size: 1.05rem;
}

.waiver {
  font-size: 1rem !important;
  background: rgba(255,51,102,0.08);
  border: 1px dashed #ff3366;
  padding: 14px;
  border-radius: 4px;
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}

.waiver input { margin-top: 4px; }

.submit-btn {
  display: block;
  margin: 30px auto 0;
  width: 100%;
  font-size: 1.3rem;
  padding: 20px;
}

/* ===== RECEIPT ===== */
.receipt {
  margin-top: 30px;
  padding: 30px;
  background: rgba(0,255,136,0.1);
  border: 2px solid #00ff88;
  border-radius: 8px;
  text-align: center;
  animation: receipt-in 0.6s ease;
}

.receipt.hidden { display: none; }

@keyframes receipt-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.receipt h3 {
  font-family: 'Orbitron', sans-serif;
  color: #00ff88;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.receipt p {
  font-size: 1.25rem;
  margin: 10px 0;
}

.receipt .briefing-time {
  margin: 20px 0;
  padding: 12px;
  border: 1px dashed #ffcc00;
  color: #ffcc00;
}

.receipt .signoff {
  margin-top: 25px;
  color: #88ffaa;
  font-style: italic;
}

/* ===== Target intel section ===== */
.target-intel {
  max-width: 720px;
  margin: 40px auto;
  padding: 30px 30px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.intel-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 2px dashed #ff3366;
  color: #ff3366;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  animation: pulse 2s infinite;
}

.target-intel h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00ff88;
  font-size: 1.6rem;
  margin-bottom: 22px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 14px rgba(0, 255, 136, 0.5);
}

.intel-frame {
  position: relative;
  display: block;
  border: 2px solid #00ff88;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.35);
  background: #050208;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.intel-frame:hover {
  transform: scale(1.015);
  box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
}
.intel-frame:hover .intel-play { transform: translate(-50%, -50%) scale(1.08); background: rgba(0, 255, 136, 0.18); }
.intel-frame:hover .play-icon { color: #ffcc00; text-shadow: 0 0 24px #ffcc00; }

.intel-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.05) saturate(1.1);
}

.intel-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 255, 150, 0.06) 0px, rgba(0, 255, 150, 0.06) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
}

.intel-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  color: #00ff88;
  background: rgba(0, 0, 0, 0.72);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.12em;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rec-dot {
  color: #ff3366;
  font-size: 1rem;
  animation: blink 1.2s infinite;
  text-shadow: 0 0 6px #ff3366;
}

@keyframes blink {
  0%, 60% { opacity: 1; }
  61%, 100% { opacity: 0.2; }
}

.intel-coords {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  color: #ffcc00;
  background: rgba(0, 0, 0, 0.72);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  z-index: 2;
}

.intel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 28px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid #00ff88;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.55);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
  animation: play-pulse 2.2s ease-in-out infinite;
}
.play-icon {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  color: #00ff88;
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.8);
  line-height: 1;
}
.play-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #00ff88;
  letter-spacing: 0.22em;
  font-weight: 900;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}
@keyframes play-pulse {
  0%, 100% { box-shadow: 0 0 28px rgba(0, 255, 136, 0.5); }
  50% { box-shadow: 0 0 48px rgba(0, 255, 136, 0.9); }
}

@media (max-width: 600px) {
  .intel-play { padding: 14px 18px; }
  .play-icon { font-size: 2rem; }
  .play-label { font-size: 0.7rem; letter-spacing: 0.15em; }
}

.intel-caption {
  margin-top: 18px;
  color: #d8ffd8;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}

.intel-caption em {
  color: #00ccff;
  font-style: normal;
}
.intel-caption strong {
  color: #ffcc00;
  font-weight: 700;
}

@media (max-width: 600px) {
  .intel-overlay, .intel-coords { font-size: 0.65rem; padding: 4px 8px; }
  .target-intel { padding: 20px 16px; }
}

/* ===== Livestream party section ===== */
.livestream-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 36px 40px;
  background: rgba(20, 5, 30, 0.85);
  border: 2px solid #ff00ff;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  text-align: center;
}

.ls-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 2px dashed #ff00ff;
  color: #ff00ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  animation: pulse 1.6s infinite;
}

.livestream-section h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(255, 0, 255, 0.6);
}

.ls-time {
  font-family: 'Orbitron', sans-serif;
  color: #ffcc00;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.ls-description {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #d8b8ff;
}

.ls-list {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.ls-list li {
  margin: 10px 0;
  padding: 8px 12px;
  background: rgba(255, 0, 255, 0.06);
  border-left: 2px solid #ff00ff;
  border-radius: 4px;
}

.ls-list strong { color: #ff88ff; }

.ls-note {
  margin-top: 18px;
  font-style: italic;
  color: #d8b8ff;
  opacity: 0.85;
}

.ls-cta-wrap {
  margin-top: 28px;
}

.ls-cta {
  background: linear-gradient(135deg, #ff00ff, #ff66cc) !important;
  color: #0a0518 !important;
  pointer-events: none;
  opacity: 0.7;
  letter-spacing: 0.12em;
}

.ls-cta-note {
  margin-top: 12px;
  font-size: 1rem;
  color: #d8b8ff;
}
.ls-cta-note a { color: #00ccff; }

/* ===== Opt-in checkbox ===== */
.opt-in {
  font-size: 1rem !important;
  background: rgba(0,204,255,0.08);
  border: 1px dashed #00ccff;
  padding: 12px;
  border-radius: 4px;
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 22px !important;
}
.opt-in input { margin: 0; }

/* ===== Wall sections (Roster + Signals) ===== */
.wall-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(10, 5, 20, 0.72);
  border: 2px solid #00ccff;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,204,255,0.2);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.wall-section h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00ccff;
  font-size: 1.6rem;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(0,204,255,0.5);
}

.empty-msg {
  color: #88ffaa;
  font-style: italic;
  opacity: 0.7;
  padding: 20px 0;
}

/* Roster grid */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  margin-top: 20px;
}

.op-card {
  background: rgba(0,0,0,0.45);
  border: 1px solid #00ff88;
  border-radius: 6px;
  padding: 20px 14px 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 250px;
  height: 100%;
}

.op-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ff88;
  box-shadow: 0 0 14px rgba(0,255,136,0.5);
  margin-bottom: 6px;
  background: #1a0a2a;
}

.op-avatar.fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.op-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(0,255,136,0.45);
}

.op-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #00ff88;
  font-size: 1.05rem;
  margin-bottom: 2px;
  text-shadow: 0 0 6px rgba(0,255,136,0.6);
}

.op-handle a {
  color: #00ccff;
  text-decoration: none;
  font-size: 1rem;
}
.op-handle a:hover { text-decoration: underline; }
.op-handle .muted { color: #666; font-size: 0.9rem; }

.op-spec {
  font-size: 0.85rem;
  color: #b8ffb8;
  margin: 4px 0 6px;
  min-height: 1.1em;
  line-height: 1.3;
}

.op-role {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  color: #ffcc00;
  letter-spacing: 0.18em;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.op-role .star {
  flex-shrink: 0;
}
.op-role .role-text {
  text-align: center;
  line-height: 1.3;
}

/* Signals submission form */
.signal-form {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.signal-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.6);
  border: 1px solid #00ccff;
  border-radius: 4px;
  color: #00ccff;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
}

.signal-form button {
  flex: 0 0 auto;
  padding: 12px 22px;
  font-size: 1rem;
}

.signal-status {
  padding: 10px 14px;
  border-radius: 4px;
  margin: 10px 0;
  font-size: 1.05rem;
}
.signal-status.hidden { display: none; }
.signal-status.ok { background: rgba(0,255,136,0.12); border: 1px solid #00ff88; color: #00ff88; }
.signal-status.err { background: rgba(255,51,102,0.12); border: 1px solid #ff3366; color: #ff3366; }

/* Signals list (embedded tweets/tiktoks) */
.signals-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.signals-list blockquote {
  margin: 0 !important;
  max-width: 100% !important;
}

/* ===== Host card ===== */
.host-card {
  max-width: 420px;
  margin: 50px auto 25px;
  padding: 16px 22px;
  background: rgba(10, 5, 20, 0.8);
  border: 2px solid #ff00ff;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(255,0,255,0.35);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.host-avatar {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ff00ff;
  box-shadow: 0 0 14px rgba(255,0,255,0.6);
  background: #1a0a2a;
}

.host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.host-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.host-info { flex: 0 0 auto; }

.host-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: #ff00ff;
  letter-spacing: 0.25em;
  margin-bottom: 6px;
}

.host-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ff00ff;
  text-shadow: 0 0 14px rgba(255,0,255,0.7);
  letter-spacing: 0.08em;
  line-height: 1;
}

.host-handle {
  display: inline-block;
  margin-top: 8px;
  color: #00ccff;
  font-size: 1.1rem;
  text-decoration: none;
}
.host-handle:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 50px 20px;
  color: #88ffaa;
  font-size: 1.05rem;
  opacity: 0.7;
}

footer p { margin: 6px 0; }
