:root {
  --bg: #151111;
  --bg-2: #1e181f;
  --black: #120f10;
  --white: #ffffff;
  --muted: #c9c5cc;
  --green: #20c45a;
  --green-2: #62ff95;
  --purple: #8432d0;
  --purple-2: #b164ff;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(18, 15, 16, 0.76);
  --shadow-green: 0 0 28px rgba(32, 196, 90, 0.35);
  --shadow-purple: 0 0 28px rgba(132, 50, 208, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(32, 196, 90, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(132, 50, 208, 0.22), transparent 34%),
    linear-gradient(180deg, #151111 0%, #0d0b0c 100%);
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: 104px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 28%, rgba(255,255,255,0.06), transparent 38%);
  opacity: 0.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.section-title span,
.gradient-text {
  background: linear-gradient(90deg, var(--green-2), var(--purple-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
}

.eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-2);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--purple));
  border-radius: 99px;
}

.ad-container {
  position: relative;
}

.ad-container-top {
  margin-top: 112px;
  margin-bottom: -54px;
}

.ad-container-section {
  margin-top: 44px;
}

.ad-container-inline {
  margin-bottom: 14px;
}

.ad-slot {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.ad-slot:empty {
  min-height: 0;
  border: 0;
  background: transparent;
}

.ad-slot:not(:empty)::before {
  content: "Publicidade";
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.ad-slot-horizontal:not(:empty) {
  min-height: 90px;
}

.ad-slot-rectangle:not(:empty) {
  min-height: 250px;
}

.ad-slot ins {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--purple));
  box-shadow: var(--shadow-green), var(--shadow-purple);
  color: var(--white);
}

.btn-outline {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--green-2);
  box-shadow: var(--shadow-green);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(10, 8, 9, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--purple), transparent);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 22px rgba(32,196,90,0.2);
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-name small {
  margin-top: 4px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  color: var(--green-2);
  letter-spacing: 0.17em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--green-2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 150px 0 96px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 22px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 16px var(--green-2);
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: 0.45; }
}

.hero h1 {
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 22px;
}

.hero h2 {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 660px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(92vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(32,196,90,0.16) 0 16%, transparent 17%),
    repeating-radial-gradient(circle, rgba(255,255,255,0.08) 0 2px, transparent 3px 18px);
  opacity: 0.65;
  animation: rotate 28s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo-card {
  width: min(76vw, 430px);
  aspect-ratio: 1;
  border-radius: 44px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
    rgba(18,15,16,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 80px rgba(32,196,90,0.20), 0 0 90px rgba(132,50,208,0.26);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hero-logo-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(32,196,90,0.7), transparent 36%, rgba(132,50,208,0.72));
  z-index: -1;
}

.hero-logo-card img {
  width: 76%;
  filter: drop-shadow(0 0 18px rgba(32,196,90,0.32));
}

.floating-badge {
  position: absolute;
  right: 14px;
  bottom: 50px;
  max-width: 220px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(18,15,16,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-purple);
  backdrop-filter: blur(14px);
}

.floating-badge strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  color: var(--green-2);
  margin-bottom: 6px;
}

.floating-badge small {
  color: var(--muted);
  line-height: 1.5;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  min-height: 230px;
}

.card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,196,90,0.34), transparent 70%);
}

.card:nth-child(even)::before {
  background: radial-gradient(circle, rgba(132,50,208,0.38), transparent 70%);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--green-2);
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* Schedule */
.schedule-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: start;
  margin-top: 44px;
}

.image-frame {
  min-height: 520px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(135deg, rgba(32,196,90,0.10), rgba(132,50,208,0.12)),
    rgba(255,255,255,0.035);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.38)),
    linear-gradient(135deg, rgba(32,196,90,0.20), transparent 38%, rgba(132,50,208,0.20));
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.schedule-list {
  display: grid;
  gap: 14px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.schedule-time {
  font-family: "Orbitron", sans-serif;
  color: var(--green-2);
  font-size: 0.86rem;
  line-height: 1.5;
}

.schedule-item h3 {
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.schedule-item p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

/* Request music */
.request-box {
  border-radius: 36px;
  padding: clamp(32px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(32,196,90,0.22), rgba(132,50,208,0.26)),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-green), var(--shadow-purple);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  position: relative;
}

.request-box::after {
  content: "70s • 80s • 90s";
  position: absolute;
  right: -24px;
  bottom: -8px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.6rem, 8vw, 7rem);
  color: rgba(255,255,255,0.045);
  font-weight: 800;
  white-space: nowrap;
}

.request-box h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

.request-box p {
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  line-height: 1.75;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  line-height: 1.85;
  margin-top: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--green-2);
  margin-bottom: 6px;
}

.stat small {
  color: var(--muted);
  line-height: 1.4;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.gallery-item {
  min-height: 260px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(135deg, rgba(32,196,90,0.10), rgba(132,50,208,0.12)),
    rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(0,0,0,0.24);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.72)),
    linear-gradient(135deg, rgba(32,196,90,0.18), transparent 42%, rgba(132,50,208,0.18));
}

.gallery-item::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 20px 20px 20px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 34px;
  z-index: 2;
}

.gallery-caption strong {
  color: var(--white);
  display: block;
  font-size: 1.08rem;
  line-height: 1.25;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 42px;
}

.contact-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.contact-card h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.contact-list i {
  color: var(--green-2);
  width: 22px;
}

/* Informational links */
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.info-link {
  min-height: 220px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid;
  align-content: start;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-link:hover {
  transform: translateY(-3px);
  border-color: rgba(98,255,149,0.34);
  box-shadow: var(--shadow-green);
}

.info-link i {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.07);
  color: var(--green-2);
  font-size: 1.25rem;
}

.info-link strong {
  font-size: 1.1rem;
  line-height: 1.25;
}

.info-link span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: var(--white);
  border-radius: 16px;
  padding: 16px;
  font-family: inherit;
  outline: none;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(32,196,90,0.12);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */
.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-copy {
  display: grid;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--green-2);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--white);
}

.footer-social a:hover {
  color: var(--green-2);
  box-shadow: var(--shadow-green);
}

/* Fixed player */
.audio-player {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 70;
  width: min(calc(100% - 30px), 1040px);
  min-height: 74px;
  border-radius: 999px;
  background: rgba(12,10,11,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 42px rgba(32,196,90,0.18), 0 0 46px rgba(132,50,208,0.18);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--green), var(--purple));
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-green);
}

.player-info {
  min-width: 0;
}

.player-info strong {
  display: block;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-info small {
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-top: 3px;
}

.visualizer {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
  margin-left: auto;
}

.visualizer span {
  width: 4px;
  height: 8px;
  background: linear-gradient(180deg, var(--green-2), var(--purple-2));
  border-radius: 99px;
  animation: bars 1s ease-in-out infinite;
}

.visualizer span:nth-child(2) { animation-delay: 0.1s; }
.visualizer span:nth-child(3) { animation-delay: 0.2s; }
.visualizer span:nth-child(4) { animation-delay: 0.3s; }
.visualizer span:nth-child(5) { animation-delay: 0.4s; }

@keyframes bars {
  0%, 100% { height: 8px; }
  50% { height: 26px; }
}

.player-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-action {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--white);
}

.mini-action:hover {
  color: var(--green-2);
  border-color: rgba(98,255,149,0.42);
}

.audio-el {
  display: none;
}

/* Internal pages */
.page-main {
  padding-top: 82px;
}

.page-hero {
  padding: 86px 0 46px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.content-card,
.side-card {
  border-radius: 26px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.content-card {
  padding: clamp(26px, 5vw, 52px);
}

.content-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 34px 0 14px;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  font-size: 1.25rem;
  margin: 26px 0 10px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.85;
}

.content-card p + p,
.content-card ul + p,
.content-card ol + p {
  margin-top: 16px;
}

.content-card ul,
.content-card ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 14px 0 18px;
}

.content-card a {
  color: var(--green-2);
  font-weight: 700;
}

.side-card {
  padding: 24px;
  position: sticky;
  top: 106px;
}

.side-card h2,
.side-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.side-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.side-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.side-links a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.84);
  font-weight: 700;
  font-size: 0.9rem;
}

.side-links a:hover {
  color: var(--green-2);
}

.meta-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    height: 74px;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(12,10,11,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a,
  .nav-menu .btn {
    justify-content: center;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .schedule-wrap,
  .about-grid,
  .contact-grid,
  .request-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 124px;
  }

  .ad-container-top {
    margin-top: 104px;
    margin-bottom: -42px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 126px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand-name strong {
    font-size: 0.9rem;
  }

  .brand-name small {
    font-size: 0.58rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .section {
    padding: 70px 0;
  }

  .ad-container-top {
    margin-top: 96px;
    margin-bottom: -34px;
  }

  .ad-container-section {
    margin-top: 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .cards-grid,
  .gallery-grid,
  .link-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    grid-template-columns: 1fr;
  }

  .image-frame {
    min-height: 360px;
  }

  .gallery-item {
    min-height: 320px;
  }

  .audio-player {
    grid-template-columns: auto 1fr;
    border-radius: 28px;
  }

  .player-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .visualizer {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: left;
  }

  .footer-social {
    align-self: center;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .page-main {
    padding-top: 74px;
  }

  .page-hero {
    padding-top: 58px;
  }
}
