:root {
  --bg: #09090d;
  --bg-soft: #101017;
  --surface: rgba(22, 22, 31, 0.78);
  --surface-solid: #171720;
  --line: rgba(255, 255, 255, 0.10);
  --text: #f7f7fb;
  --muted: #a7a7b5;
  --accent: #ff4d00;
  --accent-2: #ffb000;
  --purple: #8c3dff;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(140, 61, 255, 0.12), transparent 27rem),
    radial-gradient(circle at 12% 31%, rgba(255, 77, 0, 0.08), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-shell { width: 100%; max-width: 100%; overflow-x: clip; }
.site-header {
  width: min(calc(100% - 40px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  position: relative;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 35px rgba(255, 77, 0, 0.25);
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px;
}
.brand-bolt {
  position: absolute;
  width: 12px;
  height: 27px;
  background: #fff;
  clip-path: polygon(54% 0, 100% 0, 68% 42%, 100% 42%, 29% 100%, 43% 55%, 12% 55%);
  transform: translateX(-7px);
}
.brand-bars {
  position: absolute;
  right: 8px;
  bottom: 9px;
  display: flex;
  align-items: end;
  gap: 2px;
}
.brand-bars i { width: 2px; background: rgba(255,255,255,.9); border-radius: 4px; }
.brand-bars i:nth-child(1) { height: 8px; }
.brand-bars i:nth-child(2) { height: 14px; }
.brand-bars i:nth-child(3) { height: 10px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: .02em; }
.brand-copy small { margin-top: 5px; color: var(--accent-2); text-transform: uppercase; font-weight: 800; letter-spacing: .28em; font-size: .66rem; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #d4d4dd; text-decoration: none; font-size: .93rem; font-weight: 700; }
.main-nav a:hover, .main-nav a:focus-visible { color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: #fff; }
.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: 690px;
  margin: 0 auto;
  padding: 76px 72px;
  border: 1px solid var(--line);
  border-radius: 34px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(25,25,35,.96), rgba(10,10,15,.90));
  box-shadow: var(--shadow);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 85%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  bottom: -290px;
  border-radius: 50%;
  border: 110px solid rgba(255,255,255,.025);
  z-index: -2;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(65px); z-index: -1; opacity: .75; }
.hero-glow-one { width: 330px; height: 330px; right: 3%; top: 12%; background: rgba(255,77,0,.3); }
.hero-glow-two { width: 230px; height: 230px; right: 18%; bottom: 8%; background: rgba(140,61,255,.22); }
.hero-content { min-width: 0; max-width: 640px; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 26px; height: 2px; margin: 0 8px 3px 0; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: .93;
  letter-spacing: -.065em;
  max-width: 750px;
}
.hero-lead { max-width: 610px; margin-bottom: 34px; color: #c3c3cd; font-size: 1.14rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 850;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(120deg, var(--accent), #ff7200); box-shadow: 0 15px 35px rgba(255,77,0,.22); }
.button-secondary { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); }
.play-mini { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 10px solid #fff; }
.brand-transition { margin: 28px 0 0; color: #777786; font-size: .87rem; }
.hero-visual { min-width: 0; min-height: 470px; display: grid; place-items: center; position: relative; }
.disc-wrap { width: 390px; height: 390px; position: relative; display: grid; place-items: center; }
.disc {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background: repeating-radial-gradient(circle at center, #181821 0 8px, #22222d 9px 11px, #121218 12px 16px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 80px rgba(0,0,0,.55), inset 0 0 70px rgba(255,255,255,.035);
  animation: rotate 18s linear infinite;
}
.disc::after { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.disc-ring { position: absolute; width: 174px; height: 174px; border: 2px solid rgba(255,111,0,.55); border-radius: 50%; box-shadow: 0 0 40px rgba(255,77,0,.28); }
.disc-label {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
  background: linear-gradient(145deg, #ffb000, #ff4300 70%);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.16);
  color: #fff;
  transform: rotate(0deg);
}
.disc-label strong { font-size: 2rem; letter-spacing: -.05em; }
.disc-label span { font-weight: 900; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.sound-lines { position: absolute; right: 3px; bottom: 28px; height: 88px; display: flex; align-items: center; gap: 7px; transform: rotate(-16deg); }
.sound-lines i { width: 5px; border-radius: 8px; background: linear-gradient(to top, var(--accent), var(--accent-2)); box-shadow: 0 0 13px rgba(255,77,0,.35); animation: equalize 1.1s ease-in-out infinite alternate; }
.sound-lines i:nth-child(1), .sound-lines i:nth-child(9) { height: 20px; }
.sound-lines i:nth-child(2), .sound-lines i:nth-child(8) { height: 38px; animation-delay: -.4s; }
.sound-lines i:nth-child(3), .sound-lines i:nth-child(7) { height: 58px; animation-delay: -.2s; }
.sound-lines i:nth-child(4), .sound-lines i:nth-child(6) { height: 78px; animation-delay: -.6s; }
.sound-lines i:nth-child(5) { height: 88px; animation-delay: -.1s; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes equalize { to { transform: scaleY(.45); opacity: .6; } }
.listen-section, .history-section, .about-section, .community-section, .contact-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.listen-section { padding: 125px 0 96px; }
.section-heading { max-width: 720px; margin-bottom: 35px; }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p:last-child, .about-copy p, .contact-section p { color: var(--muted); }
.player-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 116px 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(32,32,44,.96), rgba(18,18,25,.96));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.player-card::before { content: ""; position: absolute; width: 280px; height: 280px; right: 20%; top: -180px; background: rgba(255,77,0,.16); filter: blur(70px); border-radius: 50%; }
.player-art { width: 116px; height: 116px; border-radius: 19px; display: grid; place-items: center; background: linear-gradient(145deg, #ffae00, #ff3b00 65%, #871cff); box-shadow: 0 18px 45px rgba(255,77,0,.18); position: relative; overflow: hidden; }
.player-art::before, .player-art::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.player-art::before { width: 92px; height: 92px; }
.player-art::after { width: 68px; height: 68px; }
.player-logo { font-weight: 1000; letter-spacing: -.07em; font-size: 1.55rem; z-index: 2; }
.player-info { min-width: 0; position: relative; z-index: 2; }
.live-row { display: flex; align-items: center; gap: 8px; color: #ff6940; font-size: .71rem; letter-spacing: .15em; font-weight: 950; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4d2b; box-shadow: 0 0 0 5px rgba(255,77,43,.12); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255,77,43,0); } }
.now-label { margin: 12px 0 2px; color: #878794; font-size: .78rem; }
.player-info h3 { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: clamp(1.3rem, 3vw, 2rem); }
.player-info > p:last-child { margin: 3px 0 0; color: #b7b7c2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-controls { display: flex; align-items: center; gap: 22px; position: relative; z-index: 2; }
.main-play { width: 72px; height: 72px; border: 0; border-radius: 50%; display: grid; place-items: center; cursor: pointer; background: linear-gradient(145deg, var(--accent-2), var(--accent)); box-shadow: 0 15px 38px rgba(255,77,0,.3); }
.main-play:hover { transform: scale(1.03); }
.play-icon { width: 0; height: 0; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 17px solid white; margin-left: 5px; }
.main-play.is-playing .play-icon { width: 16px; height: 21px; border: 0; margin: 0; position: relative; }
.main-play.is-playing .play-icon::before, .main-play.is-playing .play-icon::after { content: ""; position: absolute; top: 0; width: 5px; height: 21px; border-radius: 2px; background: #fff; }
.main-play.is-playing .play-icon::before { left: 1px; }
.main-play.is-playing .play-icon::after { right: 1px; }
.volume-control { display: flex; align-items: center; gap: 8px; }
.volume-icon { color: #bdbdc7; }
.volume-control input { width: 96px; accent-color: var(--accent); }
.player-status { margin: 16px 0 0; color: #8f8f9d; font-size: .85rem; }
.external-player { display: inline-block; margin-top: 8px; color: #c7c7d0; font-size: .84rem; text-underline-offset: 4px; }
.feature-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 118px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-strip article { padding: 0 34px; border-right: 1px solid var(--line); }
.feature-strip article:first-child { padding-left: 0; }
.feature-strip article:last-child { border-right: 0; }
.feature-number { display: block; margin-bottom: 18px; color: var(--accent-2); font-size: 1.45rem; font-weight: 950; }
.feature-strip h3 { margin-bottom: 7px; font-size: 1.05rem; }
.feature-strip p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }
.about-section { padding: 80px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; border: 1px solid var(--line); border-radius: 30px; background: rgba(18,18,25,.7); }
.about-copy p { max-width: 650px; }
.about-panel { padding: 12px 0; }
.panel-line { padding: 20px 0; display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.panel-line:last-child { border-bottom: 0; }
.panel-line span { color: #858593; }
.panel-line strong { text-align: right; }
.community-section { padding: 125px 0; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.social-card { min-height: 128px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 15px; text-decoration: none; background: rgba(255,255,255,.025); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.social-card:hover { transform: translateY(-4px); border-color: rgba(255,133,0,.35); background: rgba(255,255,255,.045); }
.social-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: #20202b; color: var(--accent-2); font-weight: 950; font-size: .8rem; }
.social-card > span:nth-child(2) { display: grid; }
.social-card strong { font-size: 1rem; }
.social-card small { margin-top: 4px; color: var(--muted); font-size: .78rem; }
.social-card b { font-size: 1.15rem; color: #696976; }
.contact-section { margin-bottom: 70px; padding: 58px 62px; border-radius: 28px; display: flex; justify-content: space-between; align-items: center; gap: 40px; background: linear-gradient(115deg, rgba(255,77,0,.15), rgba(140,61,255,.13)); border: 1px solid rgba(255,133,0,.18); }
.contact-section > div { max-width: 740px; }
.contact-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.contact-section p { margin-bottom: 0; }
.site-footer { width: min(calc(100% - 40px), var(--max)); min-height: 128px; margin: 0 auto; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #7d7d8b; font-size: .82rem; }
.site-footer p { margin: 0; text-align: center; }
.site-footer > a:last-child { text-decoration: none; color: #aaaab5; }
.brand-footer .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
.brand-footer .brand-mark::after { border-radius: 11px; }
.brand-footer .brand-copy strong { color: #eeeef3; font-size: .9rem; }
.brand-footer .brand-copy small { font-size: .55rem; }
:focus-visible { outline: 3px solid rgba(255,176,0,.55); outline-offset: 4px; }

@media (max-width: 950px) {
  .site-header { min-height: 78px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 70px; right: 0; min-width: 230px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #15151d; box-shadow: var(--shadow); display: none; flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 8px; }
  .hero { grid-template-columns: minmax(0, 1fr); padding: 68px 48px; }
  .hero-content { max-width: 780px; }
  .hero-visual { min-height: 390px; margin-top: 28px; }
  .disc-wrap { transform: scale(.9); }
  .about-section { grid-template-columns: 1fr; gap: 35px; padding: 58px; }
  .social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header, .hero, .listen-section, .history-section, .feature-strip, .about-section, .community-section, .contact-section, .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }
  .site-header { min-height: 72px; }
  .brand { min-width: 0; }
  .brand-copy strong { font-size: .92rem; }
  .hero {
    min-height: auto;
    padding: 38px 20px 28px;
    border-radius: 24px;
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-content, .hero-visual { width: 100%; min-width: 0; max-width: 100%; }
  .eyebrow { margin-bottom: 14px; font-size: .69rem; letter-spacing: .14em; line-height: 1.45; }
  .eyebrow span { width: 22px; margin-right: 6px; }
  h1 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 14vw, 3.65rem);
    line-height: .97;
    letter-spacing: -.05em;
    overflow-wrap: normal;
  }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .hero-lead { max-width: 100%; margin-bottom: 26px; font-size: .98rem; line-height: 1.6; }
  .hero-actions { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .hero-actions .button { width: 100%; max-width: 100%; min-width: 0; padding-inline: 16px; }
  .brand-transition { max-width: 100%; margin-top: 24px; font-size: .82rem; line-height: 1.5; }
  .hero-visual { min-height: 265px; margin-top: 18px; }
  .disc-wrap {
    width: min(270px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
    transform: none;
  }
  .disc { width: 84%; height: auto; aspect-ratio: 1; }
  .disc::after { inset: 17px; }
  .disc-ring { width: 53%; height: auto; aspect-ratio: 1; }
  .disc-label { width: 43%; height: auto; aspect-ratio: 1; }
  .disc-label strong { font-size: 1.45rem; }
  .disc-label span { font-size: .7rem; }
  .sound-lines { right: 0; bottom: 12px; transform: rotate(-16deg) scale(.7); transform-origin: right bottom; }
  .listen-section { padding: 82px 0 66px; }
  .section-heading { margin-bottom: 28px; }
  .player-card { grid-template-columns: 76px minmax(0, 1fr); gap: 15px; padding: 17px; }
  .player-art { width: 76px; height: 76px; border-radius: 14px; }
  .player-art::before { width: 61px; height: 61px; }
  .player-art::after { width: 45px; height: 45px; }
  .player-logo { font-size: 1.08rem; }
  .player-info h3 { font-size: 1.25rem; }
  .player-controls { width: 100%; grid-column: 1 / -1; justify-content: space-between; gap: 14px; padding-top: 8px; }
  .main-play { flex: 0 0 auto; width: 58px; height: 58px; }
  .volume-control { min-width: 0; flex: 1; justify-content: flex-end; }
  .volume-control input { width: min(130px, 42vw); }
  .feature-strip { margin-bottom: 78px; grid-template-columns: 1fr; }
  .feature-strip article { padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-strip article:last-child { border-bottom: 0; }
  .about-section { padding: 34px 22px; border-radius: 23px; }
  .panel-line { display: grid; gap: 4px; }
  .panel-line strong { text-align: left; }
  .community-section { padding: 82px 0; }
  .social-card { min-width: 0; grid-template-columns: 48px minmax(0, 1fr) auto; padding: 17px; }
  .social-icon { width: 48px; height: 48px; }
  .social-card small { overflow-wrap: anywhere; }
  .contact-section { margin-bottom: 45px; padding: 38px 24px; align-items: stretch; flex-direction: column; }
  .site-footer { padding: 30px 0; flex-direction: column; text-align: center; }
}

@media (max-width: 430px) {
  .site-header, .hero, .listen-section, .history-section, .feature-strip, .about-section, .community-section, .contact-section, .site-footer {
    width: calc(100% - 16px);
  }
  .site-header { min-height: 68px; }
  .brand-mark { width: 43px; height: 43px; border-radius: 13px; }
  .brand-copy strong { font-size: .86rem; }
  .brand-copy small { font-size: .59rem; }
  .hero { padding: 32px 16px 24px; border-radius: 20px; }
  h1 { font-size: clamp(2.55rem, 13.3vw, 3.25rem); }
  .hero-lead { font-size: .94rem; }
  .button { min-height: 50px; }
  .hero-visual { min-height: 235px; }
  .disc-wrap { width: min(238px, 100%); }
  .listen-section { padding-top: 70px; }
  .player-card { grid-template-columns: 66px minmax(0, 1fr); gap: 12px; padding: 14px; }
  .player-art { width: 66px; height: 66px; }
  .player-art::before { width: 52px; height: 52px; }
  .player-art::after { width: 38px; height: 38px; }
  .player-info h3 { font-size: 1.12rem; }
  .main-play { width: 54px; height: 54px; }
  .volume-control input { width: min(112px, 38vw); }
  .about-section { padding: 30px 18px; }
  .social-card { grid-template-columns: 44px minmax(0, 1fr) auto; gap: 12px; padding: 15px; }
  .social-icon { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Player și istoric v1.3 */
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
}
.player-cover[hidden] { display: none; }
.player-logo[hidden] { display: none; }
.player-art:has(.player-cover:not([hidden]))::before,
.player-art:has(.player-cover:not([hidden]))::after { display: none; }
.track-progress { width: min(460px, 100%); margin-top: 14px; }
.progress-track {
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.10);
}
.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .4s linear;
}
.progress-times {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  color: #777785;
  font-size: .7rem;
  font-variant-numeric: tabular-nums;
}
.main-play:disabled { cursor: wait; opacity: .65; transform: none; }
.history-section { padding: 18px 0 118px; }
.history-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.history-heading > div { max-width: 720px; }
.history-heading h2 { margin-bottom: 13px; }
.history-heading p:last-child { margin-bottom: 0; color: var(--muted); }
.history-refresh {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #d9d9e2;
  background: rgba(255,255,255,.04);
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}
.history-refresh:hover { border-color: rgba(255,176,0,.34); background: rgba(255,255,255,.065); }
.history-refresh:disabled { opacity: .55; cursor: wait; }
.history-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.history-item {
  min-width: 0;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,.025);
}
.history-art {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,176,0,.2), rgba(255,77,0,.17), rgba(140,61,255,.18));
  color: var(--accent-2);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
}
.history-art img { width: 100%; height: 100%; object-fit: cover; }
.history-copy { min-width: 0; display: grid; }
.history-copy strong,
.history-copy span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.history-copy strong { font-size: .94rem; }
.history-copy span { margin-top: 2px; color: var(--muted); font-size: .78rem; }
.history-item time { color: #777785; font-size: .72rem; white-space: nowrap; }
.history-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 720px) {
  .track-progress { margin-top: 10px; }
  .history-section { padding: 8px 0 78px; }
  .history-heading { align-items: stretch; flex-direction: column; gap: 18px; }
  .history-refresh { align-self: flex-start; }
  .history-list { grid-template-columns: minmax(0, 1fr); }
  .history-item { grid-template-columns: 52px minmax(0, 1fr) auto; padding: 13px; gap: 12px; }
  .history-art { width: 52px; height: 52px; }
}

@media (max-width: 430px) {
  .history-item { grid-template-columns: 48px minmax(0, 1fr); }
  .history-art { width: 48px; height: 48px; }
  .history-item time { grid-column: 2; margin-top: -5px; }
}

/* Pagina principală v1.4 - Brand Hub */
.radio-page-link {
  margin: 20px 0 0;
  text-align: center;
}
.radio-page-link a {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.radio-page-link a:hover {
  color: #fff;
}

.history-redirect {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}
.history-redirect a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.products-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 80px 0 100px;
}
.products-section .section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,133,0,.3);
  background: rgba(255,255,255,.04);
}
.product-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: var(--accent-2);
}
.product-icon svg {
  width: 100%;
  height: 100%;
}
.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.product-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .9rem;
}
.product-link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--accent-2);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.product-link:hover {
  border-color: var(--accent-2);
  background: rgba(255,176,0,.08);
}

@media (max-width: 720px) {
  .products-grid { grid-template-columns: 1fr; }
  .products-section { padding: 60px 0 80px; }
  .history-redirect { padding: 18px 16px; }
}

@media (max-width: 430px) {
  .product-card { padding: 26px 20px; }
}

/* Secțiunea Muzică și Colecții */
.music-index-section,
.collections-index-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 40px 0 100px;
}

.tracks-grid,
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.track-card,
.collection-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.track-card:hover,
.collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,133,0,.3);
}

.track-card-image img,
.collection-card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.track-card-content,
.collection-card-content {
  padding: 20px;
}

.track-card-title,
.collection-card-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.track-card-title a,
.collection-card-title a {
  text-decoration: none;
}

.track-card-title a:hover,
.collection-card-title a:hover {
  color: var(--accent-2);
}

.track-card-desc,
.collection-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.collection-card-count {
  margin: 12px 0 0;
  color: var(--accent-2);
  font-size: .85rem;
  font-weight: 600;
}

/* Pagini individuale */
.track-page,
.collection-page {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 40px 0 100px;
}

.track-header,
.collection-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.track-image img,
.collection-image img {
  width: 100%;
  border-radius: var(--radius);
}

.track-title,
.collection-title {
  margin: 0 0 16px;
  font-size: 2rem;
}

.track-lead,
.collection-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.collection-criterion {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.track-external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.track-external-link:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  color: #fff;
  border: none;
}

.button-secondary {
  background: var(--surface-solid);
  color: var(--text);
  border: 1px solid var(--line);
}

.track-description,
.track-lyrics,
.track-collections,
.collection-description,
.collection-tracks {
  margin-bottom: 40px;
}

.track-description h2,
.track-lyrics h2,
.track-collections h2,
.collection-description h2,
.collection-tracks h2 {
  font-size: 1.3rem;
  margin: 0 0 16px;
}

.track-lyrics-content pre {
  margin: 0;
  font-family: inherit;
  white-space: pre-wrap;
  color: var(--muted);
}

.collections-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collections-list a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-size: .9rem;
}

.collections-list a:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

/* Lista pieselor în colecție */
.tracks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.track-list-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.track-list-image img {
  width: 100%;
  border-radius: 10px;
}

.track-list-title {
  margin: 0 0 4px;
  font-size: 1rem;
}

.track-list-title a {
  text-decoration: none;
}

.track-list-title a:hover {
  color: var(--accent-2);
}

.track-list-desc {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.track-list-external {
  padding: 8px 14px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
}

.track-list-external:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.track-nav,
.collection-nav {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.track-back-link,
.collection-back-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.track-back-link:hover,
.collection-back-link:hover {
  text-decoration: underline;
}

/* Stare goală */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

/* Eroare 404 */
.error-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}

.error-section h1 {
  margin: 0 0 16px;
}

.error-section p {
  color: var(--muted);
  margin: 0 0 30px;
}

@media (max-width: 720px) {
  .track-header,
  .collection-header {
    grid-template-columns: 1fr;
  }
  .track-list-item {
    grid-template-columns: 80px 1fr;
  }
  .track-list-actions {
    grid-column: 1 / -1;
    margin-top: 10px;
  }
}

@media (max-width: 430px) {
  .track-title,
  .collection-title {
    font-size: 1.5rem;
  }
  .track-list-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .track-list-image {
    max-width: 200px;
    margin: 0 auto;
  }
}

/* =============================================
   Selector de limbă
   ============================================= */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: auto;
}

.lang-current {
  color: var(--accent);
  font-weight: 600;
}

.lang-separator {
  color: var(--line);
}

.lang-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.lang-link:hover,
.lang-link:focus {
  color: var(--text);
}

.lang-unavailable {
  color: var(--line);
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .lang-selector {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
  }
}
