/* HERO — big tile with huge title */
.hero {
  padding: 44px 40px;
  text-align: center;
}
.hero__title {
  font-weight: 900;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero__subtitle {
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 20px);
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-pill {
  padding: 14px 38px;
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 15px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  border-radius: 999px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-pill:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

/* Section label */
.section-label {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

/* Shows */
.shows-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.shows-grid__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) {
  .shows-grid__row { grid-template-columns: 1fr; }
}

.show-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform 0.3s;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.show-card--wide { min-height: 230px; }
.show-card:hover { transform: translateY(-3px); }

.show-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.show-card__inner {
  position: relative;
  z-index: 2;
  padding: 32px 24px;
  width: 100%;
}
.show-card__title {
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}
.show-card__desc {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  margin-bottom: 18px;
}
.show-card__btn {
  display: inline-block;
  padding: 9px 26px;
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 13px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s;
}
.show-card__btn:hover { background: rgba(255,255,255,0.35); }

/* Bottom row: now playing + moods */
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 22px;
}
@media (max-width: 900px) {
  .bottom-grid { grid-template-columns: 1fr; }
}

/* Now playing card */
.now-playing {
  padding: 22px;
}
.now-playing__header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.now-playing__cover {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #b8c5d9, #6b7d99);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.3);
}
.now-playing__cover img { width: 100%; height: 100%; object-fit: cover; }
.now-playing__title {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
}
.now-playing__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.now-playing__item {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Moods cards */
.moods-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.moods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 600px) {
  .moods-grid { grid-template-columns: 1fr; }
}

.mood-card {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mood-card:hover { transform: translateY(-3px); }
.mood-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.mood-card__name {
  position: relative;
  z-index: 2;
  padding: 0 12px 18px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  text-align: center;
}