:root {
  --black: #050505;
  --blue: #5c7ce6;
  --white: #ffffff;
  --text: #161616;
  --muted: #6f6f6f;
  --line: #e6e6e6;
  --soft: #f6f6f6;
  --primary-rgb: 92, 124, 230;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-placeholder {
  width: 110px;
  height: 46px;
  border: 2px dashed rgba(255,255,255,.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
}
.main-nav a { white-space: nowrap; }
.main-nav i { font-size: 12px; margin-left: 4px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 19px;
}
.header-actions a { color: var(--blue); }

.dedication-bar {
  background: var(--blue);
  color: var(--white);
}

.dedication-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.dedication-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.dedication-feed {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 0;
}

.dedication-track {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  flex: 0 0 auto;
  padding-right: 14px;
  animation: ticker 28s linear infinite;
}

.dedication-feed:hover .dedication-track,
.dedication-feed.is-paused .dedication-track {
  animation-play-state: paused;
}

.dedication-item { font-weight: 500; }
.sep { opacity: .8; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.hero {
  position: relative;
  min-height: 540px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.60);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 540px;
  padding: 56px 0 155px;
}

.hero-main {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
}

.cover-wrap {
  width: 182px;
  height: 182px;
  border: 4px solid var(--white);
  overflow: hidden;
  border-radius: 16px;
  flex: 0 0 auto;
  background: #ddd;
}
.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-badge {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-text h1,
.hero-text h2 {
  margin: 0;
  line-height: .95;
}

.hero-text h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
}

.hero-text h2 {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}
.hero-meta i { margin-right: 8px; }

.now-playing-band {
  position: relative;
  margin-top: -86px;
  z-index: 3;
}

.now-playing-band .container {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px 24px 26px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
}

.section-head a {
  color: var(--blue);
  font-weight: 700;
}

.tracks-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.track-card {
  border: 1px solid #dcdcdc;
  background: var(--white);
  padding: 12px;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.track-card:hover {
  transform: translateY(-3px);
  border-color: #d8d8d8;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.track-cover {
  position: relative;
  overflow: hidden;
  background: #efefef;
  margin-bottom: 14px;
  border: 1px solid #e3e3e3;
}

.track-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-rgb), 0.08);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.track-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.track-card:hover .track-cover img {
  transform: scale(1.06);
}

.track-card:hover .track-cover::after {
  opacity: 1;
}

.track-time {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.78);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 8px;
}

.track-text strong,
.track-text span {
  display: block;
}

.track-text strong {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.track-text span {
  color: var(--muted);
  font-size: 14px;
}

.site-main {
  background: var(--white);
  padding: 48px 0 0;
}

.content-section {
  padding: 0 0 72px;
}

.section-head-dark h3 { color: var(--text); }

.news-layout {
  display: grid;
  grid-template-columns: 1.5fr .95fr;
  gap: 24px;
}

.news-featured,
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.news-media,
.news-card-media {
  overflow: hidden;
  position: relative;
}

.news-media img,
.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-featured:hover .news-media img,
.news-card:hover .news-card-media img {
  transform: scale(1.06);
}

.news-media {
  min-height: 345px;
}

.news-tags {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-tag,
.article-cat {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.news-content,
.news-card-content {
  padding: 22px;
}

.news-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.news-meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-meta i { margin-right: 8px; }

.news-content h3,
.news-card-content h4 {
  margin: 0;
  line-height: 1.2;
}

.news-content h3 {
  font-size: 34px;
  margin-bottom: 14px;
}

.news-content p {
  margin: 0 0 18px;
  color: #4f4f4f;
  line-height: 1.65;
}

.news-link {
  color: var(--blue);
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 170px 1fr;
}

.news-card-media { min-height: 100%; }
.news-card-content h4 { font-size: 21px; }

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 30px 0;
}

.footer-inner-centered {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 1150px) {
  .main-nav { gap: 20px; font-size: 14px; }
  .tracks-row { grid-template-columns: repeat(2, 1fr); }
  .news-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content {
    padding: 44px 0 155px;
  }

  .hero-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .cover-wrap {
    width: 156px;
    height: 156px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .dedication-inner {
    gap: 16px;
  }

  .dedication-title {
    font-size: 14px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tracks-row {
    grid-template-columns: 1fr;
  }

  .hero-text h1 { font-size: 32px; }
  .hero-text h2 { font-size: 36px; }
  .news-content h3 { font-size: 28px; }
}
