:root {
  --primary-glow: rgba(124, 58, 237, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-accent: rgba(255, 255, 255, 0.15);
  --text-main: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.6);
  --reco-small: 170px;
  --reco-open: 430px;
  --reco-height: 255px;
  --reco-ease: cubic-bezier(0.23, 1, 0.32, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 8%, rgba(124, 58, 237, 0.06) 0%, rgba(124, 58, 237, 0.025) 18%, transparent 44%),
    radial-gradient(circle at 90% 14%, rgba(168, 85, 247, 0.055) 0%, rgba(168, 85, 247, 0.02) 20%, transparent 46%),
    radial-gradient(circle at 18% 42%, rgba(91, 33, 182, 0.055) 0%, rgba(91, 33, 182, 0.02) 22%, transparent 50%),
    radial-gradient(circle at 82% 56%, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.018) 20%, transparent 48%),
    radial-gradient(circle at 42% 76%, rgba(192, 132, 252, 0.04) 0%, rgba(192, 132, 252, 0.015) 18%, transparent 46%),
    radial-gradient(circle at 72% 92%, rgba(76, 29, 149, 0.06) 0%, rgba(76, 29, 149, 0.022) 22%, transparent 52%),
    #050505;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 3rem auto;
}

.hero {
  position: relative;
  min-height: 680px;
  height: 78vh;
  max-height: 820px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10%;
  z-index: 1;
  overflow: hidden;
  background: transparent;
}

.dessous-du-hero {
  margin-top: -5rem;
  background: #050505;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  top: 2px;
  background: linear-gradient(to bottom, #050505 0%, rgba(5,5,5,0.9) 22%, rgba(5,5,5,0.55) 55%, transparent 100%);
}

.hero::after {
  bottom: -4px;
  background: linear-gradient(to top, #050505 0%, rgba(5,5,5,0.9) 22%, rgba(5,5,5,0.55) 55%, transparent 100%);
}

#dynamic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at top right, #1a1033 0%, #050505 100%);
  pointer-events: none;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.05);
  filter: brightness(0.4) saturate(1.2);
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}

[style*="opacity: 1"].bg-layer {
  transform: scale(1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050505 10%, rgba(5,5,5,0.7) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  width: 100%;
  margin: auto;
  will-change: transform, opacity;
}

@keyframes heroCinemaOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-24px); }
}

@keyframes heroCinemaIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content.fade-out {
  animation: heroCinemaOut 0.45s cubic-bezier(0.4, 0, 1, 1) both;
  pointer-events: none;
}

.hero-content.fade-in {
  opacity: 1;
}

.hero-content.fade-in > .hero-title    { animation: heroCinemaIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-content.fade-in > .hero-meta     { animation: heroCinemaIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) 0.07s both; }
.hero-content.fade-in > .hero-overview { animation: heroCinemaIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both; }
.hero-content.fade-in > .hero-button   { animation: heroCinemaIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) 0.23s both; }

.hero-title {
  font-size: clamp(1.7rem, 4.1vw, 3.05rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
  background: linear-gradient(to bottom, #fff 60%, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: var(--transition-smooth);
}

.hero-meta span:hover {
  border-color: var(--glass-accent);
  color: #fff;
}

.hero-overview {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-button {
  position: relative;
  background: rgba(255,255,255,0.95);
  color: #000;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 0.68rem;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(255,255,255,0.1);
  border: 1px solid transparent;
}

.hero-button::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(45deg, #fff, var(--primary-glow));
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.hero-button:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 15px 40px rgba(124,58,237,0.3);
}

.hero-button:hover::after {
  opacity: 1;
}

.page-content {
  position: relative;
  z-index: 2;
  --page-gutter: max(24px, calc((100vw - 1600px) / 2));
  width: min(calc(100% - 48px), 1600px);
  max-width: 1600px;
  margin: 0 auto;
  overflow: visible;
}

.page-content:has(.reco-section.is-reco-active) {
  z-index: 9000;
}

.page-content:not(:has(.reco-section.is-reco-active)) {
  z-index: 2;
}

.reco-section {
  position: relative;
  width: calc(100vw - var(--page-gutter));
  max-width: none;
  margin-right: calc(var(--page-gutter) * -1);
  margin-bottom: 3rem;
  padding: 0;
  overflow: visible;
  z-index: 20;
}

.reco-section.is-reco-active {
  z-index: 5000;
}

.reco-section.is-reco-active .reco-track-wrapper {
  z-index: 5000;
}

.reco-section.is-reco-active .reco-card.is-open {
  z-index: 6000;
}

.reco-section.is-reco-active .reco-card.is-open .reco-card-shell {
  z-index: 6000;
}

.reco-header {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding-left: 0;
  max-width: 1600px;
  margin: left;
  width: 100%;
}

.reco-tagline {
  color: #7c3aed;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.reco-title {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
}

.reco-track-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  height: var(--reco-height);
  z-index: 2;
}

.reco-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: var(--reco-height);
  background: linear-gradient(to right, rgba(5,5,5,0), rgba(5,5,5,0.82) 62%, #050505 100%);
  pointer-events: none;
  z-index: 25;
}

.reco-track {
  display: flex;
  gap: 16px;
  width: 100%;
  height: calc(var(--reco-height) + 300px);
  margin-bottom: -300px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  padding: 0 420px 300px 0;
  cursor: grab;
  user-select: none;
  align-items: flex-start;
  pointer-events: auto;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  will-change: scroll-position;
}

.reco-track::-webkit-scrollbar {
  display: none;
}

.reco-track.dragging {
  cursor: grabbing;
}

.reco-track.dragging * {
  pointer-events: none;
}

.reco-track.momentum {
  scroll-behavior: auto;
}

.reco-track.dragging .reco-card {
  pointer-events: none;
  flex-basis: var(--reco-small);
}

.reco-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 110px;
  background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(15,15,15,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7000;
  transition: opacity 0.22s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.reco-arrow::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid rgba(255,255,255,0.85);
  border-top: 2.5px solid rgba(255,255,255,0.85);
  border-radius: 1px;
  transition: border-color 0.2s ease;
}

.reco-arrow-left {
  left: 0;
  border-radius: 0 12px 12px 0;
  border-left: none;
}

.reco-arrow-left::after {
  transform: rotate(-135deg) translateX(1px);
}

.reco-arrow-right {
  right: 0;
  border-radius: 12px 0 0 12px;
  border-right: none;
}

.reco-arrow-right::after {
  transform: rotate(45deg) translateX(-1px);
}

.reco-arrow:hover {
  background: linear-gradient(135deg, rgba(55,55,55,0.98) 0%, rgba(30,30,30,0.95) 100%);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 6px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  transform: translateY(-50%) scaleY(1.04);
}

.reco-arrow:hover::after {
  border-color: #fff;
}

.reco-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.reco-card {
  position: relative;
  flex: 0 0 var(--reco-small);
  width: var(--reco-small);
  height: var(--reco-height);
  overflow: visible;
  z-index: 1;
  transition: flex-basis 0.42s var(--reco-ease);
  will-change: flex-basis;
  contain: none;
  pointer-events: auto;
}

.reco-card-shell {
  position: relative;
  z-index: 2;
  width: var(--reco-small);
  border-radius: 14px;
  overflow: hidden;
  background: #181818;
  transition: transform 0.42s var(--reco-ease), box-shadow 0.42s var(--reco-ease), width 0.42s var(--reco-ease);
  will-change: transform, width;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  pointer-events: auto;
}

.reco-card-media {
  position: relative;
  width: 100%;
  height: var(--reco-height);
  background: #181818;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.reco-visual {
  pointer-events: none;
  width: 100%;
  height: calc(100% + 2px);
  object-fit: cover;
  display: block;
  transform: scale(1.012) translateZ(0);
  transition: transform 0.34s var(--reco-ease);
  backface-visibility: hidden;
}

.reco-card-overlay {
  position: absolute;
  left: -42px;
  right: -42px;
  top: 0;
  bottom: -300px;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
}

.reco-card-logo-wrap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 86px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 3;
  transition: bottom 0.42s var(--reco-ease), opacity 0.22s ease;
}

.reco-card.is-open .reco-card-logo-wrap {
  opacity: 0;
  pointer-events: none;
  bottom: 82px;
}

.reco-card-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.7));
}

.reco-card-logo-fallback {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.reco-card-logo-wrap:has(.reco-card-progress) {
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: auto;
  min-height: 86px;
  bottom: 20px;
}

.reco-card-logo-wrap:has(.reco-card-progress) .reco-card-logo,
.reco-card-logo-wrap:has(.reco-card-progress) .reco-card-logo-fallback {
  margin-left: auto;
  margin-right: auto;
}

.reco-card-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

.reco-card-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.65);
}

.reco-card-progress-time {
  width: 100%;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  font-variant-numeric: tabular-nums;
}

.reco-card-body {
  position: relative;
  z-index: 1;
  background: #181818;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  margin-top: -1px;
  transition: max-height 0.22s ease, opacity 0.15s ease, padding 0.22s ease;
  pointer-events: auto;
}

.reco-card.is-open {
  flex-basis: var(--reco-open);
  z-index: 6000;
}

.reco-card.is-open .reco-card-shell {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--reco-open);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.8);
  z-index: 6000;
}

.reco-card.is-open .reco-visual {
  transform: scale(1.04);
}

.reco-card.is-open .reco-card-body {
  max-height: 280px;
  opacity: 1;
  padding: 20px;
  transition: max-height 0.42s var(--reco-ease), opacity 0.28s ease 0.12s, padding 0.42s var(--reco-ease);
}

.reco-card-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 8;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.42s var(--reco-ease);
}

.reco-card.is-open .reco-card-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reco-card-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.reco-card-action-btn:hover {
  background: rgba(255,255,255,0.34);
  transform: scale(1.07);
}

.reco-card-action-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reco-card-action-wl .wl-icon-check { display: none; }
.reco-card-action-wl .wl-icon-add { display: block; }
.reco-card.is-watchlisted .reco-card-action-wl {
  background: #fff;
}
.reco-card.is-watchlisted .reco-card-action-wl svg { stroke: #111; }
.reco-card.is-watchlisted .reco-card-action-wl .wl-icon-add { display: none; }
.reco-card.is-watchlisted .reco-card-action-wl .wl-icon-check { display: block; }

.reco-card-action-btn.wl-pop {
  animation: wlPop 0.42s var(--reco-ease);
}
.reco-card-action-btn.wl-shake {
  animation: wlShake 0.4s ease;
}

@keyframes wlPop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.32); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes wlShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

.reco-card-wl-toast {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translate(-50%, -12px);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
  transition: opacity 0.25s ease, transform 0.32s var(--reco-ease);
}
.reco-card-wl-toast svg {
  width: 15px;
  height: 15px;
  stroke: #4ade80;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reco-card.wl-toast-show .reco-card-wl-toast {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reco-card-wl-flag {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}
.reco-card-wl-flag svg {
  width: 15px;
  height: 15px;
  stroke: #111;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reco-card.is-watchlisted .reco-card-wl-flag {
  display: flex;
  animation: wlFlagIn 0.34s var(--reco-ease);
}

@keyframes wlFlagIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.reco-card-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.reco-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.reco-card-meta span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.reco-card-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reco-card-skeleton {
  flex: 0 0 var(--reco-small);
  width: var(--reco-small);
  height: var(--reco-height);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: recoShimmer 1.4s infinite;
  pointer-events: auto;
}

.reco-top10-section {
  position: relative;
  padding: 2rem 0 3rem;
}

.reco-top10-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--page-gutter) * -1);
  right: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(124,58,237,0.22), transparent 34%),
    linear-gradient(180deg, rgba(18,10,28,0.96), rgba(8,6,12,0.96));
  border-top: 1px solid rgba(124,58,237,0.16);
  border-bottom: 1px solid rgba(124,58,237,0.12);
}

.reco-top10-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.reco-top10-badge {
  width: 46px;
  height: 58px;
  border-radius: 6px;
  background: linear-gradient(180deg, #8b5cf6, #6d28d9);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.32);
}

.reco-top10-badge span {
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.reco-top10-badge strong {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.reco-top10-heading {
  min-width: 0;
}

.reco-top10-heading .reco-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  color: #fff;
}

.reco-top10-heading .reco-tagline {
  margin: 7px 0 0;
  color: #a855f7;
  font-size: 0.92rem;
  font-weight: 600;
}

.reco-top10-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #7c3aed;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reco-top10-button:hover {
  transform: translateY(-1px);
  background: #8b5cf6;
}

.reco-top10-section .reco-track-wrapper::after {
  background: linear-gradient(to right, rgba(8,6,12,0), rgba(8,6,12,0.82) 62%, #08060c 100%);
}

.reco-top10-section .reco-card-media {
  height: var(--reco-height);
}

.reco-top10-section .reco-visual {
  height: 100%;
  object-fit: cover;
}

.reco-latest-section {
  position: relative;
  padding: 34px 0 42px;
  margin-bottom: 4rem;
}

.reco-latest-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--page-gutter) * -1);
  right: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(168,85,247,0.16), transparent 34%),
    linear-gradient(180deg, rgba(16,12,22,0.96), rgba(7,7,10,0.96));
  border-top: 1px solid rgba(168,85,247,0.14);
  border-bottom: 1px solid rgba(168,85,247,0.1);
}

.reco-latest-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.reco-latest-badge {
  width: 46px;
  height: 58px;
  border-radius: 6px;
  background: linear-gradient(180deg, #a855f7, #7c3aed);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

.reco-latest-badge span {
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.reco-latest-badge strong {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.reco-latest-heading {
  min-width: 0;
}

.reco-latest-heading .reco-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  color: #fff;
}

.reco-latest-heading .reco-tagline {
  margin: 7px 0 0;
  color: #c084fc;
  font-size: 0.92rem;
  font-weight: 600;
}

.reco-latest-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: rgba(124,58,237,0.2);
  color: #fff;
  border: 1px solid rgba(168,85,247,0.28);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reco-latest-button:hover {
  transform: translateY(-1px);
  background: rgba(124,58,237,0.34);
}

.reco-latest-section .reco-track-wrapper::after {
  background: linear-gradient(to right, rgba(7,7,10,0), rgba(7,7,10,0.82) 62%, #07070a 100%);
}

.reco-latest-section .reco-card-shell {
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.reco-latest-section .reco-card.is-open .reco-card-shell {
  box-shadow:
    0 28px 60px rgba(0,0,0,0.8),
    0 0 32px rgba(168,85,247,0.16);
}

.reco-card-rank {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 9;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.1em;
  color: rgba(255,255,255,0.96);
  text-shadow:
    0 0 18px rgba(124,58,237,0.72),
    0 10px 28px rgba(0,0,0,0.9);
  pointer-events: none;
}

.reco-card-top-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
  background: rgba(5,5,8,0.88);
  color: #fff;
  border: 1px solid rgba(124,58,237,0.55);
  border-radius: 7px;
  padding: 8px 11px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reco-top10-section .reco-card-shell {
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.reco-top10-section .reco-card.is-open .reco-card-shell {
  box-shadow:
    0 28px 60px rgba(0,0,0,0.8),
    0 0 36px rgba(124,58,237,0.2);
}

.reco-card {
  --reco-current-width: var(--reco-small);
  --trailer-zoom: 2;
}

.reco-card.is-open {
  --reco-current-width: var(--reco-open);
  --trailer-zoom: 2;
}

.reco-card-trailer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.25s ease;
  background: #000;
}

.reco-card-trailer.is-ready {
  opacity: 1;
}

.reco-card-trailer video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% * var(--trailer-zoom));
  height: calc(100% * var(--trailer-zoom));
  object-fit: cover;
  border: 0;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
}

.reco-card-trailer iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(max(100%, calc(var(--reco-height) * 16 / 9)) * var(--trailer-zoom));
  height: calc(max(100%, calc(var(--reco-current-width) * 9 / 16)) * var(--trailer-zoom));
  border: 0;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
}

.reco-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: auto;
}

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

.premium-banner {
  width: 100%;
  position: relative;
  background-color: #1d0a3c;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.premium-banner__media {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
}

.premium-banner__media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, #1d0a3c 0%, rgba(29, 10, 60, 0.9) 28%, rgba(29, 10, 60, 0.45) 62%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.premium-banner__img {
  position: relative;
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.premium-banner::after {
  display: none;
}

.premium-banner__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.premium-banner__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.premium-banner__title svg {
  height: 30px;
  transform: translateY(2px);
}

.premium-banner__subtitle {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.88);
}

.premium-banner__features {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 48px;
  list-style: none;
  padding: 0;
}

.premium-banner__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.premium-banner__features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.premium-banner__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.premium-banner__cta svg {
  width: 17px;
  height: 17px;
  transform: translateY(1px);
}

.premium-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.premium-banner__btn:hover {
  background: #f0f0f0;
}

.premium-banner__no-commitment {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.genres-label {
  color: #5865f2;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.genres-title {
  color: #f2f3f5;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
}

.genres-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
}

.genre-card {
  position: relative;
  width: 100%;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.genre-card.active {
  border-color: #5865f229;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.22), 0 10px 26px rgba(88, 101, 242, 0.26);
}

.genre-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05) brightness(0.82);
}

.genre-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--glow-color-1, rgba(30, 31, 34, 0.98)) 0%,
    var(--glow-color-2, rgba(49, 51, 56, 0.72)) 55%,
    var(--glow-color-3, rgba(88, 101, 242, 0.18)) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
}

.genre-name {
  color: #f2f3f5;
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.discord-section {
  background: linear-gradient(135deg, #1d0a3c 0%, #170a3c 100%);
  border-radius: 18px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  max-width: 1600px;
  width: 100%;
  margin: 3rem auto;
}

.discord-text h2 {
  color: #f2f3f5;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.discord-text p {
  color: #b5bac1;
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 640px;
}

.discord-btn {
  background: #5865f2;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(88, 101, 242, 0.32);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 12px 28px rgba(88, 101, 242, 0.42);
}

.discord-btn:active {
  transform: scale(0.98);
  background: #3c45a5;
}

.discord-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.catalogue-section {
  background: #000000;
  padding: 120px 20px;
  text-align: center;
}

.catalogue-content {
  max-width: 760px;
  margin: 0 auto;
}

.catalogue-content h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.catalogue-content p {
  margin: 0 auto 32px;
  color: #7c3aed;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.45;
}

.catalogue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 9px;
  background: #2b2535;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.catalogue-button:hover {
  background: #342d40;
}

@media (min-width: 2560px) {

  :root {
    --reco-small:  320px;
    --reco-open:   810px;
    --reco-height: 480px;
  }

  .container {
    max-width: 1600px;
    margin: 4.5rem auto;
  }

  .page-content {
    width: min(calc(100% - 80px), 1600px);
    max-width: 1600px;
  }

  .hero {
    min-height: 920px;
    max-height: 1600px;
    height: 76vh;
    padding: 0 10%;
  }

  .hero::after {
    height: 340px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 3.8vw, 5rem);
    margin-bottom: 36px;
  }

  .hero-meta span {
    font-size: 0.72rem;
    padding: 9px 22px;
  }

  .hero-overview {
    font-size: 1rem;
    max-width: 900px;
    margin-bottom: 56px;
  }

  .hero-button {
    padding: 22px 52px;
    font-size: 0.9rem;
    border-radius: 18px;
    gap: 16px;
  }

  .reco-section {
    margin-bottom: 4.5rem;
  }

  .reco-title {
    font-size: 2.2rem;
  }

  .reco-tagline {
    font-size: 1.05rem;
  }

  .reco-header {
    margin-bottom: 26px;
  }

  .reco-track {
    gap: 22px;
    padding: 0 680px 300px 0;
  }

  .reco-track-wrapper::after {
    width: 500px;
  }

  .reco-arrow {
    width: 56px;
    height: 140px;
  }

  .reco-top10-header {
    gap: 32px;
    margin-bottom: 44px;
  }

  .reco-top10-badge {
    width: 68px;
    height: 86px;
    border-radius: 9px;
  }

  .reco-top10-badge strong {
    font-size: 2.2rem;
  }

  .reco-top10-badge span {
    font-size: 0.84rem;
  }

  .reco-top10-heading .reco-title {
    font-size: 2.6rem;
  }

  .reco-top10-heading .reco-tagline {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .reco-top10-button {
    min-height: 62px;
    padding: 0 28px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  .reco-latest-header {
    gap: 32px;
    margin-bottom: 40px;
  }

  .reco-latest-badge {
    width: 68px;
    height: 86px;
    border-radius: 9px;
  }

  .reco-latest-badge strong {
    font-size: 2.2rem;
  }

  .reco-latest-badge span {
    font-size: 0.84rem;
  }

  .reco-latest-heading .reco-title {
    font-size: 2.6rem;
  }

  .reco-latest-heading .reco-tagline {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .reco-latest-button {
    min-height: 62px;
    padding: 0 28px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  .reco-card.is-open .reco-card-body {
    max-height: 380px;
    padding: 28px 28px;
  }

  .reco-card-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .reco-card-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    -webkit-line-clamp: 4;
  }

  .reco-card-meta span {
    font-size: 0.96rem;
    padding: 6px 14px;
  }

  .reco-card-actions {
    bottom: 34px;
    gap: 14px;
  }

  .reco-card-action-btn {
    width: 58px;
    height: 58px;
  }

  .reco-card-action-btn svg {
    width: 26px;
    height: 26px;
  }

  .reco-card-rank {
    font-size: 5.2rem;
    top: 18px;
    right: 20px;
  }

  .reco-card-top-badge {
    font-size: 1rem;
    padding: 11px 15px;
    top: 14px;
    left: 14px;
    border-radius: 10px;
  }

  .reco-card.is-open .reco-card-logo-wrap {
    bottom: 110px;
  }

  .reco-card-logo-wrap {
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 120px;
  }

  .premium-banner__inner {
    padding: 56px 60px;
    gap: 26px;
  }

  .premium-banner__title {
    font-size: 2.2rem;
    gap: 14px;
  }

  .premium-banner__title svg {
    height: 42px;
  }

  .premium-banner__subtitle {
    font-size: 1.3rem;
  }

  .premium-banner__features {
    grid-template-columns: repeat(3, auto);
    gap: 14px 64px;
  }

  .premium-banner__features li {
    font-size: 1.18rem;
    gap: 11px;
  }

  .premium-banner__features li::before {
    width: 24px;
    height: 24px;
    font-size: 0.84rem;
  }

  .premium-banner__btn {
    font-size: 1.2rem;
    padding: 17px 30px;
    border-radius: 8px;
  }

  .premium-banner__no-commitment {
    font-size: 1.05rem;
  }

  .genres-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }

  .genre-card {
    height: 108px;
    border-radius: 18px;
  }

  .genre-name {
    font-size: 22px;
  }

  .genres-label {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .genres-title {
    font-size: 40px;
    margin-bottom: 36px;
  }

  .discord-section {
    padding: 52px 64px;
    border-radius: 26px;
    margin: 4.5rem auto;
    max-width: 1600px;
  }

  .discord-text h2 {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .discord-text p {
    font-size: 20px;
    max-width: 960px;
  }

  .discord-btn {
    padding: 20px 34px;
    font-size: 20px;
    border-radius: 14px;
    gap: 12px;
  }

  .discord-btn svg {
    width: 26px;
    height: 26px;
  }

  .catalogue-section {
    padding: 180px 32px;
  }

  .catalogue-content h2 {
    font-size: clamp(38px, 2.8vw, 54px);
    margin-bottom: 28px;
  }

  .catalogue-content p {
    font-size: clamp(22px, 1.8vw, 30px);
    margin-bottom: 48px;
  }

  .catalogue-button {
    padding: 20px 34px;
    font-size: 24px;
    border-radius: 14px;
  }
}

@media (min-width: 1920px) and (max-width: 2559px) {

  :root {
    --reco-small:  256px;
    --reco-open:   645px;
    --reco-height: 384px;
  }

  .container {
    max-width: 1600px;
    margin: 4rem auto;
  }

  .page-content {
    width: min(calc(100% - 64px), 1600px);
    max-width: 1600px;
  }

  .hero {
    min-height: 820px;
    max-height: 980px;
    height: 78vh;
    padding: 0 10%;
  }

  .hero::after {
    height: 290px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 3.4vw, 4.2rem);
    margin-bottom: 32px;
  }

  .hero-meta span {
    font-size: 0.65rem;
    padding: 8px 20px;
  }

  .hero-overview {
    font-size: 0.9rem;
    max-width: 800px;
    margin-bottom: 50px;
  }

  .hero-button {
    padding: 20px 46px;
    font-size: 0.82rem;
    border-radius: 17px;
    gap: 15px;
  }

  .reco-section {
    margin-bottom: 4rem;
  }

  .reco-title {
    font-size: 2rem;
  }

  .reco-tagline {
    font-size: 0.96rem;
  }

  .reco-header {
    margin-bottom: 22px;
  }

  .reco-track {
    gap: 20px;
    padding: 0 540px 300px 0;
  }

  .reco-track-wrapper::after {
    width: 420px;
  }

  .reco-arrow {
    width: 50px;
    height: 120px;
  }

  .reco-top10-header {
    gap: 28px;
    margin-bottom: 38px;
  }

  .reco-top10-badge {
    width: 60px;
    height: 76px;
    border-radius: 8px;
  }

  .reco-top10-badge strong {
    font-size: 1.95rem;
  }

  .reco-top10-badge span {
    font-size: 0.76rem;
  }

  .reco-top10-heading .reco-title {
    font-size: 2.3rem;
  }

  .reco-top10-heading .reco-tagline {
    font-size: 1.08rem;
    margin-top: 9px;
  }

  .reco-top10-button {
    min-height: 56px;
    padding: 0 24px;
    font-size: 1rem;
    border-radius: 11px;
  }

  .reco-latest-header {
    gap: 28px;
    margin-bottom: 34px;
  }

  .reco-latest-badge {
    width: 60px;
    height: 76px;
    border-radius: 8px;
  }

  .reco-latest-badge strong {
    font-size: 1.95rem;
  }

  .reco-latest-badge span {
    font-size: 0.76rem;
  }

  .reco-latest-heading .reco-title {
    font-size: 2.3rem;
  }

  .reco-latest-heading .reco-tagline {
    font-size: 1.08rem;
    margin-top: 9px;
  }

  .reco-latest-button {
    min-height: 56px;
    padding: 0 24px;
    font-size: 1rem;
    border-radius: 11px;
  }

  .reco-card.is-open .reco-card-body {
    max-height: 340px;
    padding: 24px 24px;
  }

  .reco-card-title {
    font-size: 1.24rem;
    margin-bottom: 14px;
  }

  .reco-card-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    -webkit-line-clamp: 4;
  }

  .reco-card-meta span {
    font-size: 0.88rem;
    padding: 5px 12px;
  }

  .reco-card-actions {
    bottom: 30px;
    gap: 13px;
  }

  .reco-card-action-btn {
    width: 52px;
    height: 52px;
  }

  .reco-card-action-btn svg {
    width: 22px;
    height: 22px;
  }

  .reco-card-rank {
    font-size: 4.6rem;
    top: 16px;
    right: 18px;
  }

  .reco-card-top-badge {
    font-size: 0.9rem;
    padding: 10px 14px;
    top: 13px;
    left: 13px;
    border-radius: 9px;
  }

  .reco-card.is-open .reco-card-logo-wrap {
    bottom: 96px;
  }

  .reco-card-logo-wrap {
    left: 22px;
    right: 22px;
    bottom: 22px;
    height: 110px;
  }

  .premium-banner__inner {
    padding: 48px 52px;
    gap: 22px;
  }

  .premium-banner__title {
    font-size: 1.95rem;
    gap: 13px;
  }

  .premium-banner__title svg {
    height: 36px;
  }

  .premium-banner__subtitle {
    font-size: 1.18rem;
  }

  .premium-banner__features {
    grid-template-columns: repeat(3, auto);
    gap: 12px 56px;
  }

  .premium-banner__features li {
    font-size: 1.08rem;
    gap: 10px;
  }

  .premium-banner__features li::before {
    width: 22px;
    height: 22px;
    font-size: 0.76rem;
  }

  .premium-banner__btn {
    font-size: 1.1rem;
    padding: 15px 26px;
    border-radius: 8px;
  }

  .premium-banner__no-commitment {
    font-size: 0.96rem;
  }

  .genres-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .genre-card {
    height: 94px;
    border-radius: 16px;
  }

  .genre-name {
    font-size: 20px;
  }

  .genres-label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .genres-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .discord-section {
    padding: 46px 56px;
    border-radius: 24px;
    margin: 4rem auto;
    max-width: 1600px;
  }

  .discord-text h2 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .discord-text p {
    font-size: 18px;
    max-width: 860px;
  }

  .discord-btn {
    padding: 18px 30px;
    font-size: 18px;
    border-radius: 13px;
    gap: 11px;
  }

  .discord-btn svg {
    width: 24px;
    height: 24px;
  }

  .catalogue-section {
    padding: 160px 28px;
  }

  .catalogue-content h2 {
    font-size: clamp(34px, 2.5vw, 48px);
    margin-bottom: 24px;
  }

  .catalogue-content p {
    font-size: clamp(20px, 1.6vw, 28px);
    margin-bottom: 44px;
  }

  .catalogue-button {
    padding: 18px 30px;
    font-size: 22px;
    border-radius: 12px;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  :root {
    --reco-small: 204px;
    --reco-open: 516px;
    --reco-height: 306px;
  }

  .container {
    max-width: 1200px;
    margin: 3.5rem auto;
  }

  .page-content {
    width: min(calc(100% - 56px), 1200px);
    max-width: 1200px;
  }

  .hero {
    min-height: 720px;
    max-height: 880px;
    height: 78vh;
    padding: 0 10%;
  }

  .hero::after {
    height: 248px;
  }

  .hero-content {
    max-width: 1200px;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    margin-bottom: 27px;
  }

  .hero-meta span {
    font-size: 0.58rem;
    padding: 7px 18px;
  }

  .hero-overview {
    font-size: 0.82rem;
    max-width: 680px;
    margin-bottom: 44px;
  }

  .hero-button {
    padding: 17px 40px;
    font-size: 0.74rem;
    border-radius: 15px;
    gap: 13px;
  }

  .reco-section {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    padding-left: max(24px, calc((100vw - 1200px) / 2));
    padding-right: 0;
    box-sizing: border-box;
    margin-bottom: 3.5rem;
  }

  .reco-latest-section::before {
    left: calc(max(24px, calc((100vw - 1200px) / 2)) * -1);
  }

  .reco-title {
    font-size: 1.82rem;
  }

  .reco-tagline {
    font-size: 0.9rem;
  }

  .reco-header {
    margin-bottom: 20px;
    max-width: 1200px;
  }

  .reco-track {
    gap: 18px;
    padding: 0 432px 300px 0;
  }

  .reco-track-wrapper::after {
    width: 360px;
  }

  .reco-arrow {
    width: 44px;
    height: 106px;
  }

  .reco-top10-header {
    gap: 24px;
    margin-bottom: 32px;
  }

  .reco-top10-badge {
    width: 52px;
    height: 66px;
    border-radius: 7px;
  }

  .reco-top10-badge strong {
    font-size: 1.72rem;
  }

  .reco-top10-badge span {
    font-size: 0.7rem;
  }

  .reco-top10-heading .reco-title {
    font-size: 2.1rem;
  }

  .reco-top10-heading .reco-tagline {
    font-size: 1rem;
    margin-top: 8px;
  }

  .reco-top10-button {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.94rem;
    border-radius: 10px;
  }

  .reco-latest-header {
    gap: 24px;
    margin-bottom: 30px;
  }

  .reco-latest-badge {
    width: 52px;
    height: 66px;
    border-radius: 7px;
  }

  .reco-latest-badge strong {
    font-size: 1.72rem;
  }

  .reco-latest-badge span {
    font-size: 0.7rem;
  }

  .reco-latest-heading .reco-title {
    font-size: 2.1rem;
  }

  .reco-latest-heading .reco-tagline {
    font-size: 1rem;
    margin-top: 8px;
  }

  .reco-latest-button {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.94rem;
    border-radius: 10px;
  }

  .reco-card.is-open .reco-card-body {
    max-height: 310px;
    padding: 22px 22px;
  }

  .reco-card-title {
    font-size: 1.12rem;
    margin-bottom: 13px;
  }

  .reco-card-desc {
    font-size: 0.86rem;
    line-height: 1.52;
    -webkit-line-clamp: 4;
  }

  .reco-card-meta span {
    font-size: 0.8rem;
    padding: 5px 11px;
  }

  .reco-card-actions {
    bottom: 28px;
    gap: 11px;
  }

  .reco-card-action-btn {
    width: 48px;
    height: 48px;
  }

  .reco-card-action-btn svg {
    width: 20px;
    height: 20px;
  }

  .reco-card-rank {
    font-size: 4rem;
    top: 14px;
    right: 16px;
  }

  .reco-card-top-badge {
    font-size: 0.83rem;
    padding: 9px 12px;
    top: 11px;
    left: 11px;
    border-radius: 8px;
  }

  .reco-card.is-open .reco-card-logo-wrap {
    bottom: 88px;
  }

  .reco-card-logo-wrap {
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: 100px;
  }

  .premium-banner__inner {
    max-width: 1200px;
    padding: 42px 48px;
    gap: 20px;
    margin: auto;
  }

  .premium-banner__title {
    font-size: 1.78rem;
    gap: 12px;
  }

  .premium-banner__title svg {
    height: 33px;
  }

  .premium-banner__subtitle {
    font-size: 1.08rem;
  }

  .premium-banner__features {
    grid-template-columns: repeat(3, auto);
    gap: 11px 50px;
  }

  .premium-banner__features li {
    font-size: 0.99rem;
    gap: 9px;
  }

  .premium-banner__features li::before {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .premium-banner__btn {
    font-size: 1.02rem;
    padding: 14px 24px;
    border-radius: 7px;
  }

  .premium-banner__no-commitment {
    font-size: 0.9rem;
  }

  .genres-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  .genre-card {
    height: 84px;
    border-radius: 14px;
  }

  .genre-name {
    font-size: 17px;
  }

  .genres-label {
    font-size: 14px;
    margin-bottom: 9px;
  }

  .genres-title {
    font-size: 30px;
    margin-bottom: 26px;
  }

  .discord-section {
    padding: 38px 48px;
    border-radius: 22px;
    margin: 3.5rem auto;
    max-width: 1200px;
  }

  .discord-text h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .discord-text p {
    font-size: 15.5px;
    max-width: 760px;
  }

  .discord-btn {
    padding: 15px 26px;
    font-size: 16px;
    border-radius: 12px;
    gap: 10px;
  }

  .discord-btn svg {
    width: 21px;
    height: 21px;
  }

  .catalogue-section {
    padding: 140px 28px;
  }

  .catalogue-content h2 {
    font-size: clamp(28px, 2.2vw, 42px);
    margin-bottom: 20px;
  }

  .catalogue-content p {
    font-size: clamp(17px, 1.4vw, 24px);
    margin-bottom: 38px;
  }

  .catalogue-button {
    padding: 16px 26px;
    font-size: 20px;
    border-radius: 11px;
  }
}

@media (max-width: 1279px) {

  .hero { padding: 0 6%; }

  .page-content {
    width: min(calc(100% - 40px), 1200px);
  }

  .premium-banner__features {
    grid-template-columns: repeat(2, auto);
    gap: 10px 36px;
  }

  .genres-list { grid-template-columns: repeat(4, 1fr); }

  .discord-section { padding: 28px 32px; }
}

@media (max-width: 1023px) {

  :root {
    --reco-small:  180px;
    --reco-open:   420px;
    --reco-height: 268px;
  }

  .hero {
    height: 72vh;
    min-height: 520px;
    max-height: 720px;
    padding: 0 8%;
    align-items: center;
  }

  .hero-gradient {
    background: radial-gradient(ellipse at center, rgba(5,5,5,0.45) 0%, rgba(5,5,5,0.80) 100%);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
    line-height: 1.0;
  }

  .hero-meta {
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-meta span {
    font-size: 0.58rem;
    padding: 6px 16px;
  }

  .hero-overview {
    font-size: 0.78rem;
    text-align: center;
    max-width: 540px;
    margin-bottom: 28px;
    -webkit-line-clamp: 3;
  }

  .hero-button {
    padding: 16px 40px;
    font-size: 0.72rem;
    border-radius: 12px;
    min-height: 52px;
  }

  .page-content { width: calc(100% - 32px); }
  .dessous-du-hero { margin-top: -4rem; }
  .container { max-width: calc(100% - 32px); margin: 2.5rem auto; }

  .reco-section { margin-bottom: 2.5rem; }
  .reco-title { font-size: 1.4rem; }
  .reco-tagline { font-size: 0.82rem; }
  .reco-header { margin-bottom: 16px; }
  .reco-track { padding: 0 300px 300px 0; gap: 14px; }
  .reco-track-wrapper::after { width: 280px; }

  .reco-arrow {
    width: 36px;
    height: 90px;
  }

  .reco-top10-header,
  .reco-latest-header {
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .reco-top10-button,
  .reco-latest-button { display: none; }

  .reco-top10-heading .reco-title,
  .reco-latest-heading .reco-title { font-size: 1.55rem; }

  .reco-top10-heading .reco-tagline,
  .reco-latest-heading .reco-tagline { font-size: 0.86rem; }

  .reco-top10-badge,
  .reco-latest-badge { width: 44px; height: 56px; }

  .reco-top10-badge strong,
  .reco-latest-badge strong { font-size: 1.4rem; }

  .reco-card-rank { font-size: 2.9rem; }

  .reco-card.is-open .reco-card-body {
    max-height: 260px;
    padding: 18px;
  }

  .reco-card-title { font-size: 0.96rem; margin-bottom: 10px; }
  .reco-card-desc { font-size: 0.75rem; }
  .reco-card-meta span { font-size: 0.68rem; }

  .premium-banner__inner { padding: 32px 30px; gap: 18px; }
  .premium-banner__title { font-size: 1.45rem; }
  .premium-banner__subtitle { font-size: 0.94rem; }
  .premium-banner__features { grid-template-columns: repeat(2, auto); gap: 10px 32px; }
  .premium-banner__features li { font-size: 0.9rem; }
  .premium-banner__media { height: 100%; opacity: 0.7; }

  .genres-list { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .genres-title { font-size: 22px; margin-bottom: 18px; }

  .discord-section {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 18px;
    border-radius: 14px;
    margin: 2.5rem auto;
  }
  .discord-text p { max-width: 100%; }
  .discord-text h2 { font-size: 20px; }

  .catalogue-section { padding: 80px 24px; }
}

@media (max-width: 767px) {

  :root {
    --reco-small:  158px;
    --reco-open:   336px;
    --reco-height: 238px;
  }

  .hero {
    height: 1svh;
    min-height: 600px;
    max-height: none;
    padding: 0;
    align-items: flex-end;
  }

  .hero-gradient {
    background: linear-gradient(
      to top,
      rgba(5,5,5,1)    0%,
      rgba(5,5,5,0.88) 18%,
      rgba(5,5,5,0.38) 50%,
      rgba(5,5,5,0.08) 80%,
      transparent      100%
    );
  }

  .hero::before {
    height: 120px;
    background: linear-gradient(to bottom, rgba(5,5,5,0.88) 0%, transparent 100%);
  }

  .hero::after {
    height: 300px;
    background: linear-gradient(
      to top,
      rgba(5,5,5,1)    0%,
      rgba(5,5,5,0.82) 28%,
      rgba(5,5,5,0.48) 58%,
      transparent      100%
    );
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    width: 100%;
    padding: 0 22px 38px;
    padding-bottom: calc(38px + env(safe-area-inset-bottom, 0px));
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    letter-spacing: -0.05em;
    line-height: 0.92;
    margin-bottom: 16px;
  }

  .hero-meta {
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-meta span {
    font-size: 0.56rem;
    padding: 5px 14px;
    border-radius: 100px;
  }

  .hero-overview {
    font-size: 0.76rem;
    line-height: 1.62;
    text-align: center;
    max-width: 92%;
    margin-bottom: 24px;
    -webkit-line-clamp: 3;
  }

  .hero-button {
    width: min(340px, 92%);
    justify-content: center;
    padding: 18px 0;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 16px;
    letter-spacing: 0.04em;
    min-height: 56px;
  }

  .page-content {
    width: 100%;
    --page-gutter: 16px;
  }

  .dessous-du-hero { margin-top: -7rem; }

  .container {
    max-width: 100%;
    margin: 1.5rem auto;
    padding: 0 16px;
  }

  .reco-section {
    margin-bottom: 2rem;
    width: 100%;
    margin-right: 0;
    padding-left: 16px;
  }

  .reco-title { font-size: 1.25rem; letter-spacing: -0.03em; }
  .reco-tagline { font-size: 0.74rem; }
  .reco-header { margin-bottom: 12px; }

  .reco-track {
    padding: 0 48px 300px 0;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .reco-card { scroll-snap-align: start; }

  .reco-track-wrapper::after {
    width: 56px;
    background: linear-gradient(to right, transparent, rgba(5,5,5,0.88) 75%, rgba(5,5,5,1) 100%);
  }

  .reco-arrow { display: none; }

  .reco-top10-header,
  .reco-latest-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .reco-top10-button,
  .reco-latest-button { display: none; }

  .reco-top10-heading .reco-title,
  .reco-latest-heading .reco-title {
    font-size: 1.2rem;
    letter-spacing: -0.035em;
  }

  .reco-top10-heading .reco-tagline,
  .reco-latest-heading .reco-tagline {
    font-size: 0.74rem;
    margin-top: 4px;
  }

  .reco-top10-badge,
  .reco-latest-badge {
    width: 38px;
    height: 48px;
    border-radius: 6px;
  }

  .reco-top10-badge strong,
  .reco-latest-badge strong { font-size: 1.2rem; }

  .reco-top10-badge span,
  .reco-latest-badge span { font-size: 0.53rem; }

  .reco-card.is-open .reco-card-body {
    max-height: 260px;
    padding: 16px;
  }

  .reco-card-logo-wrap { bottom: 20px; height: 80px; }
  .reco-card.is-open .reco-card-logo-wrap { bottom: 70px; }

  .reco-card-title { font-size: 0.95rem; margin-bottom: 8px; line-height: 1.2; }
  .reco-card-desc { font-size: 0.74rem; -webkit-line-clamp: 3; line-height: 1.55; }
  .reco-card-meta span {
    font-size: 0.66rem;
    padding: 4px 9px;
    min-height: 26px;
    display: flex;
    align-items: center;
  }

  .reco-card-actions { bottom: 14px; gap: 10px; }
  .reco-card-action-btn { width: 44px; height: 44px; }
  .reco-card-action-btn svg { width: 16px; height: 16px; }

  .reco-card-rank { font-size: 2.5rem; top: 10px; right: 12px; }
  .reco-card-top-badge { font-size: 0.62rem; padding: 6px 9px; top: 10px; left: 10px; }

  .premium-banner {
    border-radius: 20px;
    margin: 0 16px 2rem;
    width: calc(100% - 32px);
  }

  .premium-banner__img { display: none; }

  .premium-banner__inner { padding: 28px 22px; gap: 14px; }
  .premium-banner__title { font-size: 1.4rem; gap: 9px; }
  .premium-banner__title svg { height: 27px; }
  .premium-banner__subtitle { font-size: 0.9rem; line-height: 1.5; }

  .premium-banner__features {
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }

  .premium-banner__features li { font-size: 0.83rem; gap: 7px; line-height: 1.35; }
  .premium-banner__features li::before { width: 18px; height: 18px; font-size: 0.62rem; flex-shrink: 0; }

  .premium-banner__cta { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 4px; }
  .premium-banner__btn {
    justify-content: center;
    font-size: 0.92rem;
    padding: 16px 0;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    min-height: 52px;
  }
  .premium-banner__no-commitment { font-size: 0.76rem; text-align: center; }

  .genres-label { font-size: 11px; margin-bottom: 8px; }
  .genres-title { font-size: 20px; margin-bottom: 14px; }

  .genres-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .genre-card { height: 76px; border-radius: 14px; }
  .genre-card .overlay { padding: 14px 16px; }
  .genre-name { font-size: 14px; }

  .discord-section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 22px 20px;
    gap: 16px;
    border-radius: 18px;
    margin: 1.5rem 16px;
    width: calc(100% - 32px);
  }

  .discord-text h2 { font-size: 17px; margin-bottom: 8px; }
  .discord-text p { font-size: 13px; line-height: 1.55; }

  .discord-btn {
    align-self: stretch;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 12px;
    min-height: 50px;
  }

  .catalogue-section { padding: 64px 20px; }
  .catalogue-content h2 { font-size: clamp(20px, 6vw, 28px); margin-bottom: 12px; }
  .catalogue-content p { font-size: clamp(14px, 3.8vw, 18px); margin-bottom: 26px; }
  .catalogue-button {
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 12px;
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
}

@media (max-width: 479px) {

  :root {
    --reco-small:  144px;
    --reco-open:   296px;
    --reco-height: 216px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    padding: 0 18px 34px;
    padding-bottom: calc(34px + env(safe-area-inset-bottom, 0px));
  }

  .hero-title {
    font-size: clamp(1.9rem, 9.5vw, 2.6rem);
    margin-bottom: 12px;
  }

  .hero-meta { gap: 5px; margin-bottom: 12px; }

  .hero-meta span {
    font-size: 0.52rem;
    padding: 5px 12px;
  }

  .hero-overview {
    font-size: 0.72rem;
    max-width: 96%;
    margin-bottom: 20px;
    -webkit-line-clamp: 2;
  }

  .hero-button {
    width: 94%;
    padding: 16px 0;
    font-size: 0.7rem;
    border-radius: 14px;
    min-height: 52px;
  }

  .page-content { width: 100%; --page-gutter: 14px; }
  .reco-section { padding-left: 14px; }
  .dessous-du-hero { margin-top: -7rem; }
  .container { max-width: 100%; padding: 0 14px; margin: 1.5rem auto; }

  .reco-title { font-size: 1.1rem; }
  .reco-tagline { font-size: 0.7rem; }

  .reco-track { padding: 0 36px 300px 0; gap: 10px; }
  .reco-track-wrapper::after { width: 44px; }

  .reco-top10-header,
  .reco-latest-header { gap: 10px; margin-bottom: 12px; }

  .reco-top10-heading .reco-title,
  .reco-latest-heading .reco-title { font-size: 1.1rem; }

  .reco-top10-heading .reco-tagline,
  .reco-latest-heading .reco-tagline { font-size: 0.68rem; }

  .reco-top10-badge,
  .reco-latest-badge { width: 32px; height: 42px; }

  .reco-top10-badge strong,
  .reco-latest-badge strong { font-size: 1rem; }

  .reco-top10-badge span,
  .reco-latest-badge span { font-size: 0.47rem; }

  .reco-card-rank { font-size: 2rem; top: 8px; right: 10px; }
  .reco-card-top-badge { font-size: 0.57rem; padding: 5px 7px; top: 8px; left: 8px; }

  .reco-card.is-open .reco-card-body { max-height: 220px; padding: 12px 13px; }
  .reco-card.is-open .reco-card-logo-wrap { bottom: 58px; }
  .reco-card-logo-wrap { bottom: 14px; height: 72px; }

  .reco-card-title { font-size: 0.86rem; margin-bottom: 6px; }
  .reco-card-desc { font-size: 0.68rem; -webkit-line-clamp: 3; }
  .reco-card-meta span { font-size: 0.6rem; padding: 3px 8px; }

  .reco-card-actions { bottom: 12px; gap: 8px; }
  .reco-card-action-btn { width: 40px; height: 40px; }
  .reco-card-action-btn svg { width: 14px; height: 14px; stroke-width: 2.2; }

  .premium-banner { border-radius: 16px; margin: 0 14px 1.8rem; width: calc(100% - 28px); }

  .premium-banner__inner { padding: 22px 18px; gap: 12px; }
  .premium-banner__title { font-size: 1.2rem; }
  .premium-banner__subtitle { font-size: 0.84rem; }

  .premium-banner__features { grid-template-columns: 1fr; gap: 8px; }
  .premium-banner__features li { font-size: 0.82rem; }

  .premium-banner__btn { font-size: 0.88rem; padding: 14px 0; border-radius: 10px; min-height: 50px; }

  .genres-title { font-size: 18px; margin-bottom: 12px; }
  .genres-label { font-size: 10px; }
  .genres-list { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .genre-card { height: 68px; border-radius: 12px; }
  .genre-name { font-size: 13px; }

  .discord-section { padding: 18px 16px; border-radius: 16px; margin: 1.5rem 14px; width: calc(100% - 28px); }
  .discord-text h2 { font-size: 15px; }
  .discord-text p { font-size: 12.5px; }
  .discord-btn { padding: 13px 0; font-size: 13.5px; min-height: 46px; }

  .catalogue-section { padding: 52px 16px; }
  .catalogue-content h2 { font-size: clamp(18px, 6vw, 23px); }
  .catalogue-content p { font-size: clamp(13px, 3.5vw, 16px); }
  .catalogue-button { padding: 14px 0; font-size: 14.5px; border-radius: 10px; width: 100%; }
}

@media (max-height: 520px) and (orientation: landscape) {

  .hero {
    height: auto;
    min-height: 0;
    padding: 72px 10% 48px;
    align-items: center;
  }

  .hero::after { height: 80px; }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 10px;
  }

  .hero-meta { justify-content: center; margin-bottom: 10px; }

  .hero-overview { display: none; }

  .hero-button {
    padding: 12px 36px;
    font-size: 0.66rem;
    width: auto;
    min-height: 44px;
  }

  .dessous-du-hero { margin-top: -1.5rem; }
}

@media (hover: none) and (pointer: coarse) {

  .hero-button:hover {
    transform: none;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
  }

  .hero-button:hover::after { opacity: 0; }

  .reco-card-action-btn:hover {
    background: rgba(255,255,255,0.22);
    transform: none;
  }

  .genre-card:hover {
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  }

  .discord-btn:hover {
    background: #5865f2;
    transform: none;
    box-shadow: 0 8px 22px rgba(88,101,242,0.32);
  }

  .reco-top10-button:hover { transform: none; background: #7c3aed; }
  .reco-latest-button:hover { transform: none; background: rgba(124,58,237,0.2); }
  .catalogue-button:hover { background: #2b2535; }
  .premium-banner__btn:hover { background: #fff; }

  .hero-button:active        { transform: scale(0.97); transition: transform 0.1s ease; }
  .genre-card:active         { transform: scale(0.96); transition: transform 0.1s ease; }
  .discord-btn:active        { transform: scale(0.97); transition: transform 0.1s ease; }
  .reco-card-action-btn:active { transform: scale(0.94); transition: transform 0.1s ease; }
  .catalogue-button:active   { transform: scale(0.97); transition: transform 0.1s ease; }
  .premium-banner__btn:active { transform: scale(0.97); transition: transform 0.1s ease; }

  .reco-track {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    cursor: default;
  }

  .reco-card { scroll-snap-align: start; }
  .reco-card-media { cursor: pointer; }
}

@media print {

  .hero,
  .premium-banner,
  .discord-section,
  .reco-arrow,
  #dynamic-bg,
  .hero-gradient { display: none !important; }

  body { background: white; color: black; }

  .page-content { width: 100%; max-width: 100%; }
}