.genres-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 18px 64px;
}
.genres-hero {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 196, 84, .18), transparent 42%),
    linear-gradient(145deg, rgba(18, 28, 42, .95), rgba(10, 16, 26, .98));
  border: 1px solid rgba(255,255,255,.08);
}
.genres-kicker {
  margin: 0 0 8px;
  color: #ffc454;
  font-size: 12px;
  letter-spacing: .08em;
}
.genres-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.25;
}
.genres-hero p { margin: 0; color: rgba(255,255,255,.72); max-width: 52ch; }
.genres-search {
  display: flex;
  gap: 8px;
  max-width: 520px;
}
.genres-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 12px 16px;
}
.genres-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: #ffc454;
  color: #111;
  font-weight: 800;
  cursor: pointer;
}
.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.genres-card {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  padding: 18px;
  border-radius: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.genres-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.28); }
.genres-card strong { font-size: 1.05rem; z-index: 1; }
.genres-card small, .genres-card em { z-index: 1; color: rgba(255,255,255,.78); font-style: normal; font-size: .85rem; }
.genres-card__glow {
  position: absolute;
  inset: auto -20% -30% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  filter: blur(8px);
}
.genres-card--1 { background: linear-gradient(145deg, #6c3ce1, #ff6b6b); }
.genres-card--2 { background: linear-gradient(145deg, #11998e, #38ef7d); }
.genres-card--3 { background: linear-gradient(145deg, #667eea, #764ba2); }
.genres-card--4 { background: linear-gradient(145deg, #f093fb, #f5576c); }
.genres-card--5 { background: linear-gradient(145deg, #4a6fa5, #1a1a2e); }
.genres-card--6 { background: linear-gradient(145deg, #ff9a44, #fc6076); }
.genres-empty {
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
}
@media (max-width: 640px) {
  .genres-page { padding: 18px 14px 48px; }
  .genres-hero { padding: 20px; border-radius: 20px; }
  .genres-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
