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

body {
  background:
    radial-gradient(circle at top left, rgba(255, 59, 59, 0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255, 59, 59, 0.08), transparent 25%),
    #0b0b0f;

  color: #f1f1f1;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: #111116;
  border-bottom: 1px solid #2a2a33;
}

.brand {
  color: #ff3b3b;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 24px;
}

.top-nav nav {
  display: flex;
  gap: 20px;
}

.top-nav a {
  color: #f1f1f1;
  text-decoration: none;
}
.hero {
  padding: 110px 60px;
  background:
    radial-gradient(circle at top right, rgba(255, 59, 59, 0.28), transparent 35%),
    linear-gradient(135deg, #111116, #181820);

  border-bottom: 1px solid #2a2a33;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size: 40px 40px;

  pointer-events: none;
}
.live-pill {
  display: inline-block;
  background: #ff3b3b;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  max-width: 950px;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero p {
  color: #9ca3af;
  font-size: 20px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: rgba(20, 20, 26, 0.92);
  border: 1px solid #2a2a33;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 25px rgba(255, 59, 59, 0.08);
  position: relative;
}
.player::after {
  content: "LIVE";
  position: absolute;
  top: 18px;
  right: 18px;

  background: #ff3b3b;
  color: white;

  font-size: 11px;
  font-weight: 900;

  padding: 6px 10px;
  border-radius: 999px;

  box-shadow: 0 0 16px rgba(255, 59, 59, 0.7);
}

.card h2 {
  color: #ff3b3b;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
}

.player-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.album-art {
  width: 130px;
  height: 130px;

  background:
    radial-gradient(circle at top left, #ff6b6b, transparent 40%),
    linear-gradient(135deg, #ff3b3b, #3a0d0d);

  border-radius: 18px;

  display: grid;
  place-items: center;

  font-size: 40px;
  font-weight: 900;

  flex-shrink: 0;

  box-shadow:
    0 0 30px rgba(255, 59, 59, 0.3),
    inset 0 0 25px rgba(255,255,255,0.08);
}

.chat-message {
  background: #1d1d25;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.uploads p,
.updates p,
.schedule p {
  background: #1d1d25;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stats-grid div {
  background: #1d1d25;
  padding: 18px;
  border-radius: 12px;
}

.stats-grid strong {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 8px;
}

.stats-grid span {
  font-size: 30px;
  font-weight: 900;
  color: #ff3b3b;
}

footer {
  text-align: center;
  padding: 30px;
  color: #9ca3af;
  border-top: 1px solid #2a2a33;
}

@media (max-width: 800px) {
  .top-nav {
    flex-direction: column;
    gap: 18px;
  }

  .top-nav nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
  font-size: 42px;
  line-height: 1.1;
}

  .grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 59, 59, 0.65);
  box-shadow: 0 0 35px rgba(255, 59, 59, 0.18);
}

.top-nav a {
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: #ff3b3b;
}

.live-pill {
  animation: pulseLive 1.6s infinite;
}

@keyframes pulseLive {
  0% {
    box-shadow: 0 0 0 rgba(255, 59, 59, 0.5);
  }

  50% {
    box-shadow: 0 0 18px rgba(255, 59, 59, 0.8);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 59, 59, 0.5);
  }
}
.player-display {
  display: flex;
  gap: 22px;
  align-items: center;
}

.track-details h3 {
  font-size: 28px;
  margin: 10px 0 6px;
}

.track-details p {
  color: #9ca3af;
  margin-bottom: 18px;
}

.live-status {
  color: #ff3b3b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.player-controls {
  display: flex;
  gap: 10px;
}

.player-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 59, 59, 0.5);
  background: #1d1d25;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.player-controls button:hover {
  transform: scale(1.08);
  background: rgba(255, 59, 59, 0.15);
  border-color: #ff3b3b;
}

.progress-wrap {
  height: 8px;
  background: #1d1d25;
  border-radius: 999px;
  margin-top: 22px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 42%;
  background: #ff3b3b;
}
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.activity-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #1d1d25;
  padding: 14px;
  border-radius: 10px;
}

.activity-dot {
  width: 10px;
  height: 10px;
  background: #ff3b3b;
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 12px rgba(255, 59, 59, 0.8);
}

.activity-item p {
  color: #9ca3af;
  font-size: 13px;
  margin-top: 4px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.primary-btn {
  background: #ff3b3b;
  color: white;
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 1px solid #444;
}

.primary-btn:hover {
  background: #ff5252;
}

.secondary-btn:hover {
  border-color: #ff3b3b;
  color: #ff3b3b;
}
.chat-window {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  display: flex;
  gap: 14px;
  background: #1d1d25;
  padding: 14px;
  border-radius: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff3b3b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.message-content strong {
  display: block;
  margin-bottom: 4px;
}

.message-content span {
  font-size: 12px;
  color: #9ca3af;
}

.message-content p {
  margin-top: 8px;
  line-height: 1.5;
}
.upload-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upload-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1d1d25;
  padding: 14px;
  border-radius: 12px;
}

.upload-cover {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff3b3b, #3b0b0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  flex-shrink: 0;
}

.upload-item strong {
  display: block;
  margin-bottom: 4px;
}

.upload-item p {
  color: #9ca3af;
  font-size: 14px;
}
.stats-grid div {
  border: 1px solid rgba(255, 59, 59, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stats-grid div:hover {
  transform: scale(1.03);
  border-color: rgba(255, 59, 59, 0.7);
}

.stats-grid span {
  text-shadow: 0 0 16px rgba(255, 59, 59, 0.45);
}
.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-card {
  background: rgba(20, 20, 26, 0.92);
  border: 1px solid #2a2a33;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.side-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 59, 59, 0.6);
}

.side-card h3 {
  color: #ff3b3b;
  margin-bottom: 10px;
}

.side-card p {
  color: #d1d5db;
}

@media (max-width: 1000px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
  }
}
.ticker-wrap {
  overflow: hidden;
  background: #08080b;
  border-bottom: 1px solid #2a2a33;
  padding: 10px 0;
}

.ticker {
  white-space: nowrap;
  color: #ff3b3b;
  font-weight: 800;
  letter-spacing: 1px;
  animation: tickerMove 28s linear infinite;
}

@keyframes tickerMove {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}
.main-nav a {
  padding: 8px 10px;
  border-radius: 8px;
}

.main-nav a:hover {
  background: rgba(255, 59, 59, 0.12);
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-brand {
  color: #ff3b3b;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff3b3b;

}
.hero {
  position: relative;
  box-shadow: inset 0 -1px 0 rgba(255, 59, 59, 0.15);
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 59, 59, 0.18);
  border-radius: 50%;
  filter: blur(120px);

  top: -120px;
  right: -120px;

  animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(40px);
  }
}
.stream-tag {
  display: inline-block;
  margin-top: 12px;
  background: #ff3b3b;
  color: white;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
}
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;

  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 4px
  );
}
:root {
  --rig-red: #d92f24;
  --rig-orange: #ff6a2a;
  --rig-deep-red: #7a1414;
  --rig-black: #050507;
  --rig-panel: #141318;
  --rig-panel-soft: #1d1b22;
  --rig-border: rgba(255, 106, 42, 0.28);
  --rig-glow: rgba(255, 106, 42, 0.22);
}

body {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(217, 47, 36, 0.08), transparent 30%),
    #050507;
}

.brand,
.card h2,
.side-card h3,
.footer-brand {
  color: var(--rig-orange);
}

.live-pill,
.primary-btn,
.avatar,
.stream-tag,
.player::after,
.upload-cover,
.progress-bar {
  background: linear-gradient(135deg, var(--rig-orange), var(--rig-red));
}

.card,
.side-card {
  border-color: var(--rig-border);
  box-shadow: 0 0 28px var(--rig-glow);
}

.hero {
  background:
    radial-gradient(circle at right, rgba(255, 106, 42, 0.30), transparent 35%),
    linear-gradient(135deg, #07070a, #171117);
}
/* PHASE 1 — tighten hero height */
.hero {
  padding: 42px clamp(24px, 5vw, 72px) 34px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 56px);
  margin-bottom: 14px;
}

.hero p {
  font-size: 18px;
  max-width: 760px;
}

.hero .badge,
.hero .live-badge {
  margin-bottom: 14px;
}

.hero .actions,
.hero .hero-actions {
  margin-top: 22px;
}
/* PHASE 1 — real Radio.co embed panel */
.radio-card,
.player-card,
.live-player,
.radio-player {
  position: relative;
  border: 1px solid rgba(255, 106, 42, 0.35);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(20, 19, 24, 0.96), rgba(5, 5, 7, 0.98));
  box-shadow:
    0 0 28px rgba(255, 106, 42, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.radio-card::before,
.player-card::before,
.live-player::before,
.radio-player::before {
  content: none;
}

.radio-card iframe,
.player-card iframe,
.live-player iframe,
.radio-player iframe {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
}
/* PHASE 1 — Radio.co embed sizing */
.radio-embed-wrap {
  margin-top: 18px;
  width: 100%;
  max-width: 520px;
}

.radio-embed-wrap iframe {
  width: 100%;
  border-radius: 14px;
}
/* PHASE 1 — Radio.co extra widgets */
.radio-extra-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.radio-widget {
  padding: 16px;
  border: 1px solid rgba(255, 106, 42, 0.24);
  border-radius: 16px;
  background: rgba(5, 5, 7, 0.45);
}

.radio-widget h3 {
  margin: 0 0 12px;
  color: #ff6a2a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.radio-widget iframe {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 800px) {
  .radio-extra-widgets {
    grid-template-columns: 1fr;
  }
}
/* PHASE 1 — Radio.co live layout */
.radio-live-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.radio-embed-wrap {
  width: 100%;
  max-width: 320px;
}

.radio-embed-wrap iframe {
  width: 100%;
  border-radius: 14px;
}

.radio-extra-widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
}

.radio-widget {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 106, 42, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.12), transparent 35%),
    rgba(5, 5, 7, 0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.radio-widget h3 {
  margin: 0 0 12px;
  color: #ff6a2a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.radio-widget,
.radio-widget * {
  color: #f5f5f5;
  font-size: 16px;
  line-height: 1.25;
}

.radio-widget ul {
  margin: 0;
  padding-left: 18px;
}

.radio-widget li {
  margin-bottom: 6px;
}

@media (max-width: 800px) {
  .radio-live-layout {
    grid-template-columns: 1fr;
  }

  .radio-embed-wrap {
    max-width: 100%;
  }
}
.radio-live-layout {
  grid-template-columns: 360px 1fr;
}

.radio-embed-wrap {
  max-width: 360px;
}

.radio-widget,
.radio-widget * {
  font-size: 14px;
  line-height: 1.2;
}

.radio-widget li {
  margin-bottom: 4px;
}
.radio-live-layout {
  grid-template-columns: 360px minmax(260px, 1fr);
}

.radio-extra-widgets {
  max-width: 100%;
}

.radio-widget {
  padding: 16px 18px;
}

.radio-widget,
.radio-widget * {
  font-size: 13px;
  line-height: 1.18;
}

.radio-widget h3 {
  font-size: 12px;
  margin-bottom: 10px;
}

.radio-widget li {
  margin-bottom: 3px;
}
.radio-live-layout {
  grid-template-columns: 360px 280px;
  gap: 36px;
  justify-content: start;
}

.radio-extra-widgets {
  width: 280px;
}

.radio-widget {
  width: 100%;
}
/* PHASE 1 — live signal visualizer */
.signal-visualizer {
  height: 84px;
  padding: 18px;
  border: 1px solid rgba(255, 106, 42, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 106, 42, 0.12), transparent 55%),
    rgba(5, 5, 7, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  overflow: hidden;
}

.signal-visualizer span {
  width: 7px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(to top, #7a1414, #ff6a2a);
  box-shadow: 0 0 14px rgba(255, 106, 42, 0.35);
  animation: rigSignal 1.1s infinite ease-in-out;
}

.signal-visualizer span:nth-child(2) { animation-delay: 0.08s; height: 38px; }
.signal-visualizer span:nth-child(3) { animation-delay: 0.16s; height: 52px; }
.signal-visualizer span:nth-child(4) { animation-delay: 0.24s; height: 30px; }
.signal-visualizer span:nth-child(5) { animation-delay: 0.32s; height: 62px; }
.signal-visualizer span:nth-child(6) { animation-delay: 0.40s; height: 42px; }
.signal-visualizer span:nth-child(7) { animation-delay: 0.48s; height: 68px; }
.signal-visualizer span:nth-child(8) { animation-delay: 0.56s; height: 36px; }
.signal-visualizer span:nth-child(9) { animation-delay: 0.64s; height: 54px; }
.signal-visualizer span:nth-child(10) { animation-delay: 0.72s; height: 28px; }
.signal-visualizer span:nth-child(11) { animation-delay: 0.80s; height: 44px; }
.signal-visualizer span:nth-child(12) { animation-delay: 0.88s; height: 58px; }

@keyframes rigSignal {
  0%, 100% {
    transform: scaleY(0.45);
    opacity: 0.55;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* PHASE 1 — Live Radio page */
.live-radio-page {
  min-height: 100vh;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.16), transparent 34%),
    linear-gradient(135deg, #050507, #111017);
}

.live-radio-hero {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 32px;
  border: 1px solid rgba(255, 106, 42, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at right, rgba(255, 106, 42, 0.18), transparent 35%),
    rgba(20, 19, 24, 0.78);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.live-radio-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
}

.live-radio-hero p {
  max-width: 680px;
  color: #a7a7ad;
  font-size: 18px;
}

.live-pill {
  height: fit-content;
  padding: 9px 15px;
  border-radius: 999px;
  background: #ff3b3b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255, 59, 59, 0.75);
}

.live-radio-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1.4fr) minmax(340px, 0.8fr);
  gap: 26px;
  align-items: start;
}

.live-radio-player-card,
.live-chat-card {
  border: 1px solid rgba(255, 106, 42, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.12), transparent 35%),
    rgba(20, 19, 24, 0.86);
  box-shadow:
    0 0 28px rgba(255, 106, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.live-radio-player-card {
  padding: 28px;
}

.live-radio-player-card h2,
.live-chat-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
}

.live-radio-big-player {
  max-width: 520px;
}

.live-radio-big-player iframe {
  width: 100%;
  border-radius: 16px;
}

.live-radio-widgets {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.live-chat-card {
  padding: 28px;
}

.chat-lock p {
  color: #a7a7ad;
}

.chat-preview {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.chat-line {
  padding: 14px;
  border: 1px solid rgba(255, 106, 42, 0.18);
  border-radius: 14px;
  background: rgba(5, 5, 7, 0.45);
}

.chat-line strong {
  display: block;
  color: #ff6a2a;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.chat-line span {
  color: #f2f2f2;
}

.chat-line.locked {
  opacity: 0.72;
}

.chat-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .live-radio-page {
    padding: 18px;
  }

  .live-radio-hero,
  .live-radio-grid {
    grid-template-columns: 1fr;
  }

  .live-radio-hero {
    flex-direction: column;
  }

  .live-radio-widgets {
    grid-template-columns: 1fr;
  }
}
/* PHASE 1 — Live page button polish */
.chat-actions a {
  text-decoration: none;
}

.chat-actions .btn-primary,
.chat-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chat-actions .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d92f24, #ff6a2a);
  box-shadow: 0 0 20px rgba(255, 106, 42, 0.28);
}

.chat-actions .btn-secondary {
  color: #ffb089;
  border: 1px solid rgba(255, 106, 42, 0.38);
  background: rgba(5, 5, 7, 0.55);
}
/* PHASE 1 — Live page player layout polish */
.live-radio-player-card {
  display: flex;
  flex-direction: column;
}

.live-radio-big-player {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 0;
}

.live-radio-big-player iframe {
  width: 100%;
}

.live-radio-widgets {
  max-width: 100%;
}
/* PHASE 1 — Live page compact radio layout */
.live-radio-player-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: start;
}

.live-radio-player-card h2 {
  grid-column: 1 / -1;
}

.live-radio-big-player {
  max-width: 420px;
  margin: 0;
}

.live-radio-widgets {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .live-radio-player-card {
    display: flex;
    flex-direction: column;
  }

  .live-radio-big-player {
    max-width: 100%;
  }
}
/* PHASE 1 — tighten live page spacing */
.live-radio-page {
  padding-top: 42px;
}

.live-radio-hero {
  max-width: 1080px;
  margin-bottom: 24px;
  padding: 26px 30px;
}

.live-radio-hero h1 {
  font-size: clamp(46px, 5vw, 64px);
}

.live-radio-grid {
  max-width: 1080px;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 22px;
}

.live-radio-player-card,
.live-chat-card {
  border-color: rgba(255, 106, 42, 0.34);
}

.live-radio-player-card {
  padding: 24px;
}

.live-radio-player-card h2 {
  color: #ffefe8;
  letter-spacing: 0.2px;
}

.live-radio-widgets {
  align-self: start;
}
/* PHASE 1 — widen live radio widgets */
.live-radio-player-card {
  grid-template-columns: 420px 220px;
}

.live-radio-widgets {
  width: 220px;
}

.live-radio-widgets .radio-widget {
  width: 100%;
}

.live-radio-widgets .radio-widget,
.live-radio-widgets .radio-widget * {
  font-size: 12px;
  line-height: 1.15;
}

.live-radio-widgets .radio-widget h3 {
  font-size: 12px;
  margin-bottom: 9px;
}
/* PHASE 1 — fix live page balance */
.live-radio-grid {
  max-width: 1120px;
  grid-template-columns: 760px 360px;
  gap: 22px;
}

.live-radio-player-card {
  grid-template-columns: 420px 260px;
}

.live-radio-widgets {
  width: 260px;
}

.live-chat-card {
  min-width: 360px;
}

.chat-actions {
  flex-direction: row;
}

.chat-actions .btn-primary,
.chat-actions .btn-secondary {
  white-space: nowrap;
}
/* PHASE 1 — live chat wiring */
.live-chat-messages {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}

.chat-status {
  margin: 0 0 14px;
  color: #ffb089;
  font-size: 13px;
  font-weight: 800;
}

.chat-line strong em {
  color: #8f8f98;
  font-style: normal;
  font-weight: 700;
  margin-left: 6px;
}

.live-chat-form {
  margin-top: 18px;
  display: none;
  gap: 10px;
}

.live-chat-form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 106, 42, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 7, 0.72);
  color: #ffffff;
  outline: none;
}

.live-chat-form input::placeholder {
  color: #777782;
}

.live-chat-form input:focus {
  border-color: rgba(255, 106, 42, 0.7);
  box-shadow: 0 0 18px rgba(255, 106, 42, 0.18);
}

.live-chat-form button {
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #d92f24, #ff6a2a);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
/* PHASE 1 — live chat polish */
.live-chat-card {
  min-width: 400px;
}

.live-chat-card p {
  line-height: 1.35;
}

.live-chat-messages {
  margin-top: 16px;
  max-height: 360px;
}

.live-chat-form {
  margin-top: 16px;
}

.live-chat-form input {
  min-width: 220px;
}

.chat-line {
  padding: 13px 14px;
}

.chat-line strong {
  display: flex;
  gap: 8px;
  align-items: center;
}
/* PHASE 1 — chat emote picker */
.emote-picker {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.emote-picker button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 106, 42, 0.25);
  border-radius: 12px;
  background: rgba(5, 5, 7, 0.65);
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.emote-picker button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 42, 0.65);
  background: rgba(255, 106, 42, 0.14);
}
/* PHASE 1 — make live chat room breathe */
.live-chat-card {
  min-height: 560px;
}

.live-chat-messages {
  max-height: 300px;
  padding-right: 8px;
}

.chat-line {
  margin-bottom: 10px;
}

.emote-picker {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 106, 42, 0.14);
}

.live-chat-form {
  margin-top: 14px;
}

.live-chat-form input {
  height: 46px;
}

.live-chat-form button {
  height: 46px;
}
/* PHASE 1 — clean chat scroll area */
.live-chat-messages {
  max-height: 360px;
  overflow-y: auto;
  padding: 4px 10px 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 106, 42, 0.7) rgba(5, 5, 7, 0.4);
}

.live-chat-messages::-webkit-scrollbar {
  width: 8px;
}

.live-chat-messages::-webkit-scrollbar-track {
  background: rgba(5, 5, 7, 0.4);
  border-radius: 999px;
}

.live-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 106, 42, 0.65);
  border-radius: 999px;
}

.live-chat-card {
  padding: 28px 30px;
}

.chat-line {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.08), transparent 40%),
    rgba(5, 5, 7, 0.62);
}
/* PHASE 1 — tighten live radio card */
.live-radio-player-card {
  grid-template-columns: 360px 260px;
  justify-content: center;
  column-gap: 42px;
  min-height: 420px;
}

.live-radio-big-player {
  max-width: 360px;
}

.live-radio-widgets {
  width: 260px;
}

.live-radio-player-card h2 {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}
/* PHASE 1 — community live room preview */
.community-chat-preview {
  padding: 22px;
  border: 1px solid rgba(255, 106, 42, 0.26);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.12), transparent 38%),
    rgba(5, 5, 7, 0.55);
}

.community-chat-preview h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.15;
}

.community-chat-preview p {
  color: #b7b7bf;
  line-height: 1.45;
}

.preview-chat-lines {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.preview-chat-line {
  padding: 13px 14px;
  border: 1px solid rgba(255, 106, 42, 0.18);
  border-radius: 14px;
  background: rgba(5, 5, 7, 0.62);
}

.preview-chat-line strong {
  display: block;
  color: #ff6a2a;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.preview-chat-line span {
  color: #f1f1f1;
}

.preview-chat-line.locked {
  opacity: 0.78;
}

.live-room-link {
  margin-top: 18px;
  display: inline-flex;
  text-decoration: none;
}
/* PHASE 1 — community live room button */
.community-chat-preview .live-room-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #d92f24, #ff6a2a);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 106, 42, 0.28);
}

.community-chat-preview .live-room-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255, 106, 42, 0.4);
}
/* PHASE 1 — live community upload cards */
.community-track-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 106, 42, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.08), transparent 40%),
    rgba(5, 5, 7, 0.55);
}

.community-track-card img,
.community-track-placeholder {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 106, 42, 0.22);
}

.community-track-placeholder {
  display: grid;
  place-items: center;
  color: #ff6a2a;
  background: rgba(5, 5, 7, 0.75);
  font-weight: 900;
}

.community-track-card strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
}

.community-track-card span {
  display: block;
  color: #a7a7ad;
  margin-top: 3px;
  font-size: 13px;
}
/* PHASE 1 — sidebar radio player layout */
.sidebar-player {
  padding: 18px;
}

.sidebar-player .radio-live-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 14px;
}

.sidebar-player .radio-embed-wrap {
  max-width: 100%;
  width: 100%;
}

.sidebar-player .radio-extra-widgets {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sidebar-player .radio-widget {
  width: 100%;
  min-height: auto;
  padding: 14px;
}

.sidebar-player .signal-visualizer {
  height: 64px;
  padding: 12px;
}

.sidebar-player iframe {
  max-width: 100%;
}
/* COMMUNITY HERO IMAGE OVERRIDE */
.hero {
  min-height: 340px;
  padding: 48px clamp(24px, 5vw, 72px) 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(5,5,7,0.92) 0%, rgba(5,5,7,0.76) 38%, rgba(5,5,7,0.28) 68%, rgba(5,5,7,0.08) 100%),
    url("/assets/community/rig-radio-community-hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-glow {
  display: none;
}

.hero h1 {
  max-width: 760px;
}

/* COMMUNITY HERO IMAGE POLISH */
.hero {
  overflow: hidden;
  background-position: center 42%;
}

.hero .live-pill,
.live-pill {
  display: inline-flex;
  width: fit-content;
  max-width: max-content;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.02;
}

.hero p {
  max-width: 520px;
}

/* COMMUNITY HERO FINAL SIZE TUNE */
.hero {
  min-height: 300px;
  padding-top: 34px;
  padding-bottom: 34px;
  background-position: center 48%;
}

.hero h1 {
  font-size: clamp(38px, 4.1vw, 56px);
  max-width: 690px;
}

.hero p {
  font-size: 17px;
}

/* COMMUNITY NAV BUTTON POLISH */
.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a,
.top-nav nav a {
  padding: 8px 13px;
  border: 1px solid rgba(255, 106, 42, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.18s ease;
}

.main-nav a:hover,
.top-nav nav a:hover {
  color: #ffffff;
  background: rgba(255, 106, 42, 0.16);
  border-color: rgba(255, 106, 42, 0.55);
  box-shadow: 0 0 18px rgba(255, 106, 42, 0.22);
  transform: translateY(-1px);
}

/* COMMUNITY RADIO CLICK-TO-START */
.radio-start-btn {
  width: 100%;
  min-height: 86px;
  border: 1px solid rgba(255, 106, 42, 0.45);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 106, 42, 0.20), rgba(217, 47, 36, 0.16));
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(255, 106, 42, 0.18);
}

.radio-start-btn:hover {
  border-color: rgba(255, 106, 42, 0.75);
  box-shadow: 0 0 30px rgba(255, 106, 42, 0.28);
  transform: translateY(-1px);
}

/* COMMUNITY NATIVE RADIO PLAYER FIX */
.rr-native-radio {
  width: 100%;
}

.rr-native-radio audio {
  width: 100%;
  display: block;
  border-radius: 14px;
  background: #050507;
}

/* COMMUNITY CUSTOM RADIO PLAYER */
.rr-custom-radio {
  display: grid;
  grid-template-columns: 58px 1fr 52px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 106, 42, 0.38);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(12, 12, 16, 0.98), rgba(28, 18, 16, 0.92));
  box-shadow: 0 0 22px rgba(255, 106, 42, 0.14);
}

.rr-radio-art {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  background:
    linear-gradient(135deg, rgba(255, 106, 42, 0.95), rgba(217, 47, 36, 0.88));
  box-shadow: 0 0 18px rgba(255, 106, 42, 0.28);
}

.rr-radio-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rr-radio-info strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rr-radio-info span {
  color: #b8bec8;
  font-size: 13px;
}

.rr-radio-play {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 106, 42, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a2a, #d92f24);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 106, 42, 0.26);
}

.rr-radio-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255, 106, 42, 0.38);
}

/* COMMUNITY RADIO PLAYER CLEANUP */
.rr-custom-radio {
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 16px;
}

.rr-radio-art {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 16px;
}

.rr-radio-info strong {
  font-size: 14px;
  line-height: 1.2;
}

.rr-radio-info span {
  font-size: 12px;
  line-height: 1.35;
}

.rr-radio-play {
  grid-column: 1 / -1;
  width: 100%;
  height: 42px;
  border-radius: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* COMMUNITY RECENT UPLOADS TIGHTEN */
.uploads {
  min-height: auto;
}

.upload-list {
  gap: 12px;
}

.upload-item {
  min-height: 66px;
  padding: 12px 14px;
  border-radius: 14px;
}

.upload-cover {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex: 0 0 48px;
}

.upload-item strong {
  font-size: 14px;
  line-height: 1.15;
}

.upload-item p {
  font-size: 12px;
  line-height: 1.2;
}

.card.uploads {
  padding-bottom: 18px;
}

/* COMMUNITY RECENT UPLOADS REMOVE DEAD SPACE */
.card.uploads,
.uploads {
  align-self: start;
  height: auto;
  min-height: 0;
  max-height: none;
}

.card.uploads {
  padding: 22px;
}

.card.uploads .upload-list {
  margin-top: 14px;
}

.layout {
  align-items: start;
}

/* COMMUNITY JOIN CTA INSIDE RECENT UPLOADS */
.community-join-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 106, 42, 0.35);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 106, 42, 0.12), rgba(10, 10, 14, 0.96));
}

.community-join-card span {
  display: block;
  margin-bottom: 8px;
  color: #ff6a2a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.community-join-card strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.community-join-card p {
  color: #b8bec8;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.community-join-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a2a, #d92f24);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.06em;
}

/* COMMUNITY CARD ALIGNMENT FIX */
.layout {
  align-items: stretch;
}

.card.uploads,
.uploads {
  height: 100%;
  align-self: stretch;
}

.card.uploads {
  display: flex;
  flex-direction: column;
}

.card.uploads .community-join-card {
  margin-top: auto;
}

/* COMMUNITY STATS COLOR FIX */
.stats-grid div {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.10), transparent 36%),
    linear-gradient(135deg, rgba(18, 18, 24, 0.96), rgba(8, 8, 12, 0.98));
  border: 1px solid rgba(255, 106, 42, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.stats-grid div:hover {
  border-color: rgba(255, 106, 42, 0.55);
  box-shadow: 0 0 22px rgba(255, 106, 42, 0.18);
}

.stats-grid span {
  color: #ff3b3b;
  text-shadow: 0 0 18px rgba(255, 59, 59, 0.20);
}

.stats-grid strong {
  color: #b8bec8;
}

/* COMMUNITY STATS TEXT ALIGNMENT FIX */
.stats-grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  padding: 16px 18px;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.2;
}

.stats-grid span {
  display: block;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  word-break: normal;
}

.stats-grid div:nth-child(3) span,
.stats-grid div:nth-child(4) span {
  font-size: clamp(22px, 2vw, 30px);
}

/* COMMUNITY STATS HARD TEXT FIX */
.stats-grid div span,
.stats-grid span,
#community-members-total,
#community-tracks-total {
  font-size: 30px !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
}

.stats-grid div:nth-child(3) span,
.stats-grid div:nth-child(4) span {
  font-size: 24px !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
}

.stats-grid div {
  justify-content: center !important;
  padding: 18px !important;
}

.stats-grid strong {
  font-size: 13px !important;
  margin-bottom: 10px !important;
}

/* COMMUNITY LOGIN BUTTON MAKE VISIBLE */
.top-nav .main-nav a[href="/login.html"] {
  padding: 10px 22px;
  border: 1px solid rgba(255, 106, 42, 0.75);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a2a, #d92f24);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 106, 42, 0.28);
}

.top-nav .main-nav a[href="/login.html"]:hover {
  background: linear-gradient(135deg, #ff7a3a, #ff3b3b);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 30px rgba(255, 106, 42, 0.42);
}

/* COMMUNITY LANDING HERO CTA */
.hero-buttons a.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* LIVE RADIO PROFILE BUTTON */
.top-nav .main-nav a[href="/members/"] {
  padding: 10px 22px;
  border: 1px solid rgba(255, 106, 42, 0.75);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a2a, #d92f24);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(255, 106, 42, 0.28);
}

.top-nav .main-nav a[href="/members/"]:hover {
  background: linear-gradient(135deg, #ff7a3a, #ff3b3b);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 30px rgba(255, 106, 42, 0.42);
}
