/* Homepage — bands.ge redesign
   Motion uses transform/opacity only; respects prefers-reduced-motion */

:root {
  --home-bg: #0a0a0a;
  --home-bg-2: #141414;
  --home-surface: #1a1a1a;
  --home-surface-2: #222;
  --home-yellow: #ffc107;
  --home-yellow-hot: #ffd54f;
  --home-text: #ffffff;
  --home-muted: #a3a3a3;
  --home-light: #f5f5f5;
  --home-radius: 12px;
  --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Full-bleed main */
body.page-home {
  background: var(--home-bg);
}
body.page-home .home-main {
  max-width: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* ---------- Navbar (homepage) ---------- */
body.page-home .site-navbar {
  background: rgba(10, 10, 10, 0.72) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
}
html[data-theme="dark"] body.page-home .site-navbar,
html[data-theme="dark"] body.page-home .navbar {
  background: rgba(10, 10, 10, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
body.page-home .site-navbar .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 500;
  position: relative;
  padding-inline: 0.65rem;
}
body.page-home .site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--home-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--home-ease);
}
body.page-home .site-navbar .nav-link:hover::after,
body.page-home .site-navbar .nav-link:focus-visible::after {
  transform: scaleX(1);
}
body.page-home .site-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}
body.page-home .site-navbar .navbar-toggler-icon {
  filter: invert(1);
}
body.page-home .site-brand-mark {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
body.page-home .brand-mark-dot {
  color: #fff;
}
body.page-home .lang-flag-btn {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  background: transparent !important;
}
body.page-home .lang-flag-btn.active {
  border-color: var(--home-yellow) !important;
  background: rgba(255, 193, 7, 0.12) !important;
}
body.page-home .nav-search-btn {
  color: #fff !important;
}
body.page-home .site-navbar .fa-comments,
body.page-home .site-navbar .fa-bell,
body.page-home .site-navbar .fa-moon,
body.page-home .site-navbar .fa-sun {
  color: #fff !important;
}

/* Brand + auth CTA (all pages) */
.site-brand-mark {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
.brand-mark-text {
  white-space: nowrap;
}
.btn-auth-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--home-yellow, #ffc107);
  color: #111 !important;
  font-weight: 700;
  border: 0;
  border-radius: 10px;
  padding: 0.45rem 0.9rem;
  text-decoration: none !important;
  transition: transform 0.2s var(--home-ease, ease), box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-auth-cta:hover {
  background: var(--home-yellow-hot, #ffd54f);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
  color: #111 !important;
}
.nav-new-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--home-yellow, #ffc107);
  color: #111;
  vertical-align: middle;
  line-height: 1.3;
}

/* ---------- Hero ---------- */
.home-hero {
  position: relative;
  overflow: hidden;
  color: var(--home-text);
  padding: 1.75rem 0 2.25rem;
  min-height: 0;
  display: flex;
  align-items: center;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 160, 40, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255, 193, 7, 0.08), transparent 50%),
    linear-gradient(160deg, #050505 0%, #121212 45%, #1a1208 100%);
  transform: scale(1.02);
  animation: homeHeroDrift 18s ease-in-out infinite alternate;
}
.home-hero__bg::after {
  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: 48px 48px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.home-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.home-hero__inner {
  position: relative;
  z-index: 1;
}
.home-hero__title {
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: #fff;
}
.home-accent {
  color: var(--home-yellow);
}
.home-hero__lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.home-search {
  margin-bottom: 0.65rem;
}
.home-search__bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.28rem 0.28rem 0.28rem 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.home-search__bar:focus-within {
  border-color: rgba(255, 193, 7, 0.55);
  background: rgba(255, 255, 255, 0.11);
}
.home-search__bar > i {
  color: var(--home-muted);
  flex: 0 0 auto;
}
.home-search__bar input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.55rem 0;
}
.home-search__bar input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.home-search__go {
  flex: 0 0 auto;
  appearance: none;
  border: 0;
  background: var(--home-yellow);
  color: #111 !important;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 11px;
  padding: 0.65rem 1.15rem;
  min-height: 42px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s var(--home-ease);
}
.home-search__go:hover {
  background: var(--home-yellow-hot);
  transform: translateY(-1px);
  color: #111 !important;
}
html[data-theme="dark"] body.page-home .home-search__go,
html[data-theme="dark"] body.page-home .home-search__go *,
body[data-theme="dark"].page-home .home-search__go,
body[data-theme="dark"].page-home .home-search__go * {
  color: #111 !important;
}
.home-profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.55rem 0.95rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--home-ease);
}
.home-profile-btn i {
  color: var(--home-yellow) !important;
  font-size: 0.85rem;
}
.home-profile-btn:hover {
  border-color: rgba(255, 193, 7, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  transform: translateY(-1px);
}
.home-btn-primary {
  background: var(--home-yellow);
  color: #111 !important;
  font-weight: 700;
  border: 0;
  border-radius: 10px;
  padding: 0.55rem 1rem;
  transition: transform 0.2s var(--home-ease), box-shadow 0.2s ease, background 0.2s ease;
}
.home-btn-primary:hover {
  background: var(--home-yellow-hot);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255, 193, 7, 0.35);
  color: #111 !important;
}
.home-btn-lg {
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}
.home-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s var(--home-ease), border-color 0.2s ease, background 0.2s ease;
}
.home-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--home-yellow);
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

.home-hero-panel {
  background: rgba(18, 18, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.home-hero-panel__item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.home-hero-panel__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.12);
  color: var(--home-yellow);
}
.home-hero-panel__item strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}
.home-hero-panel__item span {
  color: var(--home-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Hero ads carousel (replaces info panel when ads exist) */
.home-hero-ads {
  position: relative;
  background: rgba(18, 18, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  min-height: 0;
}
.home-hero-ads__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  max-height: 280px;
  min-height: 200px;
  overflow: hidden;
  background: #0d0d0d;
}
.home-hero-ads__track {
  position: absolute;
  inset: 0;
}
.home-hero-ads__slide {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none !important;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 0.9s ease, visibility 0.7s;
  z-index: 1;
}
.home-hero-ads__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}
.home-hero-ads__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-hero-ads__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 2.4rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.82) 78%);
  color: #fff;
  pointer-events: none;
}
.home-hero-ads__caption strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff !important;
  margin-bottom: 0.2rem;
}
.home-hero-ads__caption span {
  display: inline-block;
  color: var(--home-yellow) !important;
  font-weight: 750;
  font-size: 0.92rem;
}
.home-hero-ads__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  pointer-events: none;
}
.home-hero-ads__dot {
  pointer-events: auto;
  appearance: none;
  border: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, width .2s ease;
}
.home-hero-ads__dot.is-active {
  background: var(--home-yellow);
  width: 18px;
}
.home-hero-ads__dot:hover { background: rgba(255,255,255,.7); }

@media (max-width: 991.98px) {
  .home-hero-ads { min-height: 0; margin-top: 0.25rem; }
  .home-hero-ads__viewport {
    aspect-ratio: 16 / 9;
    max-height: 220px;
    min-height: 160px;
  }
}

/* ---------- Category cards (primary navigation — most prominent) ---------- */
.home-cats {
  background: var(--home-bg);
  padding: 0 0 1rem;
  margin-top: -0.75rem;
  position: relative;
  z-index: 3;
}
.home-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}
.home-cat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 78px;
  height: auto;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff !important;
  border: 1px solid rgba(255, 193, 7, 0.28);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 193, 7, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.28s var(--home-ease), box-shadow 0.28s ease, border-color 0.28s ease;
}
.home-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform 0.45s var(--home-ease);
  background: linear-gradient(135deg, #1b1b1b, #2a2a2a);
}
.home-cat--musicians::before {
  background:
    radial-gradient(circle at 88% 35%, rgba(255, 193, 7, 0.42), transparent 52%),
    linear-gradient(145deg, #241a08, #101010 62%);
}
.home-cat--bands::before {
  background:
    radial-gradient(circle at 88% 35%, rgba(255, 160, 40, 0.36), transparent 52%),
    linear-gradient(145deg, #22160c, #101010 62%);
}
.home-cat--rooms::before {
  background:
    radial-gradient(circle at 88% 35%, rgba(255, 200, 60, 0.34), transparent 52%),
    linear-gradient(145deg, #1e180a, #101010 62%);
}
.home-cat--studios::before {
  background:
    radial-gradient(circle at 88% 35%, rgba(255, 180, 30, 0.38), transparent 52%),
    linear-gradient(145deg, #20160a, #101010 62%);
}
.home-cat:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 193, 7, 0.65);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(255, 193, 7, 0.18);
}
.home-cat:hover::before {
  transform: scale(1.05);
}
.home-cat__body,
.home-cat__icon,
.home-cat__go {
  position: relative;
  z-index: 1;
}
.home-cat__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #111 !important;
  background: var(--home-yellow);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}
.home-cat__body {
  flex: 1;
  min-width: 0;
  padding-right: 0.15rem;
}
.home-cat h3 {
  font-size: 0.98rem;
  font-weight: 800;
  margin: 0 0 0.12rem;
  color: #fff !important;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.home-cat p {
  margin: 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.68) !important;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-cat__go {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--home-yellow);
  color: #111 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: transform 0.25s var(--home-ease);
  box-shadow: 0 3px 10px rgba(255, 193, 7, 0.28);
}
.home-cat:hover .home-cat__go {
  transform: translateX(4px) scale(1.08);
}

/* ---------- Tools ---------- */
.home-tools {
  background: var(--home-bg);
  padding: 0.35rem 0 0;
}
.home-tools__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  padding-bottom: 0.15rem;
}
.home-tools__label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-right: 0.35rem;
  font-size: 0.88rem;
}
.home-tool {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.2s var(--home-ease), border-color 0.2s ease, background 0.2s ease;
}
.home-tool i {
  color: var(--home-yellow);
}
.home-tool:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 193, 7, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

/* ---------- Feed section ---------- */
.home-feed {
  background: var(--home-bg);
  padding: 0.65rem 0 2rem;
  color: #fff;
}
.home-feed__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.95fr) minmax(200px, 0.68fr);
  gap: 0.75rem;
  align-items: start;
}
.home-feed__side {
  display: contents; /* children participate in parent grid: rooms | stats */
}
.home-panel {
  background: var(--home-surface);
  border-radius: 14px;
  padding: 0.8rem 0.85rem 0.9rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  color: #fff;
}
.home-panel--bands {
  grid-column: 1;
  grid-row: 1;
}
.home-panel--rooms {
  grid-column: 2;
  grid-row: 1;
}
.home-stats {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  background: #141414;
  color: #fff;
  border-radius: 14px;
  padding: 0.8rem 0.75rem 0.85rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: auto;
  display: flex;
  flex-direction: column;
}
.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}
.home-section-head h2 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
  color: #fff !important;
  line-height: 1.25;
}
.home-panel--rooms .home-section-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.home-panel--rooms .home-section-head h2 {
  font-size: 0.98rem;
}
.home-see-all {
  color: var(--home-yellow) !important;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 0.86rem;
  white-space: nowrap;
}
.home-see-all:hover {
  color: var(--home-yellow-hot) !important;
}
.home-bands {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}
.home-band-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  width: 100%;
  text-decoration: none !important;
  color: #fff !important;
  background: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.28s var(--home-ease), box-shadow 0.28s ease;
}
.home-band-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
.home-band-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--home-ease);
}
.home-band-card:hover > img {
  transform: scale(1.06);
}
.home-band-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}
.home-band-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.7rem 0.75rem;
  z-index: 1;
}
.home-band-card__meta strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-weight: 800;
}
.home-band-card__meta span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-rooms {
  display: flex;
  flex-direction: column;
}
.home-room-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  border-radius: 0;
  text-decoration: none !important;
  color: #fff !important;
  transition: background 0.2s ease, transform 0.2s var(--home-ease);
}
.home-room-row:last-child {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}
.home-room-row:first-child {
  padding-top: 0.15rem;
}
.home-room-row:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
}
.home-room-row__thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 48px;
  background: #222;
}
.home-room-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--home-ease);
}
.home-room-row:hover .home-room-row__thumb img {
  transform: scale(1.08);
}
.home-room-row__body {
  flex: 1;
  min-width: 0;
}
.home-room-row__body strong {
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff !important;
}
.home-room-row__body span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5) !important;
}
.home-room-row__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: #fff !important;
  white-space: nowrap;
}
.home-room-row__rating i {
  color: var(--home-yellow);
  font-size: 0.78rem;
}
.home-room-row__chev {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
}

.home-stats__title {
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0 0 0.55rem;
  color: #fff !important;
  line-height: 1.25;
  text-align: left;
}
.home-stats__grid {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 0 0 auto;
  align-content: stretch;
}
.home-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0.05rem;
  align-items: center;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}
.home-stat__icon {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.14);
  color: var(--home-yellow) !important;
  margin: 0;
  font-size: 0.8rem;
}
.home-stat__num {
  grid-column: 2;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--home-yellow) !important;
  line-height: 1.1;
  text-align: left;
}
.home-stat__label {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.72rem;
  line-height: 1.2;
  text-align: left;
}

.home-empty {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 0.9rem;
}

/* ---------- Footer (homepage) ---------- */
.site-footer--home {
  background: #000;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0;
}
.footer-logo-mark {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}
.footer-logo-mark span {
  color: #fff;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 18rem;
  line-height: 1.5;
}
.footer-copy,
.footer-visits {
  color: rgba(255, 255, 255, 0.4);
}
.footer-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--home-yellow) !important;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  transition: transform 0.2s var(--home-ease), background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: var(--home-yellow);
  color: #111 !important;
}
.footer-email {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
}
.footer-email:hover {
  color: var(--home-yellow) !important;
}
.footer-news .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 10px;
}
.footer-news .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-news-btn {
  background: var(--home-yellow);
  color: #111;
  border-radius: 10px;
  width: 44px;
  flex: 0 0 44px;
  transition: transform 0.2s var(--home-ease), background 0.2s ease;
}
.footer-news-btn:hover {
  background: var(--home-yellow-hot);
  transform: scale(1.05);
  color: #111;
}

/* ---------- Reveal animations ---------- */
.home-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--home-ease), transform 0.55s var(--home-ease);
  will-change: opacity, transform;
}
.home-reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@keyframes homeFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes homeHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .home-feed__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.9fr) minmax(200px, 0.7fr);
  }
}
@media (max-width: 991.98px) {
  .home-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-cat {
    height: auto;
    min-height: 72px;
    padding: 0.65rem 0.8rem;
  }
  .home-cat h3 { font-size: 0.92rem; }
  .home-cat p { white-space: normal; }
  .home-hero {
    padding-top: 2.5rem;
    min-height: 0;
  }
  .home-feed__grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-panel--bands {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .home-panel--rooms {
    grid-column: 1;
    grid-row: auto;
  }
  .home-stats {
    grid-column: 2;
    grid-row: auto;
    height: auto;
  }
  .home-bands {
    display: flex;
    overflow-x: auto;
    gap: 0.65rem;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }
  .home-band-card {
    flex: 0 0 118px;
    width: 118px;
    aspect-ratio: 3 / 4;
    height: auto;
  }
  body.page-home .site-nav-links {
    padding: 0.75rem 0;
  }
  body.page-home .navbar-collapse {
    background: rgba(10, 10, 10, 0.96);
    border-radius: 12px;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .home-search__bar {
    padding-left: 0.75rem;
  }
  .home-search__go {
    padding: 0.6rem 0.9rem;
    font-size: 0.86rem;
  }
  .home-profile-btn {
    width: auto;
    max-width: 100%;
  }
  .home-cats__grid {
    grid-template-columns: 1fr;
  }
  .home-cat {
    height: auto;
    min-height: 70px;
  }
  .home-feed__grid {
    grid-template-columns: 1fr;
  }
  .home-panel--bands,
  .home-panel--rooms,
  .home-stats {
    grid-column: 1;
  }
  .home-band-card {
    flex: 0 0 108px;
    width: 108px;
  }
  .home-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-hero__title {
    font-size: 1.75rem;
  }
  .btn-auth-cta span {
    display: none;
  }
  .btn-auth-cta {
    padding: 0.5rem 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-reveal,
  .home-band-card,
  .home-cat,
  .home-room-row,
  .home-btn-primary,
  .btn-auth-cta,
  .home-band-card__media img,
  .home-room-row__thumb img {
    transition: none !important;
    animation: none !important;
  }
  .home-reveal {
    opacity: 1;
    transform: none;
  }
  .home-hero__bg {
    animation: none;
  }
}

/* Keep dark text on yellow category accents under global dark-theme * override */
html[data-theme="dark"] body.page-home .home-cat__icon,
html[data-theme="dark"] body.page-home .home-cat__icon *,
html[data-theme="dark"] body.page-home .home-cat__go,
html[data-theme="dark"] body.page-home .home-cat__go *,
body[data-theme="dark"].page-home .home-cat__icon,
body[data-theme="dark"].page-home .home-cat__icon *,
body[data-theme="dark"].page-home .home-cat__go,
body[data-theme="dark"].page-home .home-cat__go * {
  color: #111 !important;
}
html[data-theme="dark"] body.page-home .home-feed,
html[data-theme="dark"] body.page-home .home-tools,
html[data-theme="dark"] body.page-home .home-panel,
html[data-theme="dark"] body.page-home .home-section-head h2,
html[data-theme="dark"] body.page-home .home-room-row,
html[data-theme="dark"] body.page-home .home-room-row strong {
  color: #fff !important;
}
html[data-theme="dark"] body.page-home .home-tools__label {
  color: rgba(255, 255, 255, 0.55) !important;
}
html[data-theme="dark"] body.page-home .home-tool {
  color: rgba(255, 255, 255, 0.82) !important;
}
html[data-theme="dark"] body.page-home .home-room-row__body span {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================================
   Homepage v8 — distinct sections (cover hero, gateways, etc.)
   ============================================================ */

.home-hero--cover {
  min-height: min(88vh, 720px);
  padding: 4.5rem 0 5rem;
  align-items: center;
}
.home-hero__cover {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-image:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(255, 160, 40, 0.2), transparent 55%),
    linear-gradient(160deg, #050505 0%, #121212 50%, #1a1208 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: homeHeroDrift 22s ease-in-out infinite alternate;
}
.home-hero__cover[style*="--home-cover"] {
  background-image:
    linear-gradient(105deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0.35) 100%),
    var(--home-cover);
}
.home-hero--cover .home-hero__veil {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
.home-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.95fr);
  gap: 2rem 2.5rem;
  align-items: center;
}
.home-hero--cover .home-hero__copy {
  max-width: 40rem;
  padding-bottom: 0.5rem;
}
.home-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-yellow);
}
.home-hero--cover .home-hero__title {
  font-size: clamp(2.15rem, 5.2vw, 3.55rem);
  margin-bottom: 1rem;
}
.home-hero--cover .home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.78);
}
.home-hero--cover .home-search {
  margin-bottom: 0.9rem;
}
.home-hero--cover .home-search__bar {
  max-width: 34rem;
  padding: 0.4rem 0.4rem 0.4rem 1.1rem;
  background: rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.home-hero--cover .home-search__bar input {
  font-size: 1rem;
  padding: 0.7rem 0;
}
.home-hero--cover .home-search__go {
  padding: 0.75rem 1.35rem;
  min-height: 48px;
}

/* Section chrome */
.home-section-intro {
  margin-bottom: 1.35rem;
}
.home-section-intro h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.home-section-intro p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}
.home-section-intro--hero {
  margin-bottom: 0.85rem;
}
.home-section-intro--hero h2 {
  font-size: 1.15rem;
}
.home-section-intro--hero p {
  font-size: 0.85rem;
}
.home-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.home-section-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.home-section-head h2 i {
  color: var(--home-yellow);
  font-size: 0.9em;
}
.home-see-all {
  color: var(--home-yellow) !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none !important;
  white-space: nowrap;
}
.home-see-all:hover {
  color: var(--home-yellow-hot) !important;
}
.home-section-head__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  justify-content: flex-end;
}
.home-ad-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: var(--home-yellow, #ffc107);
  color: #111 !important;
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.home-ad-add-btn i {
  font-size: 0.75rem;
  color: #111 !important;
}
.home-ad-add-btn:hover {
  background: var(--home-yellow-hot, #ffd54f);
  color: #111 !important;
  transform: translateY(-1px);
}
html[data-theme="dark"] .home-ad-add-btn,
html[data-theme="dark"] .home-ad-add-btn *,
body[data-theme="dark"] .home-ad-add-btn,
body[data-theme="dark"] .home-ad-add-btn * {
  color: #111 !important;
}
.home-empty {
  padding: 1.5rem;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 14px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.home-empty--soft {
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

/* Gateways — 4 distinct category cards (2×2 in hero) */
.home-gate {
  padding: 0;
  background: transparent;
}
.home-gate--hero {
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.home-gate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.home-gate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 0;
  padding: 0.95rem 0.9rem 0.85rem;
  border-radius: 16px;
  text-decoration: none !important;
  color: #fff !important;
  overflow: hidden;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  transition: transform 0.25s var(--home-ease), border-color 0.2s ease, box-shadow 0.25s ease;
}
.home-gate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.92;
  z-index: 0;
}
.home-gate-card > * {
  position: relative;
  z-index: 1;
}
.home-gate-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  background: rgba(0,0,0,0.35);
  color: #fff;
}
.home-gate-card strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-gate-card > span:not(.home-gate-card__icon) {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  line-height: 1.35;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-gate-card em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.home-gate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}
.home-gate-card--musicians::before {
  background: linear-gradient(145deg, #1e3a5f 0%, #0d1b2a 100%);
}
.home-gate-card--musicians {
  border-color: rgba(100, 160, 220, 0.35);
}
.home-gate-card--musicians .home-gate-card__icon {
  background: rgba(100, 160, 220, 0.25);
  color: #9ec9f5;
}
.home-gate-card--bands::before {
  background: linear-gradient(145deg, #5c3d00 0%, #1a1200 100%);
}
.home-gate-card--bands {
  border-color: rgba(255, 193, 7, 0.45);
}
.home-gate-card--bands .home-gate-card__icon {
  background: var(--home-yellow);
  color: #111 !important;
}
.home-gate-card--rooms::before {
  background: linear-gradient(145deg, #1a3d32 0%, #0a1612 100%);
}
.home-gate-card--rooms {
  border-color: rgba(80, 200, 160, 0.35);
}
.home-gate-card--rooms .home-gate-card__icon {
  background: rgba(80, 200, 160, 0.22);
  color: #7decc4;
}
.home-gate-card--studios::before {
  background: linear-gradient(145deg, #3d1a3a 0%, #160a15 100%);
}
.home-gate-card--studios {
  border-color: rgba(220, 120, 200, 0.35);
}
.home-gate-card--studios .home-gate-card__icon {
  background: rgba(220, 120, 200, 0.22);
  color: #f0a8e0;
}

/* Spotlight: events + ads */
/* Spotlight replaced by stacked one-line rails */
.home-spotlight {
  padding: 2.25rem 0 1rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}
.home-spotlight__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
  align-items: start;
}
.home-rail {
  padding: 2rem 0 0.5rem;
  background: #0a0a0a;
}
.home-rail--events {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.home-rail--ads {
  padding: 2rem 0 2.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255,193,7,0.08), transparent 50%),
    #0a0a0a;
}
.home-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.home-events-slider {
  position: relative;
}
.home-events-slider__viewport {
  overflow: hidden;
  border-radius: 14px;
}
.home-events-slider__track {
  display: flex;
  gap: 0.85rem;
  transition: transform 0.45s var(--home-ease);
  will-change: transform;
}
.home-events-slider__slide {
  flex: 0 0 calc((100% - 1.7rem) / 3);
  width: calc((100% - 1.7rem) / 3);
  min-width: 0;
}
.home-events-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.home-events-slider__btn {
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.home-events-slider__btn:hover {
  border-color: rgba(255,193,7,0.55);
  background: rgba(255,193,7,0.12);
  color: var(--home-yellow);
}
.home-events-slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.home-events-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.home-events-slider__dot {
  appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}
.home-events-slider__dot.is-active {
  background: var(--home-yellow);
  width: 18px;
}
.home-event-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff !important;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s var(--home-ease), border-color 0.2s ease;
}
.home-event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,193,7,0.4);
}
.home-event-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0d0d0d;
  overflow: hidden;
}
.home-price-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  background: var(--home-yellow);
  color: #111 !important;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.home-event-card__price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--home-yellow);
}
.home-event-card__price i {
  font-size: 0.72rem;
}
.home-event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-event-card__ph {
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(255,255,255,0.25);
  font-size: 1.5rem;
}
.home-event-card__body {
  padding: 0.75rem 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.home-event-card__body time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--home-yellow);
  letter-spacing: 0.02em;
}
.home-event-card__body strong {
  font-size: 0.92rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-ads {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.home-ad-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 88px;
  background: #1a1a1a;
}
.home-ad-card.is-featured {
  min-height: 160px;
}
.home-ad-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
  transition: filter 0.2s ease, transform 0.35s var(--home-ease);
}
.home-ad-card:hover img {
  filter: brightness(0.92);
  transform: scale(1.03);
}
.home-ad-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

/* Ads rail slider — several cards on one line (not like events) */
.home-ads-banner {
  position: relative;
  padding: 0 2.75rem;
}
.home-ads-banner__viewport {
  overflow: hidden;
  border-radius: 4px;
}
.home-ads-banner__track {
  display: flex;
  gap: 0.85rem;
  transition: transform 0.45s var(--home-ease);
  will-change: transform;
}
.home-ads-banner__slide {
  position: relative;
  flex: 0 0 calc((100% - 2.55rem) / 4);
  width: calc((100% - 2.55rem) / 4);
  min-width: 0;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff !important;
  background: #121212;
  border: 1px solid rgba(255,193,7,0.28);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}
.home-ads-banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.84);
  transition: transform 0.45s var(--home-ease), filter 0.25s ease;
}
.home-ads-banner__slide:hover img {
  transform: scale(1.04);
  filter: brightness(0.96);
}
.home-ads-banner__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.5rem 0.75rem 0.7rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.home-ads-banner__caption strong {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}
.home-ads-banner__caption em {
  display: none;
}
.home-ads-banner__caption em.home-ads-banner__price {
  display: inline-flex;
  font-style: normal;
  font-weight: 800;
  font-size: 0.75rem;
  color: #111 !important;
  background: var(--home-yellow);
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.home-ads-banner__slide .home-price-badge {
  left: auto;
  right: 0.55rem;
}
.home-ads-banner__nav {
  appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.home-ads-banner__nav:hover {
  background: rgba(255,193,7,0.95);
  border-color: var(--home-yellow);
  color: #111;
}
.home-ads-banner__nav--prev { left: 0; }
.home-ads-banner__nav--next { right: 0; }
.home-ads-banner__progress {
  margin-top: 0.75rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.home-ads-banner__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--home-yellow);
  border-radius: inherit;
}
.home-ads-banner.is-animating .home-ads-banner__progress span {
  animation: homeAdsProgress linear forwards;
}
@keyframes homeAdsProgress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Featured bands — poster rail */
.home-block {
  padding: 2.5rem 0;
}
.home-block--bands {
  background: #0c0c0c;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.home-bands-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.home-band-poster {
  position: relative;
  flex: 0 0 200px;
  width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none !important;
  color: #fff !important;
  border: 1px solid rgba(255,193,7,0.18);
  transition: transform 0.25s var(--home-ease), border-color 0.2s ease;
}
.home-band-poster:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255,193,7,0.55);
}
.home-band-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-band-poster__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}
.home-band-poster__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.home-band-poster__meta strong {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
}
.home-band-poster__meta span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

/* Popular rooms — horizontal cards */
.home-block--rooms {
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(40, 120, 90, 0.12), transparent 55%),
    #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.home-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.home-room-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 0;
  align-items: stretch;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff !important;
  transition: transform 0.2s var(--home-ease), border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-room-card:hover {
  transform: translateY(-3px);
  border-color: rgba(80, 200, 160, 0.4);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
.home-room-card__media {
  min-height: 110px;
  background: #0d0d0d;
}
.home-room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-room-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.9rem 1rem;
  min-width: 0;
}
.home-room-card__body strong {
  font-size: 1.02rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-room-card__city {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.home-room-card__city i {
  color: #7decc4;
  font-size: 0.75rem;
}
.home-room-card__rating {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--home-yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.home-room-card__cta {
  align-self: center;
  margin-right: 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  background: rgba(80, 200, 160, 0.15);
  color: #7decc4;
  font-weight: 800;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Stats strip */
.home-stats-strip {
  padding: 2.75rem 0;
  background:
    linear-gradient(90deg, rgba(255,193,7,0.12) 0%, transparent 40%),
    linear-gradient(180deg, #14100a 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255,193,7,0.2);
  border-bottom: 1px solid rgba(255,193,7,0.12);
}
.home-stats-strip__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  color: #fff;
}
.home-stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.home-stats-strip__item {
  padding: 1.1rem 1rem;
  border-left: 3px solid var(--home-yellow);
  background: rgba(255,255,255,0.03);
  border-radius: 0 12px 12px 0;
}
.home-stats-strip__item strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--home-yellow);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.home-stats-strip__item span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Tools */
.home-tools {
  padding: 1.5rem 0 3rem;
  background: var(--home-bg);
}
.home-tools__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.home-tools__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-right: 0.35rem;
}
.home-tool {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.home-tool i {
  color: var(--home-yellow);
  font-size: 0.85rem;
}
.home-tool:hover {
  border-color: rgba(255,193,7,0.45);
  background: rgba(255,193,7,0.08);
  color: #fff !important;
}

/* Dark theme overrides for new sections */
html[data-theme="dark"] body.page-home .home-gate-card,
html[data-theme="dark"] body.page-home .home-section-intro h2,
html[data-theme="dark"] body.page-home .home-section-head h2,
html[data-theme="dark"] body.page-home .home-stats-strip__title,
html[data-theme="dark"] body.page-home .home-band-poster,
html[data-theme="dark"] body.page-home .home-room-card,
html[data-theme="dark"] body.page-home .home-event-card {
  color: #fff !important;
}
html[data-theme="dark"] body.page-home .home-price-badge,
html[data-theme="dark"] body.page-home .home-price-badge *,
html[data-theme="dark"] body.page-home .home-ads-banner__price,
html[data-theme="dark"] body.page-home .home-ads-banner__price *,
body[data-theme="dark"].page-home .home-price-badge,
body[data-theme="dark"].page-home .home-price-badge *,
body[data-theme="dark"].page-home .home-ads-banner__price,
body[data-theme="dark"].page-home .home-ads-banner__price * {
  color: #111 !important;
}
html[data-theme="dark"] body.page-home .home-ads-banner__nav:hover,
html[data-theme="dark"] body.page-home .home-ads-banner__nav:hover * {
  color: #111 !important;
}

@media (max-width: 991.98px) {
  .home-hero--cover {
    min-height: 0;
    padding: 3.25rem 0 2.75rem;
    align-items: flex-start;
  }
  .home-hero__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .home-gate--hero {
    max-width: none;
    justify-self: stretch;
  }
  .home-gate__grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-spotlight__grid {
    grid-template-columns: 1fr;
  }
  .home-events-slider__slide {
    flex: 0 0 calc(50% - 0.425rem);
    width: calc(50% - 0.425rem);
  }
  .home-ads-banner {
    padding: 0 2.4rem;
  }
  .home-ads-banner__slide {
    flex: 0 0 calc(50% - 0.425rem);
    width: calc(50% - 0.425rem);
    aspect-ratio: 16 / 10;
    max-height: none;
  }
  .home-rooms-grid {
    grid-template-columns: 1fr;
  }
  .home-stats-strip__grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-band-poster {
    flex: 0 0 168px;
    width: 168px;
  }
}
@media (max-width: 575.98px) {
  .home-hero--cover {
    min-height: 0;
    padding: 2.5rem 0 2.25rem;
    align-items: flex-start;
  }
  .home-hero--cover .home-hero__title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
  .home-gate__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .home-gate-card {
    padding: 0.8rem 0.7rem 0.75rem;
  }
  .home-gate-card__icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
  .home-gate-card strong {
    font-size: 0.88rem;
  }
  .home-gate-card > span:not(.home-gate-card__icon) {
    font-size: 0.72rem;
  }
  .home-gate-card em {
    font-size: 0.7rem;
    margin-top: 0.3rem;
  }
  .home-events {
    grid-template-columns: 1fr;
  }
  .home-events-slider__slide {
    flex-basis: 100%;
    width: 100%;
  }
  .home-ads-banner {
    padding: 0 2.1rem;
  }
  .home-ads-banner__slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: none;
  }
  .home-ads-banner__nav {
    width: 34px;
    height: 34px;
  }
  .home-ads-banner__caption {
    padding: 1.25rem 0.7rem 0.6rem;
  }
  .home-room-card {
    grid-template-columns: 100px 1fr;
  }
  .home-room-card__cta {
    display: none;
  }
  .home-stats-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .home-band-poster {
    flex: 0 0 148px;
    width: 148px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__cover,
  .home-gate-card,
  .home-band-poster,
  .home-room-card,
  .home-event-card,
  .home-ad-card img {
    animation: none !important;
    transition: none !important;
  }
}
