/* ============================================================
   MAIN PAGE — Complete Styles
   White/Gloomy light mode · Dark navy/teal dark mode · RTL
   ============================================================ */

/* ─── HERO ─── */
/* The shared header is transparent and floats over the hero (becomes solid on
   scroll). global.css applies `body { padding-top: var(--header-h) }`, so pull
   the hero up under the header and add it back as padding — this makes the hero
   read as full-bleed with the transparent header sitting over its content. */
.rd-hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + clamp(2rem, 7vw, 5rem)) 0 clamp(2.5rem, 5vw, 4rem);
}

.rd-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  animation: heroOrbFloat 10s ease-in-out infinite;
}

.rd-hero__orb--1 {
  width: clamp(400px, 55vw, 800px);
  height: clamp(400px, 55vw, 800px);
  background: radial-gradient(circle, rgba(106, 90, 205, 0.11) 0%, transparent 70%);
  top: -25%;
  right: -15%;
  animation-delay: 0s;
}

.rd-hero__orb--2 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(139, 127, 191, 0.08) 0%, transparent 70%);
  bottom: -15%;
  left: -8%;
  animation-delay: -4s;
}

.rd-hero__orb--3 {
  width: clamp(150px, 20vw, 320px);
  height: clamp(150px, 20vw, 320px);
  background: radial-gradient(circle, rgba(106, 90, 205, 0.07) 0%, transparent 70%);
  top: 35%;
  left: 28%;
  animation-delay: -7s;
}

html[data-theme="dark"] .rd-hero__orb--1 {
  background: radial-gradient(circle, rgba(0, 200, 180, 0.1) 0%, transparent 70%);
}
html[data-theme="dark"] .rd-hero__orb--2 {
  background: radial-gradient(circle, rgba(0, 180, 200, 0.07) 0%, transparent 70%);
}
html[data-theme="dark"] .rd-hero__orb--3 {
  background: radial-gradient(circle, rgba(0, 200, 200, 0.06) 0%, transparent 70%);
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.06); }
}

.rd-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .rd-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

@media (min-width: 1100px) {
  .rd-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.rd-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(106, 90, 205, 0.08);
  border: 1px solid var(--color-border-glow);
  color: var(--color-accent-secondary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}

html[data-theme="dark"] .rd-hero__eyebrow {
  background: rgba(0, 200, 200, 0.08);
  color: #aecece;
}

.rd-hero__content h1 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-text-primary);
}

.rd-hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.85;
  max-width: 490px;
  margin-bottom: 2rem;
}

.rd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rd-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-subtle);
  width: 100%;
}

.rd-trust-item {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ─── Hero Visual: Portrait + Visualizer ─── */
.rd-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.portrait-wrapper {
  position: relative;
  width: clamp(200px, 40vw, 320px);
  height: clamp(200px, 40vw, 320px);
  border-radius: 50%;
  border: 2px solid var(--color-border-glow);
  box-shadow: 0 0 60px var(--color-accent-glow);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: visible;
}

.portrait-wrapper:hover {
  transform: scale(1.06);
  box-shadow: 0 0 80px var(--color-accent-glow);
}

.portrait-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  z-index: -1;
  animation: portraitPulse 4s ease-in-out infinite;
}

@keyframes portraitPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.rd-hero__portrait {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  padding: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.portrait-wrapper:hover .rd-hero__portrait {
  transform: scale(0.93);
}

/* Audio visualizer */
.visualizer-container {
  width: 100%;
  max-width: 340px;
  height: 72px;
  position: relative;
}

#audioVisualizer {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating stat micro-cards */
.rd-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(106, 90, 205, 0.2);
  border-radius: var(--radius-lg);
  padding: 0.7rem 1.1rem;
  box-shadow: 0 8px 24px rgba(106, 90, 205, 0.14), 0 2px 8px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  z-index: 2;
}

html[data-theme="dark"] .rd-hero__float {
  background: rgba(26, 26, 46, 0.92);
  border-color: rgba(0, 200, 200, 0.2);
  box-shadow: 0 8px 24px rgba(0, 131, 163, 0.2);
}

.rd-hero__float--1 {
  bottom: 12%;
  right: clamp(-2%, -1vw, 0%);
  animation: floatCard 4.5s ease-in-out infinite;
}

.rd-hero__float--2 {
  top: 10%;
  left: clamp(-2%, -1vw, 0%);
  animation: floatCard 4.5s ease-in-out infinite;
  animation-delay: -2.25s;
}

@media (min-width: 1100px) {
  .rd-hero__float--1 { right: -6%; }
  .rd-hero__float--2 { left: -8%; }
}

@media (max-width: 860px) {
  .rd-hero__float { display: none; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.rd-float-icon { font-size: 1.5rem; line-height: 1; }

.rd-float-val {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-accent-primary);
  line-height: 1.2;
}

.rd-float-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 860px) {
  .rd-hero__content { align-items: center; text-align: center; }
  .rd-hero__sub { margin-inline: auto; }
  .rd-hero__trust { justify-content: center; }
  .rd-hero__actions { justify-content: center; }
}

/* ─── HANDOVER SECTION ─── */
.rd-handover {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.rd-handover__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 800px) {
  .rd-handover__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.rd-handover__images {
  position: relative;
  min-height: clamp(200px, 50vw, 280px);
}

.rd-handover__img-info {
  display: block;
  width: 90%;
  max-width: 420px;
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

@media (min-width: 800px) {
  .rd-handover__img-info { margin-inline: 0; }
}

html[data-theme="dark"] .rd-handover__img-info {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.rd-handover__img-hand {
  width: 60%;
  max-width: 260px;
  height: auto;
  position: absolute;
  bottom: -1rem;
  left: 5%;
  z-index: 2;
  animation: handFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

@media (prefers-reduced-motion: reduce) {
  .rd-hero__orb,
  .portrait-glow,
  .rd-hero__float,
  .rd-handover__img-hand,
  .episode-player,
  .eq-bar { animation: none !important; }
}

@keyframes handFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.rd-handover__content {
  display: flex;
  flex-direction: column;
}

.rd-handover__list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rd-handover__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.rd-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-gradient);
  flex-shrink: 0;
}

/* ─── EPISODE PLAYER ─── */
.rd-episode-section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface-2, #FAFAFD);
}

html[data-theme="dark"] .rd-episode-section {
  background: #16213e;
}

.episode-player {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(106, 90, 205, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode-player:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(106, 90, 205, 0.12), 0 8px 20px rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .episode-player {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .episode-player:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 131, 163, 0.15);
  border-color: rgba(174, 206, 206, 0.15);
}

.player-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.player-art {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-border-subtle);
}

.player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-info { flex: 1; }

.ep-number {
  color: var(--color-accent-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.player-info h4 {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.ep-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Player controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent-gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px var(--color-accent-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px var(--color-accent-glow);
}

.play-btn:active {
  transform: scale(0.95);
}

.play-btn svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

.progress-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: height 0.2s ease;
}

.progress-bar:hover {
  height: 7px;
}

html[data-theme="dark"] .progress-bar {
  background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
  height: 100%;
  width: 35%;
  background: var(--color-accent-gradient);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.progress-times {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Equalizer */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.eq-bar {
  width: 3px;
  background: var(--color-accent-primary);
  border-radius: 2px;
  animation: eqBounce 0.9s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 60%; animation-delay: 0.15s; }
.eq-bar:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.eq-bar:nth-child(4) { height: 45%; animation-delay: 0.45s; }
.eq-bar:nth-child(5) { height: 75%; animation-delay: 0.6s; }

.equalizer.paused .eq-bar {
  animation-play-state: paused;
}

@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

@media (max-width: 560px) {
  .player-inner {
    flex-direction: column;
    text-align: center;
  }
  .player-art {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
  .ep-number { justify-content: center; }
}

/* ─── STATS BAND ─── */
.rd-stats-band {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0f0f23 100%);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rd-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(106, 90, 205, 0.2), transparent 65%);
  pointer-events: none;
}

html[data-theme="dark"] .rd-stats-band {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0d1520 100%);
}

html[data-theme="dark"] .rd-stats-band::before {
  background: radial-gradient(ellipse at 50% -10%, rgba(0, 180, 170, 0.15), transparent 65%);
}

.rd-stats-band__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 560px) {
  .rd-stats-band__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.rd-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

@media (min-width: 560px) {
  .rd-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
  }
}

.rd-stat__num {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(139, 127, 191, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
}

html[data-theme="dark"] .rd-stat__num {
  background: linear-gradient(135deg, #ffffff 0%, #aecece 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.rd-stat__num.is-loading {
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 25%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.15) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.rd-stat__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.rd-stat__note {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ─── FEATURES ─── */
.rd-features-section {
  background: var(--color-bg-base);
  position: relative;
  z-index: 1;
}

html[data-theme="dark"] .rd-features-section {
  background: #0d0d1a;
}

.rd-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .rd-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .rd-features-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.rd-feature-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rd-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(106, 90, 205, 0.05), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.rd-feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(106, 90, 205, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: var(--color-border-glow);
}

.rd-feature-card:hover::before { opacity: 1; }

.rd-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: rgba(106, 90, 205, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.rd-feature-card:hover .rd-feature-icon {
  transform: scale(1.1);
  background: rgba(106, 90, 205, 0.16);
}

.rd-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent-primary);
}

.rd-feature-card h3 {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.rd-feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ─── BLOG SECTION ─── */
.rd-blog-section {
  background: var(--surface-2, #FAFAFD);
  position: relative;
  z-index: 1;
}

html[data-theme="dark"] .rd-blog-section {
  background: #16213e;
}

/* ─── GAMES SECTION ─── */
.rd-games-section {
  background: var(--color-bg-base);
  position: relative;
  z-index: 1;
}

html[data-theme="dark"] .rd-games-section {
  background: #0d0d1a;
}

.games-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 560px) {
  .games-grid-preview {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.game-tile-preview {
  background: var(--color-bg-card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.game-tile-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(106, 90, 205, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.game-tile-preview:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(106, 90, 205, 0.12);
  border-color: var(--color-border-glow);
}

.game-tile-preview:hover::before { opacity: 1; }

.game-tile-preview:focus-visible {
  outline: 3px solid var(--color-accent-primary);
  outline-offset: 2px;
}

.game-tile-preview .game-tile-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(250, 250, 253, 0.5));
  transition: background 0.3s;
}

.game-tile-preview .game-tile-body {
  padding: 0.85rem 0.75rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.game-tile-preview .game-tile-body h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.game-tile-preview .game-tile-body span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.games-more-wrap {
  text-align: center;
  margin-top: 1rem;
}

/* ─── RESPONSIVE / MEDIA SAFETY ─── */
/* Decorative imagery never forces horizontal overflow. */
.rd-hero__portrait,
.rd-handover__img-info,
.rd-handover__img-hand,
.player-art img {
  max-width: 100%;
}

@media (max-width: 480px) {
  /* Comfortable, full-width tap targets for the primary hero CTAs. */
  .rd-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .rd-hero__actions .btn {
    width: 100%;
  }
  /* Trust badges sit closer together and read centred under the CTAs. */
  .rd-hero__trust {
    gap: 0.5rem 1rem;
  }
  /* Tighten section heads so phones don't get oversized gaps. */
  .rd-section-head-center { margin-bottom: 2rem; }
  /* Episode player breathes a little less on small screens. */
  .episode-player { padding: 1.5rem 1.25rem; }
}

/* Equalizer is decorative; hide once the player controls get cramped. */
@media (max-width: 420px) {
  .equalizer { display: none; }
}
