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

:root {
  --bg: #070b12;
  --glass: rgba(15, 22, 35, 0.72);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #0ea5e9;
  --blue-deep: #0284c7;
  --accent: #67e8f9;
  --green: #34d399;
  --grad: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 55%, #38bdf8 100%);
  --grad-glow: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(14, 165, 233, 0.15));
  --font: "Outfit", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --radius: 20px;
  --nav-h: 72px;
  --mini-h: 52px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --beat: 0;
  --bass: 0;
  --mid: 0;
  --beat-hit: 0;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: #070b12;
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  padding-bottom: calc(var(--nav-h) + var(--mini-h) + var(--safe-b) + 8px);
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
.wrap { width: min(1080px, 92vw); margin: 0 auto; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass,
.neo-card {
  position: relative;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(32px) saturate(1.65);
  -webkit-backdrop-filter: blur(32px) saturate(1.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.glass::before,
.neo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(56, 189, 248, 0.85),
    rgba(14, 165, 233, 0.75),
    rgba(34, 211, 238, 0.65),
    rgba(34, 211, 238, 0.8),
    rgba(56, 189, 248, 0.85)
  );
  background-size: 320% 320%;
  animation: neoBorder 5s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}
.glass::after,
.neo-card::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(56, 189, 248, 0.12) 60deg,
    transparent 120deg,
    rgba(14, 165, 233, 0.14) 200deg,
    transparent 280deg
  );
  animation: neoShimmer 10s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.glass > *,
.neo-card > * { position: relative; z-index: 1; }
.glass:hover,
.neo-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(56, 189, 248, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
@keyframes neoBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes neoShimmer {
  to { transform: rotate(360deg); }
}

/* Beat-sync: opreÈ™te animaÈ›iile CSS, reacÈ›ioneazÄƒ la muzicÄƒ */
body.is-beat-sync .glass::before,
body.is-beat-sync .neo-card::before {
  animation: none;
  background-position: calc(var(--beat, 0) * 100%) 50%;
  opacity: calc(0.35 + var(--beat, 0) * 0.65);
  transition: opacity 0.08s ease, background-position 0.08s ease;
}
body.is-beat-sync .glass::after,
body.is-beat-sync .neo-card::after {
  animation: none;
  transition: transform 0.1s ease, opacity 0.1s ease;
}

/* Stiluri diferite per card */
[data-beat="pulse"] {
  box-shadow:
    0 calc(6px + var(--beat-hit, 0) * 18px) calc(24px + var(--bass, 0) * 48px) rgba(56, 189, 248, calc(0.1 + var(--bass, 0) * 0.45)),
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(calc(var(--beat-hit, 0) * -5px));
}
[data-beat="glow"] {
  box-shadow:
    0 0 calc(12px + var(--bass, 0) * 55px) rgba(56, 189, 248, calc(var(--bass, 0) * 0.55)),
    0 0 calc(6px + var(--beat-hit, 0) * 35px) rgba(14, 165, 233, calc(var(--beat-hit, 0) * 0.7)),
    0 8px 40px rgba(0, 0, 0, 0.35);
}
[data-beat="wave"]::before {
  background: linear-gradient(
    90deg,
    rgba(56, 189, 248, 0.9),
    rgba(34, 211, 238, 0.7),
    rgba(14, 165, 233, 0.85),
    rgba(34, 211, 238, 0.7),
    rgba(56, 189, 248, 0.9)
  );
  background-size: 200% 100%;
  background-position: calc(var(--beat, 0) * 100%) 50%;
}
[data-beat="orbit"]::after {
  transform: rotate(calc(var(--beat, 0) * 360deg)) scale(calc(1 + var(--bass, 0) * 0.25));
  opacity: calc(0.5 + var(--mid, 0) * 0.5);
}
[data-beat="bounce"] {
  transform: translateY(calc(var(--beat-hit, 0) * -8px)) scale(calc(1 + var(--beat-hit, 0) * 0.025));
}
[data-beat="drift"] {
  box-shadow:
    calc(var(--bass, 0) * 14px) calc(8px + var(--beat, 0) * 20px) calc(28px + var(--bass, 0) * 36px) rgba(14, 165, 233, calc(0.12 + var(--bass, 0) * 0.4)),
    0 8px 32px rgba(0, 0, 0, 0.28);
}
[data-beat="flash"]::after {
  opacity: calc(0.3 + var(--beat-hit, 0) * 0.9);
  transform: rotate(calc(var(--beat, 0) * 180deg)) scale(calc(1 + var(--beat-hit, 0) * 0.3));
}
[data-beat="ripple"]::before {
  opacity: calc(0.4 + var(--beat-hit, 0) * 0.6);
  filter: blur(calc(var(--beat-hit, 0) * 3px));
}
[data-beat="ripple"] {
  transform: scale(calc(1 + var(--beat-hit, 0) * 0.015));
}

body.is-beat-sync .ambient__orb--1 {
  transform: scale(calc(1 + var(--bass, 0) * 0.18));
  opacity: calc(0.28 + var(--bass, 0) * 0.28);
  transition: transform 0.12s ease, opacity 0.12s ease;
}
body.is-beat-sync .ambient__orb--2 {
  transform: scale(calc(1 + var(--mid, 0) * 0.14)) translateX(calc(var(--beat, 0) * 20px));
  opacity: calc(0.22 + var(--mid, 0) * 0.22);
  transition: transform 0.12s ease, opacity 0.12s ease;
}
body.is-beat-sync .disc-ring.is-active {
  box-shadow: 0 0 calc(8px + var(--beat-hit, 0) * 28px) rgba(56, 189, 248, calc(0.4 + var(--beat-hit, 0) * 0.6));
}

body:not(.is-beat-sync) .stats-row .neo-card:nth-child(1)::before { animation-delay: 0s; }
body:not(.is-beat-sync) .stats-row .neo-card:nth-child(2)::before { animation-delay: -1.2s; }
body:not(.is-beat-sync) .stats-row .neo-card:nth-child(3)::before { animation-delay: -2.4s; }
body:not(.is-beat-sync) .stats-row .neo-card:nth-child(4)::before { animation-delay: -3.6s; }
.schedule-grid .glass:nth-child(2)::before,
.schedule-grid .neo-card:nth-child(2)::before { animation-delay: -1.5s; }
.schedule-grid .glass:nth-child(3)::before,
.schedule-grid .neo-card:nth-child(3)::before { animation-delay: -3s; }
.schedule-grid .glass:nth-child(4)::before,
.schedule-grid .neo-card:nth-child(4)::before { animation-delay: -4.5s; }
.info-grid .glass:nth-child(2)::before,
.info-grid .neo-card:nth-child(2)::before { animation-delay: -1s; }
.info-grid .glass:nth-child(3)::before,
.info-grid .neo-card:nth-child(3)::before { animation-delay: -2s; }
.info-grid .glass:nth-child(4)::before,
.info-grid .neo-card:nth-child(4)::before { animation-delay: -3s; }
.testimonials__grid .glass:nth-child(2)::before,
.testimonials__grid .neo-card:nth-child(2)::before { animation-delay: -2s; }
.testimonials__grid .glass:nth-child(3)::before,
.testimonials__grid .neo-card:nth-child(3)::before { animation-delay: -4s; }
.ads-packages .glass:nth-child(2)::before,
.ads-packages .neo-card:nth-child(2)::before { animation-delay: -1.7s; }
.ads-packages .glass:nth-child(3)::before,
.ads-packages .neo-card:nth-child(3)::before { animation-delay: -3.4s; }
.contact-cards .neo-card:nth-child(2)::before { animation-delay: -1.3s; }
.contact-cards .neo-card:nth-child(3)::before { animation-delay: -2.6s; }

/* Large panels â€” no lift on hover */
.player.glass:hover,
.chat.glass:hover,
.contact-form.glass:hover,
.connect-hub.glass:hover,
.about-text.glass:hover,
.ads-hero.glass:hover,
.contact-hero.glass:hover,
.history.glass:hover,
.requests.glass:hover {
  transform: none;
}

.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ambient__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.ambient__orb--1 { width: 50vw; height: 50vw; top: -10%; left: -10%; background: var(--cyan); }
.ambient__orb--2 { width: 40vw; height: 40vw; bottom: 10%; right: -5%; background: var(--blue); }

.unmute-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: rgba(7, 11, 18, 0.85);
  backdrop-filter: blur(8px); padding: 1.5rem;
}
.unmute-overlay[hidden] { display: none; }
.unmute-overlay__btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.75rem; border: none; border-radius: 999px;
  background: var(--grad); color: #fff;
  font-family: var(--font); font-size: 1rem; font-weight: 600; cursor: pointer;
  box-shadow: 0 8px 40px rgba(56, 189, 248, 0.35);
}
.pulse-dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; animation: pulse 1.2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 11, 18, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; }
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--text); }
.brand__icon {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--grad); border-radius: 11px; font-weight: 800; font-size: 0.75rem; color: #fff;
}
.brand__name { font-weight: 700; font-size: 1.05rem; }
.live-pill {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--muted);
}
.live-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #64748b; }
.live-pill.is-live { color: var(--green); border-color: rgba(34,197,94,0.3); }
.live-pill.is-live .live-pill__dot { background: var(--green); box-shadow: 0 0 12px var(--green); animation: pulse 1.5s infinite; }

.main { position: relative; z-index: 1; }
.hero { padding: 1.5rem 0 2rem; }
.live-hero { text-align: center; margin-bottom: 1.5rem; }
.eyebrow { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--cyan); margin-bottom: 0.5rem; }
.live-hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 0.65rem; }
.hero-lead { color: var(--muted); font-size: 1rem; max-width: 420px; margin: 0 auto; }

.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem; margin-bottom: 1.25rem; }
@media (min-width: 600px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  padding: 1rem;
  text-align: center;
  border-radius: 16px;
}
.stat-card--highlight::after { opacity: 1.1; }
.stat-card--highlight::before { opacity: 0.95; animation-duration: 3.5s; }
.stat-card__value { display: block; font-size: 1.5rem; font-weight: 800; font-family: var(--mono); background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card--highlight .stat-card__value { font-size: 1.85rem; }
.stat-card__label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }

.player { padding: 1.5rem; margin-bottom: 1.25rem; }
.player__visual { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.disc {
  width: 120px; height: 120px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--cyan), var(--blue), var(--accent), var(--cyan));
  display: grid; place-items: center;
  animation: spin 8s linear infinite; animation-play-state: paused;
}
.disc.is-spinning { animation-play-state: running; }
.disc__center { width: 44px; height: 44px; border-radius: 50%; background: #070b12; display: grid; place-items: center; font-weight: 800; font-size: 0.7rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.wave-bars { display: flex; align-items: flex-end; gap: 3px; height: 28px; opacity: 0.3; }
.wave-bars.is-active { opacity: 1; }
.wave-bars span { width: 4px; height: 8px; background: var(--grad); border-radius: 2px; animation: wave 0.5s ease-in-out infinite alternate; animation-play-state: paused; }
.wave-bars.is-active span { animation-play-state: running; }
.wave-bars span:nth-child(2n) { animation-delay: 0.1s; }
@keyframes wave { to { height: 28px; } }

.player__meta { text-align: center; margin-bottom: 1.25rem; }
.player__tag { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; }
.player__title { font-size: 1.35rem; font-weight: 700; margin: 0.35rem 0; }
.player__sub { color: var(--muted); font-size: 0.9rem; }
.player__controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-bottom: 1rem; }
.ctrl-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.05); color: var(--text); font-size: 1.25rem; cursor: pointer; }
.play-btn { width: 68px; height: 68px; border: none; border-radius: 50%; background: var(--grad); color: #fff; cursor: pointer; display: grid; place-items: center; box-shadow: 0 8px 32px rgba(14, 165, 233,0.35); }
.play-btn svg { width: 30px; height: 30px; }
.play-btn .ico-pause, .mob-nav__play .ico-pause { display: none; }
.play-btn.is-playing .ico-play, .mob-nav__play.is-playing .ico-play { display: none; }
.play-btn.is-playing .ico-pause, .mob-nav__play.is-playing .ico-pause { display: block; }
.player__volume input { width: 100%; accent-color: var(--blue); }
.player__status { text-align: center; font-size: 0.8rem; color: var(--muted); min-height: 1.2rem; margin-top: 0.5rem; }
.player__status.is-ok { color: var(--green); }
.player__status.is-err { color: #f87171; }

.social-row { margin-bottom: 0.5rem; }
.social-row__label { display: block; text-align: center; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.social-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.social-btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.55rem 1rem; border-radius: 999px; text-decoration: none; font-size: 0.8rem; font-weight: 500; color: #fff; }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.social-btn--fb { background: #1877f2; }
.social-btn--wa { background: #25d366; }
.social-btn--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-btn--share { background: rgba(255,255,255,0.1); border: 1px solid var(--glass-border); }

.chat-section { padding: 2rem 0; }
.section-head { text-align: center; margin-bottom: 1.25rem; }
.section-head h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; margin-bottom: 0.4rem; }
.section-head p { color: var(--muted); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }

.chat { overflow: hidden; display: flex; flex-direction: column; height: min(420px, 55vh); }
.chat__messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.chat__empty { color: var(--muted); text-align: center; padding: 2rem; }
.chat-msg { max-width: 85%; padding: 0.55rem 0.85rem; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); }
.chat-msg--own { align-self: flex-end; background: linear-gradient(135deg, rgba(56, 189, 248,0.15), rgba(14, 165, 233,0.15)); }
.chat-msg__nick { font-size: 0.7rem; font-weight: 600; color: var(--cyan); margin-bottom: 0.15rem; }
.chat-msg__text { font-size: 0.9rem; word-break: break-word; }
.chat-msg__time { font-size: 0.6rem; color: var(--muted); margin-top: 0.2rem; font-family: var(--mono); }

.chat__form { display: grid; grid-template-columns: 1fr 2fr auto; gap: 0.5rem; padding: 0.75rem; border-top: 1px solid var(--glass-border); }
.chat__form input { padding: 0.65rem 0.85rem; border-radius: 12px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.05); color: var(--text); font-family: var(--font); font-size: 0.9rem; min-width: 0; }
.chat__form input:focus { outline: none; border-color: var(--cyan); }
.chat__send { width: 44px; height: 44px; border: none; border-radius: 12px; background: var(--grad); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chat__send svg { width: 20px; height: 20px; }
@media (max-width: 500px) {
  .chat__form { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .chat__form input:first-child { grid-column: 1 / -1; }
  #chatText { grid-column: 1; }
  .chat__send { grid-column: 2; }
}

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.75rem; margin-bottom: 1.25rem; }
.info-card { padding: 1.25rem; min-height: 100%; }
.info-card__icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.info-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.info-card p { font-size: 0.85rem; color: var(--muted); }
.links-block { padding: 1.25rem; }
.links-block h3 { font-size: 1rem; margin-bottom: 1rem; }
.link-item { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--glass-border); flex-wrap: wrap; }
.link-item:last-child { border-bottom: none; }
.link-item strong { display: block; font-size: 0.85rem; margin-bottom: 0.25rem; }
.link-item code { font-family: var(--mono); font-size: 0.68rem; color: var(--muted); word-break: break-all; }
.btn-ghost { padding: 0.4rem 0.85rem; border-radius: 8px; border: 1px solid var(--glass-border); background: transparent; color: var(--text); font-size: 0.75rem; cursor: pointer; font-family: var(--font); }

.footer { position: relative; z-index: 1; padding: 2rem 0 1rem; border-top: 1px solid var(--glass-border); text-align: center; }
@media (min-width: 900px) { .footer { padding-bottom: 2rem; } }
.footer__brand { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer__credits { font-size: 0.75rem; color: var(--muted); line-height: 1.6; max-width: 520px; margin: 0 auto; }
.footer__credits a { color: var(--cyan); text-decoration: none; }

.mob-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-around;
  height: calc(var(--nav-h) + var(--safe-b)); padding-bottom: var(--safe-b);
  background: rgba(7, 11, 18, 0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
}
@media (min-width: 900px) { .mob-nav { display: none; } }
.mob-nav__item { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; text-decoration: none; color: var(--muted); font-size: 0.6rem; padding: 0.35rem; min-width: 48px; }
.mob-nav__item svg { width: 22px; height: 22px; }
.mob-nav__item--active { color: var(--cyan); }
.mob-nav__play { width: 52px; height: 52px; margin-top: -20px; border: none; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 4px 20px rgba(14, 165, 233,0.4); cursor: pointer; }
.mob-nav__play svg { width: 26px; height: 26px; }

.mini-player__info { display: flex; align-items: center; gap: 0.5rem; min-width: 0; flex: 1; }
.mini-player__live { font-family: var(--mono); font-size: 0.6rem; padding: 0.15rem 0.4rem; border-radius: 4px; background: rgba(255,255,255,0.08); color: var(--muted); }
.mini-player__live.is-on { background: rgba(34,197,94,0.2); color: var(--green); }
.mini-player__track { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--muted); }
.brand__logo { height: 44px; width: auto; max-width: 190px; display: block; pointer-events: none; }
.topnav { display: none; gap: 1.25rem; }
.topnav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.topnav a:hover { color: var(--cyan); }
@media (min-width: 900px) { .topnav { display: flex; } }

.player-layout { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 900px) { .player-layout { grid-template-columns: 1.4fr 0.8fr; } }
.player-side { display: flex; flex-direction: column; gap: 1rem; }
.player__art-wrap { position: relative; width: 200px; height: 200px; margin: 0 auto 1rem; }
.player__art { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.disc-ring { position: absolute; inset: -4px; border-radius: 18px; border: 2px solid transparent; background: var(--grad) border-box; -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); mask-composite: exclude; opacity: 0; transition: opacity 0.3s; }
.disc-ring.is-active { opacity: 1; animation: pulse 2s infinite; }
.player__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.btn-action { padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.05); color: var(--text); font-family: var(--font); font-size: 0.8rem; cursor: pointer; text-decoration: none; }
.btn-action--request { background: linear-gradient(135deg, rgba(56, 189, 248,0.2), rgba(14, 165, 233,0.2)); border-color: rgba(56, 189, 248,0.3); }
.history { padding: 1rem; }
.history h3, .qr-block h3, .listen-row h3 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.history__list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.history__list li { font-size: 0.85rem; color: var(--muted); padding: 0.5rem 0.65rem; background: rgba(255,255,255,0.03); border-radius: 10px; border-left: 3px solid var(--cyan); }
.history__list li.is-now { color: var(--text); border-left-color: var(--blue); font-weight: 600; }
.history__empty { color: var(--muted); font-size: 0.85rem; }
.qr-block { padding: 1rem; text-align: center; }
.qr-block__img { border-radius: 12px; margin-bottom: 0.5rem; }
.qr-block p { font-size: 0.8rem; color: var(--muted); }
.listen-row { padding: 1.25rem; margin-bottom: 1rem; }
.listen-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.listen-btn { padding: 0.55rem 1rem; border-radius: 10px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.05); color: var(--text); font-family: var(--font); font-size: 0.8rem; cursor: pointer; text-decoration: none; }
.listen-btn--primary { background: var(--grad); border: none; color: #fff; font-weight: 600; }
.listen-btn--wa { background: #25d366; border: none; color: #fff; }

.about-section, .contact-section { padding: 2rem 0; }
.about-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text { padding: 1.5rem; }
.about-text p { color: var(--muted); margin-bottom: 0.75rem; }
.about-list { list-style: none; margin-top: 1rem; }
.about-list li { padding: 0.35rem 0; color: var(--muted); font-size: 0.95rem; }
.contact-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-info { padding: 1.5rem; }
.contact-info p { margin-bottom: 0.5rem; color: var(--muted); }
.contact-info a { color: var(--cyan); }
.contact-social { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.contact-social a { color: var(--cyan); font-size: 0.9rem; }
.contact-form { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.contact-form label span { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.35rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.65rem 0.85rem; border-radius: 12px;
  border: 1px solid var(--glass-border); background: rgba(255,255,255,0.05);
  color: var(--text); font-family: var(--font); font-size: 0.9rem;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--cyan); }
.btn-submit { padding: 0.75rem; border: none; border-radius: 12px; background: var(--grad); color: #fff; font-weight: 600; font-family: var(--font); cursor: pointer; }
.form-note { font-size: 0.8rem; min-height: 1.2rem; }
.form-note.is-ok { color: var(--green); }
.form-note.is-err { color: #f87171; }
.footer__links { margin-bottom: 0.5rem; }
.footer__links a { color: var(--muted); font-size: 0.8rem; }
.chat-msg--request { border-color: rgba(14, 165, 233,0.4); }
.chat-msg--request .chat-msg__nick { color: var(--blue); }

/* Section blocks */
.section-block { margin-bottom: 1.25rem; }
.section-label {
  display: flex; align-items: flex-start; gap: 0.85rem;
  margin-bottom: 1rem;
}
.section-label__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(56, 189, 248,0.12); border: 1px solid rgba(56, 189, 248,0.2);
  border-radius: 12px; font-size: 1.1rem;
}
.section-label__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.15rem; }
.section-label__sub { font-size: 0.85rem; color: var(--muted); }
.section-label__sub strong { color: var(--blue); }

/* Connect hub â€” unified listen + social */
.connect-hub { padding: 1.35rem; margin-bottom: 0.5rem; }
.connect-hub__head { margin-bottom: 1.25rem; text-align: center; }
.connect-hub__head h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
.connect-hub__head p { font-size: 0.85rem; color: var(--muted); }
.connect-hub__grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .connect-hub__grid { grid-template-columns: 1fr 1fr auto; align-items: start; }
}
.connect-group__label {
  display: block; font-size: 0.65rem; font-family: var(--mono);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.6rem;
}
.connect-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.connect-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--glass-border); background: rgba(255,255,255,0.04);
  color: var(--text); font-family: var(--font); font-size: 0.78rem;
  font-weight: 500; text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.connect-chip:hover { border-color: var(--cyan); transform: translateY(-1px); }
.connect-chip--primary { background: var(--grad); border: none; color: #fff; font-weight: 600; }
.connect-chip--fb { background: rgba(24,119,242,0.2); border-color: rgba(24,119,242,0.4); }
.connect-chip--ig { background: rgba(220,39,67,0.15); border-color: rgba(220,39,67,0.35); }
.connect-chip--wa { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.35); }
.connect-group--qr { text-align: center; }
.connect-qr { border-radius: 10px; display: block; margin: 0 auto 0.35rem; }
.connect-qr__hint { font-size: 0.7rem; color: var(--muted); }

/* Contact â€” modern */
.contact-section { padding: 2rem 0 3rem; }
.contact-hero {
  display: grid; gap: 1.25rem; padding: 1.5rem; margin-bottom: 1rem;
}
@media (min-width: 800px) {
  .contact-hero { grid-template-columns: 1fr 1.2fr; align-items: center; }
}
.contact-hero h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; margin: 0.25rem 0 0.5rem; }
.contact-hero p { color: var(--muted); font-size: 0.95rem; }
.contact-cards { display: grid; gap: 0.65rem; }
@media (min-width: 500px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1rem; border-radius: 16px;
  text-decoration: none; color: inherit;
}
.contact-card:hover { transform: translateY(-4px) scale(1.02); }
.contact-card__icon { font-size: 1.25rem; }
.contact-card__label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-family: var(--mono); }
.contact-card__value { font-size: 0.8rem; font-weight: 600; color: var(--cyan); word-break: break-all; }

.contact-form { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-form__row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.field span { display: block; font-size: 0.8rem; font-weight: 500; color: var(--muted); margin-bottom: 0.4rem; }
.field span em { font-style: normal; font-weight: 400; opacity: 0.7; }
.field input, .field textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 12px;
  border: 1px solid var(--glass-border); background: rgba(255,255,255,0.04);
  color: var(--text); font-family: var(--font); font-size: 0.9rem;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(56, 189, 248,0.12); }
.field input::placeholder, .field textarea::placeholder { color: rgba(148,163,184,0.6); }

.type-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.type-pill { cursor: pointer; }
.type-pill input { position: absolute; opacity: 0; pointer-events: none; }
.type-pill span {
  display: inline-block; padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid var(--glass-border); background: rgba(255,255,255,0.03);
  font-size: 0.8rem; transition: 0.2s;
}
.type-pill input:checked + span {
  background: linear-gradient(135deg, rgba(56, 189, 248,0.2), rgba(14, 165, 233,0.2));
  border-color: var(--cyan); color: #fff; font-weight: 600;
}

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border: none; border-radius: 12px;
  background: var(--grad); color: #fff; font-weight: 600;
  font-family: var(--font); font-size: 0.95rem; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35); }

.chat-block .chat { margin-top: 0; }
.player { margin-bottom: 0; }

/* === v4 enhancements === */

.stat-card { position: relative; }
.stat-card__delta {
  position: absolute; top: 0.5rem; right: 0.5rem;
  font-size: 0.65rem; font-family: var(--mono); font-weight: 700;
  color: var(--green); background: rgba(34,197,94,0.15);
  padding: 0.15rem 0.4rem; border-radius: 6px;
  animation: fadeUp 1.5s ease forwards;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(4px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; }
}
.stat-card__value.is-bump { animation: bump 0.45s ease; }
@keyframes bump {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.player__artist {
  font-size: 0.8rem; font-weight: 600; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0.25rem 0 0.1rem;
}
.player__title { font-size: 1.35rem; font-weight: 700; margin: 0 0 0.35rem; }
.player__sub { color: var(--muted); font-size: 0.85rem; }

.player__art-wrap { position: relative; width: 200px; height: 200px; margin: 0 auto 0.75rem; }
.player__art-placeholder {
  position: absolute; inset: 0; border-radius: 16px;
  background:
    radial-gradient(circle at 35% 30%, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(14, 165, 233, 0.3), transparent 50%),
    linear-gradient(145deg, rgba(15, 22, 35, 0.95), rgba(7, 11, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.player__art-placeholder::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: repeating-radial-gradient(
    circle at center,
    transparent 0 18px,
    rgba(255, 255, 255, 0.03) 18px 19px
  );
  opacity: 0.6;
}
.player__art-wrap:not(.is-no-art) .player__art-placeholder { display: none; }
.player__art-wrap.is-no-art .player__art { display: none; }
.player__art {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.player__art--front { opacity: 0; z-index: 2; }
.player__art--front.is-visible { opacity: 1; }
.player__art--back { z-index: 1; filter: blur(6px); transform: scale(1.04); }

.viz-canvas {
  display: block; width: min(320px, 90%); height: 56px;
  margin: 0 auto 1rem; border-radius: 10px;
  background: rgba(0,0,0,0.2);
}

.requests { padding: 1rem; }
.requests h3 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.requests__list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.requests__item {
  padding: 0.55rem 0.65rem; border-radius: 10px;
  background: rgba(14, 165, 233,0.06);
  border: 1px solid rgba(14, 165, 233,0.15);
  font-size: 0.82rem;
}
.requests__nick { display: block; font-size: 0.68rem; font-weight: 600; color: var(--blue); margin-bottom: 0.15rem; }
.requests__text { color: var(--text); word-break: break-word; }
.requests__time { display: block; font-size: 0.6rem; color: var(--muted); font-family: var(--mono); margin-top: 0.2rem; }
.requests__empty { color: var(--muted); font-size: 0.85rem; }

.schedule-section { padding: 2rem 0; }
.schedule-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.schedule-card {
  padding: 1.25rem;
  transition: transform 0.35s ease;
}
.schedule-card.is-now {
  transform: scale(1.02);
}
.schedule-card.is-now::before {
  opacity: 1;
  animation-duration: 3s;
}
.schedule-card__day {
  display: inline-block; font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.4rem;
}
.schedule-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.schedule-card__time { font-family: var(--mono); font-size: 0.8rem; color: var(--blue); margin-bottom: 0.5rem; }
.schedule-card p { font-size: 0.85rem; color: var(--muted); }

.about-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.about-photo { overflow: hidden; padding: 0; }
.about-photo__img {
  height: 140px; background-size: cover; background-position: center;
  display: grid; place-items: center; font-size: 2.5rem;
}
.about-photo__img--studio {
  background-image: linear-gradient(135deg, rgba(56, 189, 248,0.35), rgba(7,11,18,0.9)),
    radial-gradient(circle at 30% 40%, rgba(14, 165, 233,0.4), transparent 60%);
}
.about-photo__img--studio::before { content: "ðŸŽ™ï¸"; }
.about-photo__img--team {
  background-image: linear-gradient(135deg, rgba(14, 165, 233,0.35), rgba(7,11,18,0.9)),
    radial-gradient(circle at 70% 50%, rgba(56, 189, 248,0.35), transparent 55%);
}
.about-photo__img--team::before { content: "ðŸ‘¥"; }
.about-photo__cap {
  display: block; padding: 0.65rem; font-size: 0.8rem; font-weight: 600;
  text-align: center; color: var(--muted);
}

.testimonials { margin-top: 1.5rem; }
.testimonials__title { text-align: center; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonials__grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.testimonial { padding: 1.25rem; margin: 0; }
.testimonial p { font-size: 0.92rem; color: var(--text); font-style: italic; margin-bottom: 0.65rem; }
.testimonial footer { font-size: 0.78rem; color: var(--muted); }

.ads-section { padding: 2rem 0; }
.ads-hero {
  display: grid; gap: 1.25rem; padding: 1.5rem; margin-bottom: 1rem;
}
@media (min-width: 800px) {
  .ads-hero { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.ads-hero h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; margin: 0.25rem 0 0.5rem; }
.ads-hero p { color: var(--muted); font-size: 0.95rem; }
.ads-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.ads-stat {
  text-align: center; padding: 0.85rem 0.5rem; border-radius: 14px;
}
.ads-stat__val { display: block; font-weight: 800; font-size: 0.95rem; color: var(--cyan); }
.ads-stat__lbl { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.ads-packages {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.ads-package { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.65rem; }
.ads-package h3 { font-size: 1.05rem; }
.ads-package p { font-size: 0.85rem; color: var(--muted); flex: 1; }
.ads-package__cta {
  display: inline-block; text-align: center; padding: 0.6rem 1rem;
  border-radius: 10px; background: var(--grad); color: #fff;
  text-decoration: none; font-weight: 600; font-size: 0.85rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.ads-package__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35); }

.mini-player {
  position: fixed; bottom: calc(var(--nav-h) + var(--safe-b)); left: 0; right: 0; z-index: 55;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.5rem 1rem; height: var(--mini-h);
  background: rgba(15, 22, 35, 0.95); border-top: 1px solid var(--glass-border);
  font-size: 0.8rem; cursor: pointer; border-left: none; border-right: none; border-bottom: none;
  color: inherit; font-family: var(--font); text-align: left;
  transition: background 0.2s;
}
.mini-player:hover { background: rgba(20, 28, 45, 0.98); }
@media (min-width: 900px) { .mini-player { display: none; } }
.mini-player__toggle {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
  background: var(--grad); color: #fff; display: grid; place-items: center;
}
.mini-player__toggle svg { width: 18px; height: 18px; }
.mini-player__toggle .ico-pause { display: none; }
.mini-player__toggle.is-playing .ico-play { display: none; }
.mini-player__toggle.is-playing .ico-pause { display: block; }

@media (max-width: 899px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photos { order: -1; }
}

