:root {
  --bg: #08070a;
  --surface: rgba(24, 22, 27, 0.82);
  --surface-solid: #171519;
  --surface-2: #211e24;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f8f6f8;
  --muted: #aaa4ad;
  --pink: #ff008c;
  --pink-2: #ff55b2;
  --green: #56f39a;
  --radius: 30px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.is-playing { padding-bottom: 86px; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.lang-en { display: none; }
body[data-lang="en"] .lang-hu { display: none !important; }
body[data-lang="en"] .lang-en { display: inline; }
p.lang-en { display: none; }
body[data-lang="en"] p.lang-en { display: block; }

.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(8,7,10,.77), rgba(8,7,10,.98)), var(--ambient-art, none);
  background-position: center;
  background-size: cover;
  filter: saturate(1.12);
  transition: background-image .5s ease;
}
.ambient::before {
  content: "";
  position: absolute;
  width: 56vw;
  height: 56vw;
  min-width: 480px;
  min-height: 480px;
  border-radius: 50%;
  right: -20vw;
  top: 4vh;
  background: radial-gradient(circle, rgba(255,0,140,.22), transparent 68%);
  filter: blur(34px);
}
.ambient::after {
  content: "";
  position: absolute;
  width: 40vw;
  height: 40vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  left: -20vw;
  top: 48vh;
  background: radial-gradient(circle, rgba(63,184,255,.12), transparent 70%);
  filter: blur(30px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,7,10,.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px) saturate(1.25);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(8,7,10,.92); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 20px; letter-spacing: -.03em; white-space: nowrap; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; box-shadow: 0 10px 28px rgba(255,0,140,.22); }
.brand strong { font-weight: 850; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); color: #d8d3da; font-size: 14px; font-weight: 650; }
.nav-links > a { position: relative; padding: 12px 0; }
.nav-links > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--pink); transition: right .2s ease; }
.nav-links > a:hover::after, .nav-links > a:focus-visible::after { right: 0; }
.language-toggle { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.05); border-radius: 999px; min-width: 46px; height: 38px; cursor: pointer; font-weight: 800; }
.language-toggle:hover { border-color: rgba(255,0,140,.6); background: rgba(255,0,140,.12); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.05); }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: white; transition: transform .2s ease, opacity .2s ease; }

.hero { min-height: calc(100vh - 82px); padding: clamp(40px, 5vw, 70px) 0 56px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 400px); align-items: center; gap: clamp(42px, 7vw, 100px); }
.eyebrow { margin: 0 0 18px; color: #d7d0d9; font-size: 12px; line-height: 1.2; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: 10px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 6px rgba(255,0,140,.12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255,0,140,0); } }
.hero h1 { margin: 0; max-width: 730px; font-size: clamp(58px, 7.3vw, 108px); line-height: .9; letter-spacing: -.07em; font-weight: 900; }
.hero h1 em { color: var(--pink); font-style: normal; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: #c1bbc4; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.primary-action, .secondary-action { min-height: 56px; padding: 0 23px; border-radius: 17px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.primary-action { border: 0; color: white; background: var(--pink); box-shadow: 0 14px 40px rgba(255,0,140,.28); }
.primary-action:hover, .secondary-action:hover { transform: translateY(-2px); }
.primary-action:hover { box-shadow: 0 18px 48px rgba(255,0,140,.38); }
.secondary-action { border: 1px solid var(--line); color: white; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.play-symbol { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
.hero-stats { display: flex; gap: 0; margin: 44px 0 0; }
.hero-stats > div { min-width: 120px; padding: 0 25px; border-left: 1px solid var(--line); }
.hero-stats > div:first-child { padding-left: 0; border-left: 0; }
.hero-stats dt { font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.hero-stats dd { margin: 3px 0 0; color: var(--muted); font-size: 12px; }

.player-card { position: relative; isolation: isolate; overflow: hidden; padding: 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; background: linear-gradient(145deg, rgba(42,37,45,.82), rgba(18,16,20,.9)); box-shadow: 0 38px 100px rgba(0,0,0,.45); backdrop-filter: blur(25px); }
.player-glow { position: absolute; z-index: -1; width: 320px; height: 320px; right: -130px; top: -120px; border-radius: 50%; background: var(--pink); opacity: .14; filter: blur(60px); }
.cover-wrap { position: relative; width: min(88%, 336px); margin-inline: auto; aspect-ratio: 1; border-radius: 20px; overflow: hidden; background: #111; box-shadow: 0 24px 60px rgba(0,0,0,.42); }
.cover-wrap > img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease, transform .45s ease; }
.player-card:hover .cover-wrap > img { transform: scale(1.018); }
.track-copy { min-width: 0; padding: 13px 2px 10px; text-align: center; }
.now-label { margin: 0 0 4px; color: var(--pink-2); font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.track-copy h2 { position: relative; margin: 0; font-size: clamp(20px, 1.9vw, 26px); line-height: 1.2; letter-spacing: -.035em; white-space: nowrap; overflow: hidden; }
.track-copy h2 > span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track-copy h2.is-scrolling { text-align: left; -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.track-copy h2.is-scrolling > span { display: inline-block; max-width: none; overflow: visible; text-overflow: clip; animation: title-pan var(--title-duration, 14s) ease-in-out 1s infinite alternate both; will-change: transform; }
@keyframes title-pan { 0%, 12% { transform: translateX(0); } 88%, 100% { transform: translateX(calc(-1 * var(--title-shift, 0px))); } }
.track-copy > p:last-child { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.player-controls { display: flex; align-items: center; gap: 12px; }
.main-play { position: relative; flex: 0 0 48px; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--pink); color: white; cursor: pointer; box-shadow: 0 12px 28px rgba(255,0,140,.34); }
.main-play span, .mini-player button span { position: absolute; inset: 0; margin: auto; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid currentColor; transform: translateX(2px); }
.main-play.is-playing span, .mini-player button.is-playing span { width: 13px; height: 17px; border: 0; transform: none; background: linear-gradient(90deg, currentColor 0 38%, transparent 38% 62%, currentColor 62%); }
.stream-switcher { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); padding: 3px; border: 1px solid var(--line); border-radius: 15px; background: rgba(0,0,0,.24); }
.stream-switcher button { min-width: 0; padding: 6px 4px; border: 0; border-radius: 11px; color: var(--muted); background: transparent; cursor: pointer; }
.stream-switcher button.active { color: white; background: rgba(255,0,140,.94); }
.stream-switcher strong, .stream-switcher small { display: block; }
.stream-switcher strong { font-size: 12px; }
.stream-switcher small { margin-top: 1px; font-size: 8px; text-transform: uppercase; opacity: .7; }
.history-block { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }
.history-heading { display: flex; align-items: center; gap: 12px; color: #d9d4db; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.history-line { flex: 1; height: 1px; background: var(--line); }
.volume-control { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 8px; letter-spacing: .1em; }
.volume-control input { width: 82px; height: 18px; margin: 0; accent-color: var(--pink); cursor: pointer; }
.history-list { height: 140px; margin-top: 8px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: rgba(255,0,140,.65) rgba(255,255,255,.04); }
.history-list::-webkit-scrollbar { width: 5px; }
.history-list::-webkit-scrollbar-track { background: rgba(255,255,255,.04); }
.history-list::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(255,0,140,.65); }
.history-item, .history-placeholder { height: 28px; margin: 0; padding: 6px 8px 6px 0; color: #c8c3ca; font-size: 12px; line-height: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.history-item + .history-item { border-top: 1px solid rgba(255,255,255,.055); }

.section { padding-block: clamp(86px, 10vw, 150px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 60px; margin-bottom: 48px; }
.section-heading h2, .apps-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(38px, 5.2vw, 70px); line-height: .98; letter-spacing: -.06em; }
.section-heading > p { margin: 0; max-width: 520px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card { position: relative; min-width: 0; padding: 10px 10px 18px; border: 1px solid var(--line); border-radius: 24px; text-align: center; background: rgba(255,255,255,.035); transition: background .2s ease, transform .2s ease, border-color .2s ease; }
.team-card:hover { transform: translateY(-3px); border-color: rgba(255,0,140,.33); background: rgba(255,255,255,.065); }
.member-photo { display: block; overflow: hidden; width: 100%; aspect-ratio: 1; padding: 0; border: 0; border-radius: 18px; background: #151217; cursor: pointer; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform .35s ease, filter .35s ease; }
.member-photo:not(.member-photo-static):hover img { transform: scale(1.035); filter: saturate(1.08); }
.member-photo-static { cursor: default; }
.auto-card .member-photo img { padding: 11%; object-fit: contain; }
.member-live-badge { position: absolute; z-index: 3; top: 20px; left: 20px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: white; background: rgba(255,0,140,.93); box-shadow: 0 8px 28px rgba(255,0,140,.38); font-size: 10px; line-height: 1; font-weight: 900; letter-spacing: .09em; }
.member-live-badge[hidden] { display: none; }
.member-live-badge i { width: 7px; height: 7px; border-radius: 50%; background: white; box-shadow: 0 0 0 0 rgba(255,255,255,.6); animation: live-pulse 1.6s infinite; }
@keyframes live-pulse { 65% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } }
.team-card h3 { margin: 17px 4px 0; font-size: 20px; letter-spacing: -.025em; }

.member-dialog { width: min(760px, calc(100% - 28px)); max-height: min(88dvh, 860px); padding: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; color: var(--text); background: #171419; box-shadow: 0 40px 120px rgba(0,0,0,.72); }
.member-dialog::backdrop { background: rgba(3,2,4,.78); backdrop-filter: blur(12px); }
.member-dialog[open] { animation: dialog-in .2s ease-out; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.member-dialog-close { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: white; background: rgba(8,7,10,.72); font-size: 27px; line-height: 1; cursor: pointer; }
.member-dialog-head { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; padding: 34px 70px 28px 34px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 15% 25%, rgba(255,0,140,.18), transparent 45%); }
.member-dialog-head > img { width: 150px; aspect-ratio: 1; border-radius: 22px; object-fit: cover; object-position: center 25%; }
.member-dialog-head > img.is-autodj { padding: 13px; object-fit: contain; background: #100e12; }
.member-dialog-head .eyebrow { margin-bottom: 9px; }
.member-dialog-head h2 { margin: 0; font-size: clamp(34px, 6vw, 58px); line-height: 1; letter-spacing: -.055em; }
.member-dialog-copy { max-height: 50dvh; overflow-y: auto; padding: 30px 34px 38px; color: #ccc5ce; font-size: 16px; line-height: 1.78; overscroll-behavior: contain; }
.member-dialog-copy p { margin: 0; }
.member-dialog-copy p + p { margin-top: 18px; }

.apps-card { position: relative; overflow: hidden; display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; min-height: 520px; padding: clamp(38px, 7vw, 90px); border: 1px solid rgba(255,255,255,.13); border-radius: 40px; background: radial-gradient(circle at 24% 52%, rgba(255,0,140,.19), transparent 34%), linear-gradient(135deg, #21141e, #111013 70%); }
.apps-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -130px; top: -150px; border: 80px solid rgba(255,0,140,.08); border-radius: 50%; }
.app-art { position: relative; z-index: 1; justify-self: center; }
.app-art img { position: relative; z-index: 2; width: clamp(180px, 21vw, 270px); aspect-ratio: 1; border-radius: 27%; box-shadow: 0 35px 90px rgba(0,0,0,.5); transform: rotate(-6deg); }
.app-ring { position: absolute; inset: -23%; border: 1px solid rgba(255,0,140,.3); border-radius: 50%; box-shadow: inset 0 0 60px rgba(255,0,140,.1); }
.apps-copy { position: relative; z-index: 2; max-width: 600px; justify-self: end; }
.apps-copy > p:not(.eyebrow) { max-width: 570px; margin: 25px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.app-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.app-buttons a { min-width: 112px; padding: 13px 18px; border: 1px solid var(--line); border-radius: 13px; text-align: center; background: rgba(255,255,255,.055); font-size: 13px; font-weight: 800; transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.app-buttons a:hover, .app-buttons a:focus-visible { transform: translateY(-2px); border-color: var(--pink); background: var(--pink); box-shadow: 0 12px 32px rgba(255,0,140,.28); }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); line-height: 1.75; }
.mail-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--pink-2); font-size: clamp(20px, 2.6vw, 34px); font-weight: 850; letter-spacing: -.035em; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.social-grid a { display: flex; align-items: center; gap: 16px; min-height: 82px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.035); font-weight: 750; transition: background .2s ease, transform .2s ease; }
.social-grid a:hover { transform: translateY(-2px); background: rgba(255,255,255,.07); }
.social-grid img { width: 29px; height: 29px; object-fit: contain; }

.site-footer { border-top: 1px solid var(--line); background: rgba(0,0,0,.25); }
.footer-main { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 40px; padding-block: 54px; }
.footer-brand img { width: 92px; height: auto; max-height: 76px; object-fit: contain; border-radius: 0; box-shadow: none; }
.footer-main > p { max-width: 340px; margin: 0; color: var(--muted); font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px 26px; border-top: 1px solid var(--line); color: #77717a; font-size: 11px; }
.rights { display: inline-flex; align-items: center; gap: 14px; }
.rights img { width: 76px; max-height: 25px; object-fit: contain; opacity: .65; }

.mini-player { position: fixed; z-index: 60; left: 50%; bottom: 14px; width: min(680px, calc(100% - 28px)); min-height: 68px; transform: translateX(-50%); display: grid; grid-template-columns: 48px minmax(0, 1fr) auto 48px; align-items: center; gap: 13px; padding: 10px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 21px; background: rgba(22,19,24,.92); box-shadow: 0 20px 60px rgba(0,0,0,.55); backdrop-filter: blur(24px); }
.mini-player[hidden] { display: none; }
.mini-player img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.mini-player > div { min-width: 0; }
.mini-player strong, .mini-player > div span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-player strong { font-size: 13px; }
.mini-player > div span { color: var(--muted); font-size: 11px; }
.mini-volume-control input { width: 96px; }
.mini-player button { position: relative; width: 46px; height: 46px; border: 0; border-radius: 50%; color: white; background: var(--pink); cursor: pointer; }
.mini-player button span { border-top-width: 6px; border-bottom-width: 6px; border-left-width: 10px; }
.mini-player button.is-playing span { width: 11px; height: 14px; }

.not-found { min-height: 100vh; width: min(620px, calc(100% - 40px)); margin: auto; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.not-found img { width: 100px; border-radius: 24px; margin-bottom: 32px; }
.not-found h1 { margin: 0; font-size: clamp(42px, 8vw, 76px); line-height: .98; letter-spacing: -.06em; }
.not-found > p:not(.eyebrow) { color: var(--muted); margin-bottom: 28px; }

:focus-visible { outline: 3px solid rgba(255,85,178,.78); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .track-copy h2.is-scrolling { text-align: center; -webkit-mask-image: none; mask-image: none; } .track-copy h2.is-scrolling > span { display: block; overflow: hidden; text-overflow: ellipsis; animation: none !important; } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 780px; }
  .player-card { width: min(520px, 100%); justify-self: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-card { grid-template-columns: .75fr 1.25fr; }
  .contact-section { gap: 45px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 620px); --radius: 24px; }
  .nav { min-height: 70px; }
  .brand img { width: 38px; height: 38px; }
  .menu-toggle { display: block; color: white; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-links { position: absolute; top: 70px; left: 14px; right: 14px; display: none; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(16,14,18,.97); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
  .nav-links.open { display: grid; }
  .nav-links > a { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links > a::after { display: none; }
  .language-toggle { margin-top: 10px; width: 100%; }
  .volume-control { display: none; }
  .mini-player { width: min(620px, calc(100% - 28px)); grid-template-columns: 48px minmax(0, 1fr) 48px; }
  .hero { padding-top: 64px; gap: 50px; }
  .hero h1 { font-size: clamp(56px, 17vw, 82px); }
  .hero-lead { font-size: 17px; }
  .hero-stats { justify-content: space-between; }
  .hero-stats > div { min-width: 0; padding-inline: 14px; }
  .player-card { padding: 15px; border-radius: 29px; }
  .cover-wrap { border-radius: 21px; }
  .player-controls { gap: 10px; }
  .main-play { flex-basis: 54px; width: 54px; height: 54px; }
  .section { padding-block: 88px; }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; margin-bottom: 35px; }
  .section-heading h2, .apps-copy h2, .contact-copy h2 { font-size: clamp(40px, 13vw, 58px); }
  .member-dialog-head { grid-template-columns: 105px 1fr; gap: 18px; padding: 24px 58px 22px 20px; }
  .member-dialog-head > img { width: 105px; border-radius: 18px; }
  .member-dialog-copy { padding: 24px 20px 30px; font-size: 15px; }
  .apps-card { grid-template-columns: 1fr; gap: 60px; padding: 52px 24px; text-align: center; }
  .apps-copy { justify-self: center; }
  .apps-copy .eyebrow { justify-content: center; }
  .app-buttons { justify-content: center; }
  .contact-section { grid-template-columns: 1fr; }
  .social-grid a { min-height: 70px; padding: 13px; }
  .social-grid a span { font-size: 12px; }
  .footer-main { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 20px; }
  .footer-bottom { flex-wrap: wrap; justify-content: center; text-align: center; }
}

@media (hover: none) and (pointer: coarse) {
  .volume-control { display: none; }
  .mini-player { width: min(620px, calc(100% - 28px)); grid-template-columns: 48px minmax(0, 1fr) 48px; }
}

@media (max-width: 430px) {
  .hero-actions { display: grid; }
  .hero-actions > * { width: 100%; }
  .hero-stats dt { font-size: 17px; }
  .hero-stats dd { font-size: 10px; }
  .stream-switcher strong { font-size: 10px; }
  .track-copy h2 { font-size: 20px; }
  .team-grid { gap: 10px; }
  .team-card { padding: 7px 7px 14px; border-radius: 18px; }
  .member-photo { border-radius: 14px; }
  .member-live-badge { top: 14px; left: 14px; padding: 6px 8px; font-size: 9px; }
  .team-card h3 { margin-top: 13px; font-size: 17px; }
  .social-grid { grid-template-columns: 1fr; }
}
