@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
:root {
  --bg: #05060A;
  --bg-2: #0B0D14;
  --panel: rgba(14, 18, 30, 0.82);
  --panel-solid: #101523;
  --line: rgba(255,255,255,0.08);
  --text: #F4F7FF;
  --muted: #9AA3B8;
  --blue: #1da1ff;
  --blue-2: #2d7dff;
  --cyan: #37E7FF;
  --violet: #8A4DFF;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 22px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(29,161,255,0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(138,77,255,0.10), transparent 22%),
    linear-gradient(180deg, #04050A 0%, #070912 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 34px), var(--maxw)); margin: 0 auto; }
.section { padding: 80px 0; }
.section.tight { padding: 50px 0; }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:20px; margin-bottom:28px; }
.kicker {
  display:inline-block;
  font-size:12px;
  letter-spacing: 1px;
  font-style: normal;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
h1, h2, h3, h4, p { margin: 0; }
h1 { font-size: clamp(40px, 7vw, 96px); line-height: .92; letter-spacing: -.04em; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1; letter-spacing: -.03em; }
h3 { font-size: 20px; }
p.lead { color: #d6def0; font-size: 18px; line-height: 1.65; max-width: 700px; }
p.muted, .muted { color: var(--muted); line-height: 1.65; }

.topbar {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5, 6, 10, 0.68);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav {
  display:flex; align-items:center; justify-content:space-between;
  min-height: 88px; gap: 18px;
}
.brand img { height: 46px; width: auto; }
.menu-toggle {
  display:none; background:none; border:1px solid var(--line); color:var(--text);
  border-radius: 12px; padding:10px 12px; cursor:pointer;
}
.menu {
  display:flex; align-items:center; gap: 8px; flex-wrap: wrap;
}
.menu a {
  color: #dce6f9;
  padding: 12px 14px;
  border-radius: 14px;
  transition: .25s ease;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu a:hover, .menu a.active { background: rgba(29,161,255,0.12); color: white; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height: 50px; padding: 0 22px; border-radius: 16px;
  border:1px solid transparent; font-weight:700; transition: .25s ease;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 30px rgba(29,161,255,.22);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: white;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }
.btn-sm { min-height: 42px; padding: 0 18px; border-radius: 14px; font-size: 14px; }

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display:flex; align-items:center;
  overflow:hidden;
}
.hero::before {
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 18% 70%, rgba(29,161,255,0.25), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(138,77,255,0.18), transparent 22%),
    linear-gradient(180deg, rgba(3,4,8,0.26), rgba(3,4,8,0.86));
}
.hero-grid {
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center;
}
.hero-copy { padding: 74px 0; }
.hero-logo { width: min(420px, 82%); margin-bottom: 22px; filter: drop-shadow(0 18px 40px rgba(29,161,255,0.15)); }
.claim { font-size: clamp(22px, 2vw, 30px); color:#f3f7ff; margin-bottom: 14px; letter-spacing: -.03em; }
.hero-cta { display:flex; flex-wrap:wrap; gap:12px; margin-top: 28px; }
.hero-meta { display:flex; flex-wrap:wrap; gap:12px; margin-top: 22px; }
.pill {
  padding: 10px 14px; border-radius: 999px; font-size: 13px; color: #ebf4ff;
  background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
}
.hero-visual {
  position:relative;
  min-height: 520px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(29,161,255,0.18), rgba(55,231,255,0.08) 28%, rgba(138,77,255,0.10) 100%),
    linear-gradient(180deg, rgba(9,12,22,0.98), rgba(8,10,18,0.88));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-visual::before {
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,1));
}
.orb, .orb2, .orb3 {
  position:absolute; border-radius: 50%; filter: blur(10px);
}
.orb { width:220px; height:220px; background: radial-gradient(circle, rgba(29,161,255,.95), rgba(29,161,255,.04) 68%); top:40px; right:-40px; }
.orb2 { width:200px; height:200px; background: radial-gradient(circle, rgba(138,77,255,.82), rgba(138,77,255,0.02) 70%); bottom: 40px; left: -30px; }
.orb3 { width:140px; height:140px; background: radial-gradient(circle, rgba(55,231,255,.92), rgba(55,231,255,0.03) 70%); top: 46%; left: 46%; transform: translate(-50%, -50%); }
.visual-card {
  position:absolute; border-radius: 24px; border:1px solid rgba(255,255,255,0.08);
  background: rgba(6,10,20,0.72); box-shadow: var(--shadow); backdrop-filter: blur(12px);
}
.visual-card.release { left: 30px; bottom: 30px; width: 290px; padding: 18px; }
.visual-card.signal { right: 30px; top: 30px; width: 230px; padding: 16px; }
.visual-card.wave { right: 36px; bottom: 24px; width: 250px; padding: 16px; }
.release-cover {
  aspect-ratio: 1 / 1; border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(29,161,255,.22), rgba(10,14,24,1) 45%, rgba(138,77,255,.18)),
    linear-gradient(180deg, #07111E, #13192A);
  display:grid; place-items:center; margin-bottom: 14px;
  border:1px solid rgba(255,255,255,0.08);
}
.cover-logo { width: 72%; opacity: .94; }
.meta-row { display:flex; justify-content:space-between; align-items:center; gap:10px; font-size:14px; color: var(--muted); }
.wave-bars { display:flex; align-items:flex-end; gap:6px; height: 60px; margin-top: 18px; }
.wave-bars span {
  display:block; width: 10px; border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  animation: pulse 1.8s ease-in-out infinite;
}
.wave-bars span:nth-child(2) { animation-delay: .15s; }
.wave-bars span:nth-child(3) { animation-delay: .3s; }
.wave-bars span:nth-child(4) { animation-delay: .45s; }
.wave-bars span:nth-child(5) { animation-delay: .6s; }
.wave-bars span:nth-child(6) { animation-delay: .75s; }
.wave-bars span:nth-child(7) { animation-delay: .9s; }
@keyframes pulse {
  0%, 100% { height: 18px; opacity: .55; }
  50% { height: 60px; opacity: 1; }
}

.grid-3, .grid-4, .cards-grid {
  display:grid; gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.cards-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card {
  border:1px solid rgba(255,255,255,0.08); border-radius: 24px;
  background: linear-gradient(180deg, rgba(11,15,24,0.95), rgba(12,14,22,0.9));
  overflow:hidden; box-shadow: var(--shadow);
}
.card-body { padding: 22px; }
.card-top {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(29,161,255,.25), rgba(12,15,24,1) 50%, rgba(138,77,255,.18));
  position:relative;
}
.card-top.square { aspect-ratio: 1 / 1; }
.card-top::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 34%);
}
.play-badge {
  position:absolute; right: 16px; bottom: 16px;
  width: 52px; height: 52px; border-radius:50%;
  display:grid; place-items:center; font-size: 18px; color:white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 10px 28px rgba(29,161,255,.18);
}
.card-tag {
  display:inline-block; margin-bottom: 10px; color: var(--cyan);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.stat-grid {
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:18px;
}
.stat {
  padding:24px; border-radius:22px; background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
}
.stat strong { display:block; font-size: 34px; margin-bottom:8px; }

.panel {
  padding: 26px; border-radius: 28px;
  background: linear-gradient(180deg, rgba(10,13,22,0.95), rgba(10,12,18,0.84));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.panel-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.list { display:grid; gap: 14px; }
.list-item {
  display:flex; justify-content:space-between; align-items:center; gap:18px;
  padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);
}
.badge {
  padding: 8px 12px; border-radius: 999px;
  background: rgba(29,161,255,0.14); color: #dff1ff; font-size: 12px;
}
.split {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items:center;
}
.media-showcase {
  aspect-ratio: 16 / 10; border-radius: 28px;
  background: linear-gradient(135deg, rgba(29,161,255,.20), rgba(12,15,24,1) 55%, rgba(138,77,255,.18));
  border:1px solid rgba(255,255,255,0.08); position:relative; overflow:hidden;
  box-shadow: var(--shadow);
}
.media-showcase .play-badge { width: 76px; height: 76px; font-size: 26px; right: 24px; bottom: 24px; }
.placeholder-tiles {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px;
}
.tile {
  aspect-ratio: 1 / 1; border-radius: 20px; border:1px solid rgba(255,255,255,0.08);
  background: linear-gradient(145deg, rgba(29,161,255,.18), rgba(10,14,24,1) 50%, rgba(138,77,255,.14));
}

.cta-block {
  padding: 34px; border-radius: 30px; overflow:hidden; position:relative;
  border:1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(29,161,255,.16), rgba(8,10,16,1) 42%, rgba(138,77,255,.12));
}
.cta-block::before {
  content:""; position:absolute; inset:auto -20% -60% auto; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(55,231,255,.18), transparent 66%);
}
.footer {
  padding: 42px 0; border-top:1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
}
.footer-grid { display:flex; justify-content:space-between; gap:20px; align-items:center; flex-wrap:wrap; }
.small { font-size: 14px; color: var(--muted); }

.page-hero {
  padding: 92px 0 44px;
}
.page-hero .hero-mini {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items:center;
}
.hero-panel {
  min-height: 280px; border-radius: 30px; border:1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(29,161,255,.18), rgba(12,15,24,1) 55%, rgba(138,77,255,.16));
  position:relative; overflow:hidden;
}
.hero-panel::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size:42px 42px; }

/* Admin */
.admin-page { background: #06070B; }
.admin-wrap { display:grid; grid-template-columns: 290px 1fr; min-height: 100vh; }
.admin-sidebar {
  padding: 24px; border-right:1px solid rgba(255,255,255,0.05); background: #0A0C13;
}
.admin-brand img { height: 34px; margin-bottom: 24px; }
.admin-menu { display:grid; gap:8px; }
.admin-menu a {
  padding: 13px 15px; border-radius: 14px; color: #d9e5ff; border:1px solid transparent;
}
.admin-menu a.active, .admin-menu a:hover { background: rgba(29,161,255,0.12); border-color: rgba(29,161,255,0.18); }
.admin-content { padding: 28px; }
.admin-header { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom: 24px; }
.admin-stats { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:18px; }
.table {
  width:100%; border-collapse: collapse; overflow:hidden;
}
.table-wrap { overflow:auto; }
.table th, .table td {
  text-align:left; padding: 14px 12px; border-bottom:1px solid rgba(255,255,255,0.06);
}
.table th { color: #cfe0ff; font-size:13px; text-transform:uppercase; letter-spacing: .08em; }

@media (max-width: 1080px) {
  .hero-grid, .split, .panel-grid, .page-hero .hero-mini { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards-grid, .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat-grid, .admin-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-sidebar { border-right:none; border-bottom:1px solid rgba(255,255,255,0.05); }
}

@media (max-width: 760px) {
  h1 { font-size: 48px; }
  .brand img { height: 42px; }
  .nav { min-height: 74px; }
  .hero-logo { width: min(84vw, 340px); }
  .menu-toggle { display:inline-flex; }
  .menu {
    display:none; position:absolute; left: 16px; right: 16px; top: 74px;
    flex-direction:column; align-items:stretch; padding: 12px;
    border-radius: 20px; background: rgba(6,9,16,0.96); border:1px solid rgba(255,255,255,0.08);
  }
  .menu.open { display:flex; }
  .hero { min-height: auto; }
  .hero-copy { padding: 44px 0 14px; }
  .hero-visual { min-height: 500px; }
  .cards-grid, .grid-3, .grid-4, .stat-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .visual-card.release, .visual-card.signal, .visual-card.wave { width:auto; left:18px; right:18px; }
  .visual-card.signal { top: 18px; }
  .visual-card.release { bottom: 160px; }
  .visual-card.wave { bottom: 18px; }
  .footer-grid { flex-direction: column; align-items:flex-start; }
}


.artist-photo-card {
  position: absolute;
  inset: 28px 28px 28px auto;
  width: min(42%, 330px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.35);
}
.artist-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-photo-glow {
  position: absolute;
  right: 10%;
  top: 10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,161,255,.28), transparent 68%);
  filter: blur(4px);
}
.media-photo {
  min-height: 420px;
  background-image:
    linear-gradient(90deg, rgba(5,6,10,.22), rgba(5,6,10,.78)),
    url('../img/bywyou-artist-promo.jpg');
  background-size: cover;
  background-position: center;
}
@media (max-width: 760px) {
  .artist-photo-card {
    width: 52%;
    right: 18px;
    top: 88px;
    bottom: 88px;
  }
}


/* BYWYOU homepage refresh v5 */
.home-hero-v2 {
  padding: 12px 0 18px;
}
.hero-copy-v2 {
  max-width: 610px;
}
.hero-logo-v2 {
  margin-top: 8px;
}
.hero-lead-v2 {
  max-width: 560px;
  font-size: 20px;
}
.hero-meta-v2 .pill {
  background: rgba(255,255,255,0.04);
}
.hero-stage {
  min-height: 610px;
  background:
    radial-gradient(circle at 18% 22%, rgba(29,161,255,0.20), transparent 24%),
    radial-gradient(circle at 85% 22%, rgba(138,77,255,0.18), transparent 28%),
    linear-gradient(145deg, rgba(6,10,18,0.98), rgba(11,14,24,0.94));
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-stage::before {
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
}
.stage-lines {
  position:absolute; inset:-10% -10% auto auto; width: 72%; height: 82%; pointer-events:none;
  background:
    linear-gradient(150deg, transparent 14%, rgba(29,161,255,.20) 14.5%, transparent 15.5%),
    linear-gradient(155deg, transparent 24%, rgba(255,255,255,.08) 24.4%, transparent 25.3%),
    linear-gradient(150deg, transparent 36%, rgba(138,77,255,.20) 36.3%, transparent 37.2%),
    linear-gradient(148deg, transparent 48%, rgba(29,161,255,.16) 48.4%, transparent 49.2%);
  opacity: .95;
}
.stage-glow {
  position:absolute; border-radius:50%; filter: blur(16px);
}
.stage-glow-a {
  width: 240px; height: 240px; left: -40px; bottom: -20px;
  background: radial-gradient(circle, rgba(29,161,255,.55), rgba(29,161,255,0.02) 70%);
}
.stage-glow-b {
  width: 300px; height: 300px; right: -20px; top: -30px;
  background: radial-gradient(circle, rgba(138,77,255,.42), rgba(138,77,255,0.02) 72%);
}
.stage-ring {
  position:absolute; right: 8%; top: 9%; width: 210px; height: 210px; border-radius:50%;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 0 12px rgba(29,161,255,.04), 0 0 0 28px rgba(29,161,255,.03);
  opacity: .8;
}
.stage-photo-wrap {
  position:absolute; right: 40px; bottom: 0; width: min(58%, 430px); height: 96%;
  border-radius: 30px; overflow:hidden;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,1));
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.stage-photo-wrap::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(5,6,10,.45), rgba(5,6,10,0) 34%, rgba(5,6,10,.18));
}
.stage-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.glass-card {
  position:absolute;
  border:1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7,11,19,0.82), rgba(8,11,18,0.68));
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 42px rgba(0,0,0,0.34);
}
.stage-badge {
  position:absolute; left: 30px; top: 30px;
  padding: 12px 16px; border-radius: 999px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: white; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
}
.stage-release {
  left: 30px; bottom: 32px; width: min(48%, 290px); padding: 22px;
}
.stage-release h3 { font-size: 24px; margin-bottom: 10px; }
.stage-meter {
  left: 30px; top: 112px; width: 200px; padding: 18px 18px 16px;
}
.compact-bars { height: 46px; margin-top: 8px; }
.compact-bars span { width: 9px; }
.quick-links-section { padding-top: 10px; }
.quick-grid {
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px;
}
.quick-card {
  display:block; padding: 24px; min-height: 168px; border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12,15,24,0.95), rgba(9,11,18,0.9));
  box-shadow: var(--shadow); transition: .28s ease;
}
.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29,161,255,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.38);
}
.quick-card h3 { margin-bottom: 12px; }
.producer-banner {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items:center;
  padding: 34px; border-radius: 30px; position:relative; overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at left center, rgba(29,161,255,.16), transparent 24%),
    radial-gradient(circle at right top, rgba(138,77,255,.16), transparent 28%),
    linear-gradient(135deg, rgba(7,11,19,1), rgba(10,13,22,.96));
}
.producer-banner::after {
  content:""; position:absolute; inset:auto 0 0 auto; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(55,231,255,.10), transparent 66%);
}
.banner-lead { max-width: 720px; margin-top: 16px; }
.banner-cta { justify-content:flex-end; }

@media (max-width: 1080px) {
  .hero-grid-v2, .producer-banner { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .banner-cta { justify-content:flex-start; }
}

@media (max-width: 760px) {
  .home-hero-v2 { padding-top: 0; }
  .hero-copy-v2 { max-width: none; }
  .hero-lead-v2 { font-size: 18px; }
  .hero-stage { min-height: 560px; }
  .stage-badge { left: 18px; top: 18px; padding: 10px 14px; }
  .stage-ring { right: 8px; top: 14px; width: 150px; height: 150px; }
  .stage-photo-wrap { right: 14px; width: 54%; height: 78%; }
  .stage-release { left: 18px; right: 45%; width: auto; bottom: 18px; padding: 18px; }
  .stage-meter { left: 18px; top: 74px; width: 170px; }
  .producer-banner { padding: 24px; }
}


/* V6 surreal game / software mode */
.space-mode {
  background:
    radial-gradient(circle at 20% 10%, rgba(29,161,255,0.12), transparent 18%),
    radial-gradient(circle at 80% 8%, rgba(138,77,255,0.18), transparent 16%),
    radial-gradient(circle at 60% 60%, rgba(55,231,255,0.06), transparent 20%),
    linear-gradient(180deg, #04050A 0%, #050813 100%);
}
.hero-cosmos {
  min-height: calc(100vh - 88px);
  overflow: hidden;
}
.hero-cosmos::before {
  background:
    radial-gradient(circle at 18% 42%, rgba(29,161,255,0.18), transparent 22%),
    radial-gradient(circle at 76% 20%, rgba(138,77,255,0.16), transparent 18%),
    linear-gradient(180deg, rgba(2,4,10,0.10), rgba(2,4,10,0.76));
}
.hero-cosmos-grid {
  display:grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 44px;
  align-items:center;
}
.hero-logo-v3 {
  width: min(360px, 76%);
  margin: 12px 0 20px;
}
.cosmos-title {
  font-size: clamp(54px, 9vw, 120px);
  line-height: .86;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cosmos-lead {
  max-width: 600px;
  font-size: 20px;
}
.cosmos-copy {
  position: relative;
  z-index: 2;
}
.cosmos-stage {
  position:relative;
  min-height: 670px;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(29,161,255,0.08), transparent 26%),
    linear-gradient(145deg, rgba(6,8,16,0.98), rgba(8,10,18,0.96));
}
.starfield {
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.55) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 38%, rgba(255,255,255,.4) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 22%, rgba(255,255,255,.46) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 68%, rgba(255,255,255,.42) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 76%, rgba(255,255,255,.42) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 52%, rgba(255,255,255,.36) 0 1px, transparent 2px);
  opacity: .75;
}
.planet {
  position:absolute; border-radius:50%; filter: blur(1px);
}
.planet-a {
  width: 160px; height: 160px; right: 8%; top: 9%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), rgba(29,161,255,.36) 34%, rgba(138,77,255,.12) 68%, rgba(138,77,255,0) 72%);
  box-shadow: 0 0 100px rgba(29,161,255,.10);
}
.planet-b {
  width: 82px; height: 82px; left: 12%; bottom: 18%;
  background: radial-gradient(circle at 34% 34%, rgba(255,255,255,.22), rgba(55,231,255,.34) 40%, rgba(55,231,255,0) 72%);
}
.portal-ring {
  position:absolute; left:50%; top:50%; transform: translate(-50%, -50%); border-radius:50%;
  border: 1px solid rgba(255,255,255,.08);
}
.portal-ring-a {
  width: 430px; height: 430px;
  box-shadow: 0 0 0 14px rgba(29,161,255,.05), 0 0 120px rgba(29,161,255,.16);
}
.portal-ring-b {
  width: 290px; height: 290px;
  box-shadow: 0 0 0 10px rgba(138,77,255,.05), inset 0 0 70px rgba(138,77,255,.08);
}
.portal-core {
  position:absolute; left:50%; top:50%; transform: translate(-50%, -50%);
  width: 200px; height: 200px; border-radius:50%;
  display:grid; place-items:center;
  background:
    radial-gradient(circle, rgba(29,161,255,.24), rgba(29,161,255,.04) 54%, rgba(29,161,255,0) 70%),
    linear-gradient(180deg, rgba(11,15,24,.84), rgba(8,10,18,.94));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 60px rgba(29,161,255,.16);
}
.core-logo-wrap {
  width: 78%;
  filter: drop-shadow(0 0 24px rgba(29,161,255,.18));
}
.hud-card {
  position:absolute;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(8,11,18,.82), rgba(8,11,18,.62));
  box-shadow: 0 24px 54px rgba(0,0,0,.30);
  backdrop-filter: blur(12px);
}
.hud-card-a { left: 28px; top: 28px; width: 250px; padding: 20px; }
.hud-card-b { right: 26px; bottom: 34px; width: 210px; padding: 18px; }
.hud-card-c { left: 42px; bottom: 34px; width: 230px; padding: 18px; }
.status-list { list-style:none; margin: 12px 0 0; padding:0; display:grid; gap:10px; }
.status-list li { display:flex; justify-content:space-between; gap:10px; font-size: 14px; }
.status-list li strong { color:#fff; letter-spacing:.08em; font-size: 12px; }
.cosmic-bars { height: 54px; margin-top: 12px; }
.orbit-section { padding-top: 26px; }
.orbit-grid {
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
}
.orbit-card {
  padding: 28px; border-radius: 30px; position:relative; overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at right top, rgba(138,77,255,.14), transparent 26%),
    linear-gradient(180deg, rgba(10,14,24,.95), rgba(8,10,17,.92));
  box-shadow: var(--shadow);
}
.orbit-card::before {
  content:""; position:absolute; inset:auto -60px -60px auto; width:160px; height:160px; border-radius:50%;
  background: radial-gradient(circle, rgba(29,161,255,.18), transparent 66%);
}
.orbit-card-featured { min-height: 220px; }
.mini-orbit { min-height: 220px; }
.game-card {
  position:relative;
  background:
    linear-gradient(180deg, rgba(11,15,24,0.96), rgba(9,12,20,0.94));
}
.game-card::after {
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(135deg, transparent 0 78%, rgba(29,161,255,.10) 78% 82%, transparent 82%);
  pointer-events:none;
}
.cosmos-banner {
  background:
    radial-gradient(circle at left center, rgba(29,161,255,.16), transparent 24%),
    radial-gradient(circle at right top, rgba(138,77,255,.18), transparent 26%),
    linear-gradient(135deg, rgba(8,11,18,1), rgba(9,12,20,.96));
}
@keyframes floaty {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.planet-a, .hud-card-a, .hud-card-b, .hud-card-c { animation: floaty 8s ease-in-out infinite; }
.hud-card-b { animation-delay: 1.2s; }
.hud-card-c { animation-delay: 2s; }
@media (max-width: 1080px) {
  .hero-cosmos-grid, .orbit-grid { grid-template-columns: 1fr; }
  .cosmos-stage { min-height: 620px; }
}
@media (max-width: 760px) {
  .hero-cosmos-grid { gap: 18px; }
  .hero-logo-v3 { width: min(280px, 72vw); }
  .cosmos-title { font-size: 62px; }
  .cosmos-lead { font-size: 18px; }
  .cosmos-stage { min-height: 560px; }
  .portal-ring-a { width: 300px; height: 300px; }
  .portal-ring-b { width: 210px; height: 210px; }
  .portal-core { width: 140px; height: 140px; }
  .planet-a { width: 120px; height: 120px; }
  .hud-card-a { left: 16px; top: 16px; width: 190px; padding: 16px; }
  .hud-card-b { right: 16px; bottom: 16px; width: 160px; padding: 14px; }
  .hud-card-c { left: 16px; bottom: 16px; width: 170px; padding: 14px; }
}


/* V7 futuristic software / game shell */
.future-os {
  background:
    radial-gradient(circle at 10% 12%, rgba(29,161,255,0.10), transparent 16%),
    radial-gradient(circle at 84% 10%, rgba(138,77,255,0.16), transparent 16%),
    linear-gradient(180deg, #03050A 0%, #050913 100%);
}
.ai-os-hero {
  min-height: calc(100vh - 88px);
  padding-top: 8px;
}
.ai-os-layout {
  display:grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 42px;
  align-items:center;
}
.ai-os-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.ai-os-title {
  margin: 4px 0 16px;
  font-size: clamp(62px, 10vw, 130px);
  line-height: .82;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.ai-os-lead {
  max-width: 520px;
  font-size: 20px;
}
.ai-os-stage {
  position: relative;
  min-height: 690px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(29,161,255,0.08), transparent 20%),
    linear-gradient(145deg, rgba(7,11,18,0.98), rgba(8,10,17,0.96));
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}
.ai-os-stage::before {
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,1));
}
.os-grid-lines {
  position:absolute; inset:-10% -10% -10% -10%;
  background:
    linear-gradient(122deg, transparent 20%, rgba(29,161,255,.18) 20.6%, transparent 21.3%),
    linear-gradient(132deg, transparent 40%, rgba(138,77,255,.16) 40.6%, transparent 41.4%),
    linear-gradient(140deg, transparent 61%, rgba(29,161,255,.12) 61.5%, transparent 62.2%);
  opacity: .85;
}
.os-planet {
  position:absolute;
  width: 220px; height: 220px; right: 8%; top: 8%; border-radius:50%;
  background: radial-gradient(circle at 34% 34%, rgba(255,255,255,.22), rgba(29,161,255,.30) 34%, rgba(138,77,255,.16) 62%, rgba(138,77,255,0) 72%);
  box-shadow: 0 0 80px rgba(29,161,255,.12);
  animation: floaty 9s ease-in-out infinite;
}
.os-halo {
  position:absolute; left: 43%; top: 18%; width: 380px; height: 380px; border-radius:50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 16px rgba(29,161,255,.04), 0 0 0 34px rgba(29,161,255,.03), 0 0 120px rgba(29,161,255,.12);
}
.os-photo-module {
  position:absolute; right: 8%; bottom: 0; width: min(48%, 390px); height: 95%;
  border-radius: 30px 30px 0 0;
  overflow:hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
  box-shadow: 0 30px 80px rgba(0,0,0,.48);
}
.os-photo-module::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(5,7,12,.30), rgba(5,7,12,0) 38%, rgba(5,7,12,.24));
  z-index: 2;
}
.os-photo-module img {
  width:100%; height:100%; object-fit:cover; object-position:center center; display:block;
  filter: saturate(1.03) contrast(1.03);
}
.photo-scan {
  position:absolute; left:0; right:0; top:8%; height: 14px; z-index:3;
  background: linear-gradient(90deg, rgba(29,161,255,0), rgba(55,231,255,.95), rgba(29,161,255,0));
  box-shadow: 0 0 22px rgba(55,231,255,.55);
  animation: scanMove 5s linear infinite;
}
@keyframes scanMove {
  0% { top: 10%; }
  50% { top: 78%; }
  100% { top: 10%; }
}
.os-panel {
  position:absolute;
  border:1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8,11,18,.84), rgba(8,11,18,.64));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 54px rgba(0,0,0,.34);
}
.os-panel-main { left: 26px; top: 28px; width: min(44%, 300px); padding: 22px; }
.os-panel-wave { left: 34px; bottom: 34px; width: 210px; padding: 18px; }
.os-panel-stats { right: 31%; bottom: 38px; width: 220px; padding: 18px; }
.os-panel-mini { right: 26px; top: 58%; width: 170px; padding: 18px; transform: translateY(-50%); }
.os-panel-mini h3 { margin-top: 8px; }
.ai-zones-section { padding-top: 18px; }
.ai-zones-grid {
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 18px;
}
.zone-tile {
  display:block;
  position:relative;
  padding: 26px;
  border-radius: 30px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at right top, rgba(29,161,255,.12), transparent 24%),
    linear-gradient(180deg, rgba(11,15,24,.96), rgba(8,10,17,.92));
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: .28s ease;
}
.zone-tile::after {
  content:"";
  position:absolute; inset:auto -34px -34px auto; width: 130px; height:130px; border-radius:50%;
  background: radial-gradient(circle, rgba(138,77,255,.16), transparent 65%);
}
.zone-tile:hover { transform: translateY(-4px); border-color: rgba(29,161,255,.18); }
.zone-xl { grid-row: span 2; min-height: 360px; }
.ai-lab-section { padding-top: 10px; }
.ai-lab-grid {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items:stretch;
}
.lab-core-card {
  padding: 34px; border-radius: 32px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at left center, rgba(29,161,255,.12), transparent 24%),
    linear-gradient(140deg, rgba(10,14,24,.98), rgba(8,10,17,.94));
  box-shadow: var(--shadow);
}
.lab-stack { display:grid; gap: 18px; }
.lab-chip {
  padding: 24px; min-height: 128px; border-radius: 26px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(11,15,24,.96), rgba(8,10,17,.92));
  box-shadow: var(--shadow);
}
.ai-final-banner {
  background:
    radial-gradient(circle at left center, rgba(29,161,255,.16), transparent 24%),
    radial-gradient(circle at right top, rgba(138,77,255,.18), transparent 26%),
    linear-gradient(135deg, rgba(8,11,18,1), rgba(9,12,20,.96));
}
.media-photo-v7 {
  background-image:
    linear-gradient(90deg, rgba(5,6,10,.22), rgba(5,6,10,.72)),
    url('../img/bywyou-artist-studio-v7.png');
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1080px) {
  .ai-os-layout, .ai-lab-grid { grid-template-columns: 1fr; }
  .ai-zones-grid { grid-template-columns: 1fr 1fr; }
  .zone-xl { grid-row: span 1; min-height: 240px; }
  .os-panel-stats { right: 24px; bottom: 28px; }
}
@media (max-width: 760px) {
  .ai-os-layout { gap: 18px; }
  .ai-os-title { font-size: 66px; }
  .ai-os-lead { font-size: 18px; }
  .ai-os-stage { min-height: 600px; }
  .os-halo { width: 240px; height: 240px; left: 44%; top: 18%; }
  .os-planet { width: 140px; height: 140px; right: 6%; top: 8%; }
  .os-photo-module { width: 48%; right: 12px; height: 84%; }
  .os-panel-main { left: 16px; top: 16px; width: 210px; padding: 16px; }
  .os-panel-wave { left: 16px; bottom: 16px; width: 156px; padding: 14px; }
  .os-panel-stats { right: 16px; bottom: 16px; width: 156px; padding: 14px; }
  .os-panel-mini { right: 16px; top: 56%; width: 140px; padding: 14px; }
  .ai-zones-grid { grid-template-columns: 1fr; }
}


/* V8 less text, more photo / graphics */
.less-text-mode .section {
  padding-top: 58px;
  padding-bottom: 58px;
}
.ai-os-hero-v8 {
  padding-top: 0;
}
.ai-os-layout-v8 {
  grid-template-columns: .58fr 1.42fr;
  gap: 28px;
}
.ai-os-copy-v8 {
  max-width: 420px;
}
.ai-os-title-v8 {
  font-size: clamp(68px, 10vw, 146px);
  line-height: .78;
  margin-bottom: 12px;
}
.ai-os-lead-v8 {
  font-size: 18px;
  max-width: 360px;
  color: #dbe5f8;
}
.hero-meta-v8 {
  gap: 10px;
}
.hero-meta-v8 .pill {
  min-width: 72px;
  text-align: center;
  letter-spacing: .14em;
}
.ai-os-stage-v8 {
  min-height: 760px;
  background:
    radial-gradient(circle at 55% 46%, rgba(29,161,255,0.10), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(138,77,255,0.12), transparent 16%),
    linear-gradient(145deg, rgba(7,11,18,0.99), rgba(8,10,17,0.97));
}
.os-halo-v8 {
  left: 40%;
  top: 12%;
  width: 470px;
  height: 470px;
  box-shadow: 0 0 0 18px rgba(29,161,255,.04), 0 0 0 44px rgba(29,161,255,.025), 0 0 160px rgba(29,161,255,.12);
}
.os-photo-module-v8 {
  right: 3%;
  bottom: 0;
  width: min(58%, 520px);
  height: 100%;
  border-radius: 40px 40px 0 0;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}
.os-photo-module-v8::after {
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(5,7,12,0), rgba(5,7,12,.42));
  z-index: 2;
}
.os-panel-main-v8 {
  left: 22px;
  top: 24px;
  width: 176px;
  padding: 16px;
}
.os-panel-main-v8 h3,
.os-panel-main-v8 p {
  display:none;
}
.os-panel-wave-v8 {
  left: 22px;
  bottom: 24px;
  width: 184px;
  padding: 14px 16px;
}
.os-panel-stats-v8 {
  right: 40%;
  bottom: 26px;
  width: 170px;
  padding: 14px 16px;
}
.os-panel-stats-v8 .status-list li {
  font-size: 12px;
}
.floating-chip {
  position:absolute;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,11,18,.52);
  backdrop-filter: blur(12px);
  color: #eef4ff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  letter-spacing: .14em;
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}
.chip-a { left: 26%; top: 14%; }
.chip-b { left: 34%; top: 78%; }
.chip-c { right: 9%; top: 16%; }
.v8-zones-section {
  padding-top: 18px;
}
.ai-zones-grid-v8 {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(160px, auto);
}
.zone-tile-v8 {
  min-height: 180px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.zone-tile-v8 p {
  display:none;
}
.zone-tile-v8 h3 {
  font-size: clamp(22px, 2.3vw, 34px);
  margin-bottom: 0;
}
.zone-xl.zone-tile-v8 {
  min-height: 210px;
}
.visual-band-section {
  padding-top: 22px;
}
.visual-band {
  position:relative;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items:center;
  min-height: 260px;
  padding: 40px;
  border-radius: 36px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 20% 50%, rgba(29,161,255,.14), transparent 26%),
    radial-gradient(circle at 86% 24%, rgba(138,77,255,.18), transparent 22%),
    linear-gradient(135deg, rgba(8,11,18,1), rgba(9,12,20,.96));
  overflow:hidden;
  box-shadow: var(--shadow);
}
.visual-band::before,
.visual-band::after {
  content:"";
  position:absolute;
  border-radius:50%;
}
.visual-band::before {
  width: 320px;
  height: 320px;
  right: -40px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(29,161,255,.16), transparent 68%);
}
.visual-band::after {
  width: 220px;
  height: 220px;
  right: 22%;
  top: -80px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 16px rgba(29,161,255,.03), 0 0 0 34px rgba(138,77,255,.03);
}
.visual-band-copy {
  position:relative;
  z-index:2;
}
.visual-band-copy h2 {
  margin-bottom: 0;
}
.visual-band-actions {
  position:relative;
  z-index:2;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
@media (max-width: 1080px) {
  .ai-os-layout-v8 {
    grid-template-columns: 1fr;
  }
  .ai-os-copy-v8 {
    max-width:none;
  }
  .ai-os-stage-v8 {
    min-height: 680px;
  }
  .ai-zones-grid-v8 {
    grid-template-columns: 1fr 1fr;
  }
  .visual-band {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .ai-os-title-v8 {
    font-size: 74px;
  }
  .ai-os-layout-v8 {
    gap: 18px;
  }
  .ai-os-stage-v8 {
    min-height: 620px;
  }
  .os-halo-v8 {
    width: 250px;
    height: 250px;
    left: 38%;
    top: 16%;
  }
  .os-photo-module-v8 {
    width: 54%;
    right: 10px;
    height: 88%;
  }
  .os-panel-main-v8 {
    left: 14px;
    top: 14px;
    width: 145px;
    padding: 12px 14px;
  }
  .os-panel-wave-v8 {
    left: 14px;
    bottom: 14px;
    width: 148px;
    padding: 12px 14px;
  }
  .os-panel-stats-v8 {
    right: 14px;
    bottom: 14px;
    width: 130px;
    padding: 12px 14px;
  }
  .chip-a, .chip-b, .chip-c {
    font-size: 10px;
    padding: 10px 12px;
  }
  .chip-a { left: 12px; top: 92px; }
  .chip-b { left: 22px; top: auto; bottom: 92px; }
  .chip-c { right: 14px; top: 88px; }
  .ai-zones-grid-v8 {
    grid-template-columns: 1fr;
  }
  .visual-band {
    padding: 26px;
    min-height: 210px;
  }
}


/* V9 cinematic full-width hero */
.dream-cinema-mode {
  --mx: 0;
  --my: 0;
}
.cinema-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(76,121,255,0.12), transparent 16%),
    linear-gradient(180deg, #03050a 0%, #050814 50%, #04060d 100%);
}
.cinema-sky,
.cinema-noise,
.cinema-aurora,
.cinema-planet,
.cinema-rings,
.cinema-beams,
.cinema-grid,
.cinema-city,
.cinema-glow {
  position:absolute; inset:0;
  pointer-events:none;
}
.cinema-sky {
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 12%, rgba(255,255,255,0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 28%, rgba(255,255,255,0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 24%, rgba(255,255,255,0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 42%, rgba(255,255,255,0.08) 0 1px, transparent 2px);
  opacity: .75;
}
.cinema-noise {
  opacity: .08;
  background-image: radial-gradient(rgba(255,255,255,.8) .4px, transparent .4px);
  background-size: 6px 6px;
  mix-blend-mode: soft-light;
}
.cinema-aurora {
  background:
    radial-gradient(ellipse at 14% 26%, rgba(0,153,255,.22), transparent 34%),
    radial-gradient(ellipse at 84% 18%, rgba(139,92,246,.18), transparent 32%),
    radial-gradient(ellipse at 60% 52%, rgba(42,247,255,.10), transparent 30%);
  filter: blur(22px);
}
.cinema-planet {
  inset: auto auto 43% 68%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.18), rgba(43,146,255,.28) 28%, rgba(111,70,255,.12) 64%, rgba(111,70,255,0) 72%);
  box-shadow: 0 0 120px rgba(52,120,255,.12);
}
.cinema-rings {
  inset: auto auto 31% 58%;
  width: 760px;
  height: 760px;
  border-radius:50%;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 0 0 24px rgba(29,161,255,.035), 0 0 0 70px rgba(29,161,255,.02);
  opacity: .9;
}
.cinema-beams {
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(29,161,255,.12) 36.3%, transparent 37.2%),
    linear-gradient(125deg, transparent 0 62%, rgba(255,255,255,.06) 62.3%, transparent 63.2%),
    linear-gradient(132deg, transparent 0 74%, rgba(138,77,255,.12) 74.3%, transparent 75.2%);
  opacity: .95;
}
.cinema-grid {
  inset: auto 0 0 0;
  height: 44%;
  background:
    linear-gradient(180deg, rgba(4,7,12,0) 0%, rgba(5,7,12,.35) 18%, rgba(5,7,12,.96) 100%),
    linear-gradient(rgba(29,161,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,161,255,.10) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
  transform-origin: center bottom;
  transform: perspective(800px) rotateX(72deg) translateY(38%);
  opacity: .55;
}
.cinema-city {
  inset: auto 0 0 0;
  height: 38%;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(7,10,17,.08) 8%, rgba(6,8,14,.96) 100%),
    linear-gradient(90deg,
      transparent 0 4%, rgba(13,18,28,.95) 4% 9%, transparent 9% 12%,
      rgba(12,16,24,.95) 12% 18%, transparent 18% 22%,
      rgba(10,14,22,.95) 22% 26%, transparent 26% 31%,
      rgba(15,20,30,.95) 31% 37%, transparent 37% 41%,
      rgba(10,14,22,.95) 41% 47%, transparent 47% 52%,
      rgba(14,18,28,.95) 52% 59%, transparent 59% 63%,
      rgba(11,15,23,.95) 63% 69%, transparent 69% 72%,
      rgba(13,18,28,.95) 72% 77%, transparent 77% 82%,
      rgba(10,14,22,.95) 82% 89%, transparent 89% 94%,
      rgba(14,18,28,.95) 94% 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.8) 20%, rgba(0,0,0,1));
}
.cinema-city::after {
  content:"";
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(40,200,255,.18) 42px 44px, transparent 44px 88px),
    repeating-linear-gradient(180deg, transparent 0 30px, rgba(255,255,255,.05) 30px 32px, transparent 32px 64px);
  opacity: .25;
  mix-blend-mode: screen;
}
.cinema-glow-a {
  background: radial-gradient(circle at 20% 80%, rgba(29,161,255,.18), transparent 24%);
}
.cinema-glow-b {
  background: radial-gradient(circle at 84% 56%, rgba(138,77,255,.16), transparent 22%);
}
.cinema-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 88px);
  padding: 38px clamp(24px, 4vw, 56px) 110px;
}
.cinema-copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
  padding-top: clamp(64px, 8vh, 110px);
}
.cinema-logo {
  width: min(360px, 76vw);
  margin: 12px 0 22px;
  filter: drop-shadow(0 22px 50px rgba(29,161,255,.14));
}
.cinema-copy h1 {
  font-size: clamp(68px, 10vw, 148px);
  line-height: .8;
  letter-spacing: -.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cinema-copy p {
  max-width: 430px;
  font-size: 21px;
  color: #deebff;
  margin-bottom: 24px;
}
.cinema-tags {
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 16px;
}
.cinema-tags span,
.cinema-orbit-label {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,11,18,.40);
  backdrop-filter: blur(10px);
  color: #f3f7ff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(0,0,0,.22);
}
.cinema-tags span { padding: 10px 14px; }
.cinema-portrait-wrap {
  position:absolute;
  right: clamp(12px, 5vw, 64px);
  bottom: 0;
  width: min(52vw, 720px);
  height: min(90vh, 880px);
  z-index: 2;
}
.cinema-portrait-frame {
  position:absolute; inset: 5% 5% 0 16%;
  border-radius: 46% 44% 0 0 / 14% 14% 0 0;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 30px 80px rgba(0,0,0,.42);
}
.cinema-portrait {
  position:absolute; inset: 0 0 0 auto;
  width: 100%; height: 100%; object-fit: contain; object-position: bottom center;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 30px 90px rgba(0,0,0,.45));
}
.cinema-scanline {
  position:absolute;
  left: 14%; right: 6%; top: 18%; height: 14px;
  background: linear-gradient(90deg, rgba(0,217,255,0), rgba(0,217,255,.92), rgba(0,217,255,0));
  box-shadow: 0 0 26px rgba(0,217,255,.42);
  animation: scanMoveCinema 6s linear infinite;
}
@keyframes scanMoveCinema {
  0% { top: 16%; }
  50% { top: 74%; }
  100% { top: 16%; }
}
.cinema-orbit-label {
  position:absolute;
  padding: 12px 18px;
}
.orbit-label-a { right: 34%; top: 16%; }
.orbit-label-b { right: 9%; top: 22%; }
.orbit-label-c { right: 39%; bottom: 16%; }
.cinema-bottom-bar {
  position:absolute;
  left: 0; right: 0; bottom: 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  z-index: 4;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
}
.cinema-bottom-bar a {
  display:flex; align-items:center; justify-content:center;
  min-height: 76px;
  background: rgba(6,9,15,.78);
  color: #f4f7ff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .25s ease;
}
.cinema-bottom-bar a:hover {
  background: rgba(12,18,28,.92);
  color: var(--blue);
}
.world-strip-section {
  display:grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.world-strip {
  position:relative;
  min-height: 180px;
  overflow:hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.03);
  background: linear-gradient(90deg, rgba(7,10,16,1) 0%, rgba(9,13,22,.95) 100%);
}
.world-strip::before,
.world-strip::after {
  content:"";
  position:absolute;
  pointer-events:none;
}
.world-strip::before {
  inset:0;
  background: linear-gradient(110deg, transparent 0 52%, rgba(29,161,255,.10) 52.4%, transparent 53.1%);
}
.world-strip::after {
  width: 340px; height: 340px; border-radius:50%; right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(29,161,255,.16), transparent 68%);
}
.world-strip-b::after { background: radial-gradient(circle, rgba(138,77,255,.16), transparent 68%); }
.world-strip-c::after { background: radial-gradient(circle, rgba(55,231,255,.16), transparent 68%); }
.strip-copy {
  position:relative; z-index:2;
  max-width: 1400px; margin:0 auto; padding: 42px 34px;
}
.strip-copy h2 { margin: 8px 0 0; font-size: clamp(34px, 5vw, 74px); }
.cinematic-band-section { padding-top: 34px; }
.cinematic-band {
  min-height: 220px;
  border-radius: 36px;
}
@media (max-width: 1080px) {
  .cinema-hero { min-height: auto; }
  .cinema-inner {
    min-height: auto;
    padding-bottom: 150px;
  }
  .cinema-copy {
    max-width: 520px;
    padding-top: 48px;
  }
  .cinema-portrait-wrap {
    position:relative;
    right:auto; bottom:auto;
    width:min(92vw, 620px);
    height:min(78vh, 720px);
    margin: 18px auto 0;
  }
  .orbit-label-a { right: 30%; top: auto; bottom: 30%; }
  .orbit-label-b { right: 10%; top: 16%; }
  .orbit-label-c { right: 38%; bottom: 10%; }
}
@media (max-width: 760px) {
  .cinema-rings {
    width: 420px; height: 420px; inset: auto auto 42% 42%;
  }
  .cinema-planet {
    width: 250px; height: 250px; inset: auto auto 52% 56%;
  }
  .cinema-copy h1 { font-size: 74px; }
  .cinema-copy p { font-size: 18px; max-width: 320px; }
  .cinema-inner { padding: 18px 18px 150px; }
  .cinema-portrait-wrap { width: 100%; height: 500px; }
  .cinema-portrait-frame { inset: 6% 4% 0 8%; }
  .cinema-scanline { left: 10%; right: 4%; }
  .orbit-label-a, .orbit-label-b, .orbit-label-c {
    padding: 10px 12px;
    font-size: 10px;
  }
  .orbit-label-a { left: 18px; right: auto; top: auto; bottom: 126px; }
  .orbit-label-b { right: 16px; top: auto; bottom: 190px; }
  .orbit-label-c { left: auto; right: 16px; bottom: 128px; }
  .cinema-bottom-bar {
    grid-template-columns: 1fr;
  }
  .cinema-bottom-bar a { min-height: 64px; font-size: 16px; }
  .strip-copy { padding: 32px 20px; }
  .strip-copy h2 { font-size: 40px; }
}


/* V10 AI Dance Machine */
.machine-mode {
  --cursor-x: 50%;
  --cursor-y: 40%;
  background:
    radial-gradient(circle at 20% 10%, rgba(29,161,255,.08), transparent 18%),
    radial-gradient(circle at 84% 8%, rgba(138,77,255,.14), transparent 16%),
    linear-gradient(180deg, #020409 0%, #040712 100%);
}
.machine-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 16%, rgba(77,109,255,.12), transparent 14%),
    linear-gradient(180deg, #02040a 0%, #040712 50%, #04060d 100%);
}
.machine-cursor-glow {
  position:absolute;
  width: 320px;
  height: 320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(38,203,255,.18), rgba(38,203,255,0) 66%);
  filter: blur(8px);
  pointer-events:none;
  z-index:1;
  opacity: .95;
  transition: transform .15s ease-out;
}
.machine-stars,
.machine-nebula,
.machine-planet,
.machine-rings,
.machine-beam,
.machine-grid,
.machine-city,
.machine-wave,
.machine-particles {
  position:absolute; inset:0; pointer-events:none;
}
.machine-stars {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.9) 0 1px, transparent 1.8px),
    radial-gradient(circle at 26% 11%, rgba(255,255,255,.6) 0 1px, transparent 1.6px),
    radial-gradient(circle at 44% 7%, rgba(255,255,255,.65) 0 1px, transparent 1.6px),
    radial-gradient(circle at 70% 15%, rgba(255,255,255,.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 82% 24%, rgba(255,255,255,.55) 0 1px, transparent 1.4px),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.6) 0 1px, transparent 1.6px),
    radial-gradient(circle at 9% 46%, rgba(255,255,255,.45) 0 1px, transparent 1.6px),
    radial-gradient(circle at 61% 34%, rgba(255,255,255,.55) 0 1px, transparent 1.6px);
  opacity: .75;
}
.machine-nebula {
  background:
    radial-gradient(ellipse at 12% 34%, rgba(0,153,255,.22), transparent 32%),
    radial-gradient(ellipse at 86% 18%, rgba(138,77,255,.18), transparent 28%),
    radial-gradient(ellipse at 58% 60%, rgba(42,247,255,.08), transparent 28%);
  filter: blur(24px);
}
.machine-planet {
  inset: auto auto 46% 63%;
  width: 520px; height: 520px;
  border-radius:50%;
  background: radial-gradient(circle at 34% 34%, rgba(255,255,255,.18), rgba(33,136,255,.32) 30%, rgba(111,70,255,.14) 62%, rgba(111,70,255,0) 73%);
  box-shadow: 0 0 140px rgba(42,143,255,.12);
}
.machine-rings {
  inset: auto auto 24% 51%;
  width: 920px; height: 920px;
  border-radius:50%;
  border: 1px solid rgba(255,255,255,.05);
  box-shadow: 0 0 0 30px rgba(29,161,255,.03), 0 0 0 88px rgba(29,161,255,.018), inset 0 0 90px rgba(29,161,255,.02);
  opacity: .9;
}
.machine-beam {
  background:
    linear-gradient(112deg, transparent 0 42%, rgba(29,161,255,.12) 42.5%, transparent 43.5%),
    linear-gradient(124deg, transparent 0 64%, rgba(255,255,255,.05) 64.5%, transparent 65.2%),
    linear-gradient(130deg, transparent 0 77%, rgba(138,77,255,.10) 77.5%, transparent 78.2%);
  opacity: .9;
}
.machine-grid {
  inset:auto 0 0 0;
  height: 48%;
  background:
    linear-gradient(180deg, rgba(5,7,12,0) 0%, rgba(5,7,12,.32) 15%, rgba(5,7,12,.96) 100%),
    linear-gradient(rgba(29,161,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,161,255,.12) 1px, transparent 1px);
  background-size: auto, 90px 90px, 90px 90px;
  transform-origin:center bottom;
  transform: perspective(1000px) rotateX(78deg) translateY(42%);
  opacity: .56;
}
.machine-city {
  inset:auto 0 0 0;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(4,7,12,.04) 10%, rgba(4,7,12,.98) 100%),
    linear-gradient(90deg,
      transparent 0 3%, rgba(10,14,22,.95) 3% 8%, transparent 8% 12%,
      rgba(12,16,24,.95) 12% 18%, transparent 18% 21%,
      rgba(9,13,21,.95) 21% 25%, transparent 25% 29%,
      rgba(15,20,30,.95) 29% 36%, transparent 36% 40%,
      rgba(11,15,23,.95) 40% 47%, transparent 47% 51%,
      rgba(13,18,28,.95) 51% 58%, transparent 58% 63%,
      rgba(10,14,22,.95) 63% 67%, transparent 67% 72%,
      rgba(12,16,24,.95) 72% 78%, transparent 78% 82%,
      rgba(8,12,20,.95) 82% 88%, transparent 88% 92%, rgba(11,15,23,.95) 92% 100%);
}
.machine-city::after {
  content:"";
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(41,211,255,.16) 42px 44px, transparent 44px 88px),
    repeating-linear-gradient(180deg, transparent 0 28px, rgba(255,255,255,.04) 28px 30px, transparent 30px 60px);
  opacity:.22;
}
.machine-wave {
  inset:auto auto 14% 12%;
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(29,161,255,.28), transparent 60%);
  filter: blur(14px);
  opacity: .8;
}
.machine-wave::before,
.machine-wave::after {
  content:""; position:absolute; left:0; right:0; height:2px;
  background: linear-gradient(90deg, rgba(29,161,255,0), rgba(29,161,255,.9), rgba(29,161,255,0));
  box-shadow: 0 0 18px rgba(29,161,255,.42);
}
.machine-wave::before { top: 60px; animation: waveFloat 4s ease-in-out infinite; }
.machine-wave::after { top: 110px; animation: waveFloat 5.5s ease-in-out infinite reverse; }
@keyframes waveFloat {
  0%,100% { transform: translateX(0) scaleX(.86); opacity: .7; }
  50% { transform: translateX(20px) scaleX(1); opacity: 1; }
}
.machine-particles {
  background-image:
    radial-gradient(rgba(255,255,255,.4) .55px, transparent .55px),
    radial-gradient(rgba(38,203,255,.4) .75px, transparent .75px);
  background-size: 110px 110px, 170px 170px;
  background-position: 0 0, 40px 60px;
  opacity: .28;
  animation: driftParticles 18s linear infinite;
}
@keyframes driftParticles { from { transform: translateY(0); } to { transform: translateY(30px); } }
.machine-inner {
  position:relative; z-index:2;
  min-height: calc(100vh - 88px);
  padding: 36px clamp(20px, 4vw, 60px) 106px;
}
.machine-copy {
  position:relative; z-index:3;
  max-width: 520px;
  padding-top: clamp(70px, 9vh, 120px);
}
.machine-logo {
  width: min(360px, 74vw);
  margin: 12px 0 20px;
  filter: drop-shadow(0 24px 50px rgba(29,161,255,.14));
}
.machine-copy h1 {
  font-size: clamp(72px, 10vw, 152px);
  line-height: .78;
  letter-spacing: -.065em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.machine-copy p {
  max-width: 420px;
  font-size: 21px;
  color: #ddebff;
  margin-bottom: 24px;
}
.machine-cta .btn-primary {
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 20px 40px rgba(29,161,255,.18), 0 0 40px rgba(29,161,255,.15);
}
.machine-status-row {
  display:flex; flex-wrap:wrap; gap: 10px; margin-top: 16px;
}
.machine-status-row span,
.machine-hud {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(8,11,18,.42);
  color: #f2f6ff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 18px 32px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.machine-avatar {
  position:absolute;
  right: clamp(10px, 4vw, 60px);
  bottom: 0;
  width: min(56vw, 780px);
  height: min(92vh, 920px);
  z-index:2;
}
.machine-avatar-backdrop {
  position:absolute; inset: 12% 12% 6% 18%;
  border-radius: 44% 46% 10% 10% / 18% 18% 8% 8%;
  background:
    radial-gradient(circle at 48% 40%, rgba(29,161,255,.16), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 30px 80px rgba(0,0,0,.46);
}
.machine-orbit {
  position:absolute; left:50%; top:44%; transform: translate(-50%, -50%);
  border-radius:50%; border: 1px solid rgba(255,255,255,.07);
}
.orbit-1 { width: 420px; height: 420px; box-shadow: 0 0 0 16px rgba(29,161,255,.03); animation: rotateOrbit 18s linear infinite; }
.orbit-2 { width: 520px; height: 520px; box-shadow: 0 0 0 26px rgba(138,77,255,.02); animation: rotateOrbit 24s linear infinite reverse; }
.orbit-3 { width: 300px; height: 300px; box-shadow: inset 0 0 50px rgba(29,161,255,.06); animation: pulseOrbit 7s ease-in-out infinite; }
@keyframes rotateOrbit { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulseOrbit { 0%,100% { transform: translate(-50%, -50%) scale(.96); opacity:.7; } 50% { transform: translate(-50%, -50%) scale(1.04); opacity:1; } }
.machine-portrait-shell {
  position:absolute; inset: 0 0 0 auto; width:100%; height:100%;
  background: radial-gradient(circle at 54% 34%, rgba(29,161,255,.05), transparent 26%);
}
.machine-portrait {
  position:absolute; inset: 0 0 0 auto;
  width:100%; height:100%; object-fit: contain; object-position: bottom center;
  filter: saturate(1.04) contrast(1.03) drop-shadow(0 30px 80px rgba(0,0,0,.48));
}
.machine-scanbar {
  position:absolute; left: 14%; right: 9%; top: 18%; height: 16px;
  background: linear-gradient(90deg, rgba(0,217,255,0), rgba(0,217,255,.92), rgba(0,217,255,0));
  box-shadow: 0 0 28px rgba(0,217,255,.44);
  animation: scanMoveMachine 5.5s linear infinite;
}
@keyframes scanMoveMachine {
  0% { top: 18%; }
  50% { top: 74%; }
  100% { top: 18%; }
}
.machine-hud {
  position:absolute;
}
.hud-a { right: 34%; top: 16%; }
.hud-b { right: 11%; top: 18%; }
.hud-c { right: 38%; bottom: 18%; }
.hud-d { left: 44%; bottom: 22%; }
.machine-rail {
  position:absolute; left:0; right:0; bottom:0; z-index:4;
  display:grid; grid-template-columns: repeat(3, 1fr); gap:1px;
  background: rgba(255,255,255,.04); border-top:1px solid rgba(255,255,255,.06);
}
.machine-rail a {
  display:flex; align-items:center; justify-content:center;
  min-height: 78px;
  background: rgba(6,9,15,.80);
  color:#f4f7ff;
  font-family:'Oswald', Arial, Helvetica, sans-serif;
  font-size: 18px; letter-spacing:.14em; text-transform:uppercase;
  position:relative; overflow:hidden; transition: .28s ease;
}
.machine-rail a::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(29,161,255,.12), transparent);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.machine-rail a:hover { color: var(--blue); background: rgba(10,15,24,.92); }
.machine-rail a:hover::before { transform: translateX(100%); }
.machine-zones {
  display:grid; grid-template-columns: repeat(3, 1fr); gap:0;
}
.zone-beam {
  min-height: 220px;
  position:relative; overflow:hidden;
  padding: 44px 34px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.03);
  background: linear-gradient(90deg, rgba(7,10,16,1) 0%, rgba(10,14,24,.96) 100%);
}
.zone-beam::before,
.zone-beam::after {
  content:""; position:absolute; pointer-events:none;
}
.zone-beam::before {
  inset:0;
  background: linear-gradient(112deg, transparent 0 54%, rgba(29,161,255,.11) 54.4%, transparent 55.3%);
}
.zone-beam::after {
  width: 340px; height: 340px; border-radius:50%; right:-100px; top:-120px;
  background: radial-gradient(circle, rgba(29,161,255,.16), transparent 68%);
}
.beam-b::after { background: radial-gradient(circle, rgba(138,77,255,.16), transparent 68%); }
.beam-c::after { background: radial-gradient(circle, rgba(55,231,255,.16), transparent 68%); }
.zone-beam h2 {
  position:relative; z-index:1; margin-top:10px;
  font-size: clamp(36px, 4.2vw, 72px);
}
.zone-beam .card-tag { position:relative; z-index:1; }
.machine-awake .machine-nebula,
.machine-awake .machine-beam,
.machine-awake .machine-wave,
.machine-awake .machine-avatar-backdrop,
.machine-awake .machine-rings {
  filter: saturate(1.2);
}
.machine-awake .machine-wave::before,
.machine-awake .machine-wave::after,
.machine-awake .machine-scanbar {
  animation-duration: 2.8s;
}
.machine-awake .machine-orbit.orbit-1 { animation-duration: 9s; }
.machine-awake .machine-orbit.orbit-2 { animation-duration: 12s; }
.machine-awake .machine-trigger {
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 22px 48px rgba(29,161,255,.24), 0 0 60px rgba(29,161,255,.20);
}
@media (max-width: 1180px) {
  .machine-copy { max-width: 440px; }
  .machine-avatar { width: min(58vw, 640px); height: min(80vh, 760px); }
  .hud-d { left: 36%; }
}
@media (max-width: 1080px) {
  .machine-hero { min-height: auto; }
  .machine-inner { min-height: auto; padding-bottom: 150px; }
  .machine-copy { max-width: 500px; padding-top: 48px; }
  .machine-avatar {
    position:relative; right:auto; bottom:auto;
    width:min(96vw, 660px); height:min(78vh, 760px);
    margin: 12px auto 0;
  }
  .machine-hud.hud-a { left: 18px; right: auto; top: auto; bottom: 184px; }
  .machine-hud.hud-b { right: 16px; top: 86px; }
  .machine-hud.hud-c { left: auto; right: 18px; bottom: 146px; }
  .machine-hud.hud-d { left: 22px; bottom: 124px; }
  .machine-zones { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .machine-cursor-glow { width: 220px; height: 220px; }
  .machine-planet { width: 260px; height: 260px; inset: auto auto 58% 48%; }
  .machine-rings { width: 480px; height: 480px; inset: auto auto 42% 28%; }
  .machine-copy h1 { font-size: 76px; }
  .machine-copy p { font-size: 18px; max-width: 320px; }
  .machine-inner { padding: 18px 18px 194px; }
  .machine-avatar { width: 100%; height: 500px; }
  .machine-avatar-backdrop { inset: 10% 6% 4% 10%; }
  .orbit-1 { width: 240px; height: 240px; }
  .orbit-2 { width: 320px; height: 320px; }
  .orbit-3 { width: 180px; height: 180px; }
  .machine-scanbar { left: 10%; right: 6%; }
  .machine-hud { font-size: 10px; padding: 8px 12px; }
  .machine-hud.hud-a { left: 14px; bottom: 152px; }
  .machine-hud.hud-b { right: 14px; top: 78px; }
  .machine-hud.hud-c { right: 14px; bottom: 118px; }
  .machine-hud.hud-d { left: 14px; bottom: 108px; }
  .machine-rail { grid-template-columns: 1fr; }
  .machine-rail a { min-height: 62px; font-size: 16px; }
  .zone-beam { min-height: 160px; padding: 28px 20px; }
  .zone-beam h2 { font-size: 42px; }
}


/* V11 Dream Portal */
.portal-mode {
  background: linear-gradient(180deg, #02050b 0%, #040713 100%);
}
.portal-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 24%, rgba(0,155,255,.10), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(132,78,255,.12), transparent 20%),
    linear-gradient(180deg, #02050b 0%, #030611 56%, #040713 100%);
}
.portal-cursor-glow,
.portal-stars,
.portal-aurora,
.portal-sun,
.portal-horizon,
.portal-grid,
.portal-rings,
.portal-lasers,
.portal-particles,
.portal-wave {
  position:absolute; inset:0; pointer-events:none;
}
.portal-cursor-glow {
  width: 360px; height: 360px; border-radius:50%;
  background: radial-gradient(circle, rgba(28,206,255,.18), rgba(28,206,255,0) 66%);
  filter: blur(8px);
  opacity:.95; z-index:1; transition: transform .12s ease-out;
}
.portal-stars {
  background:
    radial-gradient(circle at 6% 16%, rgba(255,255,255,.7) 0 1px, transparent 1.7px),
    radial-gradient(circle at 22% 8%, rgba(255,255,255,.6) 0 1px, transparent 1.7px),
    radial-gradient(circle at 38% 14%, rgba(255,255,255,.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 68% 8%, rgba(255,255,255,.7) 0 1px, transparent 1.7px),
    radial-gradient(circle at 86% 21%, rgba(255,255,255,.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.65) 0 1px, transparent 1.7px),
    radial-gradient(circle at 50% 24%, rgba(255,255,255,.42) 0 1px, transparent 1.5px);
  opacity:.78;
}
.portal-aurora {
  background:
    radial-gradient(ellipse at 12% 28%, rgba(0,149,255,.22), transparent 34%),
    radial-gradient(ellipse at 82% 20%, rgba(118,70,255,.18), transparent 32%),
    radial-gradient(ellipse at 56% 54%, rgba(0,228,255,.08), transparent 28%);
  filter: blur(28px);
}
.portal-sun {
  inset: auto auto 40% 62%;
  width: 560px; height: 560px; border-radius:50%;
  background: radial-gradient(circle at 34% 34%, rgba(255,255,255,.2), rgba(43,141,255,.22) 30%, rgba(108,67,255,.14) 58%, rgba(108,67,255,0) 72%);
  box-shadow: 0 0 120px rgba(43,141,255,.10);
}
.portal-horizon {
  inset:auto 0 0 0; height:46%;
  background:
    linear-gradient(180deg, rgba(3,5,11,0) 0%, rgba(3,5,11,.22) 20%, rgba(3,5,11,.88) 100%),
    radial-gradient(ellipse at center bottom, rgba(0,153,255,.14), transparent 42%);
}
.portal-grid {
  inset:auto 0 0 0; height:48%;
  background:
    linear-gradient(rgba(23,171,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,171,255,.12) 1px, transparent 1px);
  background-size: 86px 86px;
  transform-origin:center bottom;
  transform: perspective(1100px) rotateX(79deg) translateY(46%);
  opacity:.5;
}
.portal-rings {
  inset:auto auto 18% 54%;
  width: 980px; height: 980px; border-radius:50%;
  border:1px solid rgba(255,255,255,.05);
  box-shadow: 0 0 0 34px rgba(28,206,255,.025), 0 0 0 90px rgba(28,206,255,.015), inset 0 0 120px rgba(28,206,255,.02);
}
.portal-lasers {
  background:
    linear-gradient(114deg, transparent 0 45%, rgba(28,206,255,.10) 45.4%, transparent 46.2%),
    linear-gradient(128deg, transparent 0 72%, rgba(148,93,255,.10) 72.4%, transparent 73.2%),
    linear-gradient(138deg, transparent 0 62%, rgba(255,255,255,.04) 62.4%, transparent 63.2%);
  opacity:.9;
}
.portal-particles {
  background-image:
    radial-gradient(rgba(255,255,255,.4) .6px, transparent .6px),
    radial-gradient(rgba(28,206,255,.38) .9px, transparent .9px);
  background-size: 120px 120px, 180px 180px;
  background-position: 0 0, 60px 80px;
  opacity:.26;
  animation: driftParticles 18s linear infinite;
}
.portal-wave {
  inset:auto auto 13% 8%; width: 640px; height: 220px;
  background: radial-gradient(ellipse at center, rgba(28,206,255,.18), transparent 60%);
  filter: blur(20px); opacity:.75;
}
.portal-wave::before,
.portal-wave::after {
  content:""; position:absolute; left:0; right:0; height:2px;
  background: linear-gradient(90deg, rgba(28,206,255,0), rgba(28,206,255,.95), rgba(28,206,255,0));
  box-shadow: 0 0 20px rgba(28,206,255,.45);
}
.portal-wave::before { top: 68px; animation: waveFloat 4.6s ease-in-out infinite; }
.portal-wave::after { top: 126px; animation: waveFloat 6s ease-in-out infinite reverse; }
.portal-content {
  position:relative; z-index:2;
  min-height: calc(100vh - 88px);
  max-width: 1700px;
  margin: 0 auto;
  padding: 34px clamp(22px, 4vw, 58px) 120px;
}
.portal-copy {
  position:relative; z-index:3;
  max-width: 520px;
  padding-top: clamp(82px, 12vh, 150px);
}
.portal-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(66px, 8vw, 124px);
  line-height: .84;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.portal-copy p {
  max-width: 390px;
  font-size: 20px;
  color: #e1ebff;
  margin-bottom: 24px;
}
.portal-cta .btn-primary {
  box-shadow: 0 18px 46px rgba(28,206,255,.22), 0 0 48px rgba(28,206,255,.12);
}
.portal-avatar {
  position:absolute;
  right: clamp(10px, 4vw, 68px);
  bottom: 0;
  width: min(54vw, 720px);
  height: min(92vh, 920px);
  z-index:2;
}
.avatar-halo {
  position:absolute; inset: 14% 8% 0 8%;
  border-radius:50%;
  background:
    radial-gradient(circle at center, rgba(28,206,255,.12), transparent 46%),
    radial-gradient(circle at center, rgba(148,93,255,.10), transparent 62%);
  filter: blur(8px);
}
.avatar-audio-ring {
  position:absolute; left:50%; top:44%; transform:translate(-50%, -50%);
  border-radius:50%; border:1px solid rgba(255,255,255,.07);
}
.ring-one { width: 300px; height:300px; box-shadow:0 0 0 12px rgba(28,206,255,.03); animation:pulseOrbit 5.2s ease-in-out infinite; }
.ring-two { width: 430px; height:430px; box-shadow:0 0 0 20px rgba(148,93,255,.02); animation:rotateOrbit 20s linear infinite; }
.ring-three { width: 560px; height:560px; box-shadow:0 0 0 28px rgba(28,206,255,.015); animation:rotateOrbit 28s linear infinite reverse; }
.avatar-eq {
  position:absolute; top:50%; transform:translateY(-50%);
  display:flex; gap:8px; align-items:flex-end;
  width: 90px; height: 110px;
}
.eq-left { left: 4%; }
.eq-right { right: 4%; }
.avatar-eq span {
  display:block; width: 10px; border-radius: 999px;
  background: linear-gradient(180deg, #7cefff, #0b8dff);
  box-shadow: 0 0 14px rgba(28,206,255,.38);
  animation: eqPulse 1.4s ease-in-out infinite;
}
.avatar-eq span:nth-child(1){height:36px; animation-delay:.0s}
.avatar-eq span:nth-child(2){height:76px; animation-delay:.15s}
.avatar-eq span:nth-child(3){height:52px; animation-delay:.3s}
.avatar-eq span:nth-child(4){height:88px; animation-delay:.45s}
.avatar-eq span:nth-child(5){height:44px; animation-delay:.6s}
@keyframes eqPulse {
  0%,100% { transform: scaleY(.72); opacity:.65; }
  50% { transform: scaleY(1.12); opacity:1; }
}
.portal-portrait {
  position:absolute; inset: 0;
  width:100%; height:100%; object-fit:contain; object-position: bottom center;
  filter: saturate(1.02) contrast(1.03) drop-shadow(0 30px 100px rgba(0,0,0,.48));
}
.portal-scan {
  position:absolute; left: 12%; right: 12%; top: 28%; height: 14px;
  background: linear-gradient(90deg, rgba(28,206,255,0), rgba(28,206,255,.95), rgba(28,206,255,0));
  box-shadow: 0 0 24px rgba(28,206,255,.44);
  animation: scanMovePortal 6.5s linear infinite;
}
@keyframes scanMovePortal {
  0% { top: 24%; }
  50% { top: 74%; }
  100% { top: 24%; }
}
.portal-label {
  position:absolute;
  padding: 11px 16px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(8,11,18,.42);
  color:#f3f7ff;
  font-family:'Oswald', Arial, Helvetica, sans-serif;
  letter-spacing:.15em;
  font-size:12px;
  text-transform:uppercase;
  box-shadow:0 18px 32px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
}
.label-a { right: 28%; top: 18%; }
.label-b { right: 8%; top: 24%; }
.label-c { right: 34%; bottom: 17%; }
.portal-dock {
  position:absolute; left:50%; bottom:24px; transform:translateX(-50%);
  width:min(1180px, calc(100% - 44px));
  display:grid; grid-template-columns: repeat(3, 1fr); gap:18px;
  z-index:4;
}
.portal-dock a {
  min-height: 98px;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(10,14,24,.84), rgba(7,10,17,.70));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  transition:.28s ease;
}
.portal-dock a strong {
  font-family:'Oswald', Arial, Helvetica, sans-serif; font-size:24px; letter-spacing:.12em; text-transform:uppercase; color:#fff;
}
.portal-dock a span { color:#93a9c8; font-size:14px; letter-spacing:.12em; text-transform:uppercase; }
.portal-dock a:hover { transform: translateY(-5px); border-color: rgba(28,206,255,.18); }
.portal-awake .ring-one, .portal-awake .ring-two, .portal-awake .ring-three { animation-duration: 2.8s, 10s, 14s; }
.portal-awake .portal-scan { animation-duration: 2.6s; }
.portal-awake .portal-wave::before, .portal-awake .portal-wave::after { animation-duration: 2s; }
.portal-awake .portal-trigger { box-shadow:0 22px 54px rgba(28,206,255,.28), 0 0 62px rgba(28,206,255,.16); }
@media (max-width: 1080px) {
  .portal-content { min-height:auto; padding-bottom: 220px; }
  .portal-copy { max-width: 460px; padding-top: 48px; }
  .portal-avatar {
    position:relative; right:auto; bottom:auto; width:min(94vw, 620px); height:min(76vh, 720px); margin: 20px auto 0;
  }
  .label-a { left: 18px; right:auto; top:auto; bottom: 200px; }
  .label-b { right: 16px; top: 90px; }
  .label-c { right: 22px; bottom: 156px; }
}
@media (max-width: 760px) {
  .portal-cursor-glow { width: 220px; height:220px; }
  .portal-sun { width: 280px; height:280px; inset:auto auto 58% 46%; }
  .portal-rings { width: 520px; height:520px; inset:auto auto 30% 20%; }
  .portal-copy h1 { font-size: 74px; }
  .portal-copy p { font-size:18px; max-width: 320px; }
  .portal-content { padding: 18px 18px 250px; }
  .portal-avatar { width:100%; height: 480px; }
  .ring-one { width: 180px; height:180px; }
  .ring-two { width: 280px; height:280px; }
  .ring-three { width: 360px; height:360px; }
  .avatar-eq { width: 56px; height:76px; gap:4px; }
  .avatar-eq span { width: 6px; }
  .portal-scan { left: 10%; right: 10%; }
  .portal-label { font-size: 10px; padding: 8px 11px; }
  .label-a { left: 14px; bottom: 178px; }
  .label-b { right: 14px; top: 96px; }
  .label-c { right: 14px; bottom: 136px; }
  .portal-dock {
    grid-template-columns: 1fr; gap: 12px; width: calc(100% - 24px); bottom: 14px;
  }
  .portal-dock a { min-height: 78px; }
  .portal-dock a strong { font-size: 20px; }
}


/* V12 empty home */
.minimal-empty-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #02050b 0%, #030611 100%);
}
.minimal-empty-home main {
  flex: 1 0 auto;
}
.empty-hero {
  min-height: 80vh;
}


/* V13 no footer, smaller logo, left logo, centered menu */
.no-footer-home {
  min-height: 100vh;
}
.no-footer-home .brand-v13 img {
  height: 34px;
  width: auto;
}
@media (min-width: 981px) {
  .no-footer-home .nav-v13 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 86px;
    max-width: none;
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }
  .no-footer-home .brand-v13 {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    margin: 0;
  }
  .no-footer-home .menu-v13 {
    margin: 0 auto;
  }
}


/* V15 hero image inserted */
.hero-image-home {
  background: #02050b;
}
.visual-hero {
  position: relative;
  min-height: 80vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #02050b;
}
.hero-main-image {
  width: 100%;
  height: 80vh;
  min-height: 620px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 980px) {
  .hero-main-image {
    min-height: 0;
    height: 80vh;
    object-position: center center;
  }
}
@media (max-width: 640px) {
  .visual-hero,
  .hero-main-image {
    height: 68vh;
    min-height: 0;
  }
}


/* V16 transparent topbar over hero */
.hero-image-home .topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  background: linear-gradient(180deg, rgba(2,5,11,0.34), rgba(2,5,11,0.12));
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: none;
}
.hero-image-home .visual-hero {
  margin-top: 0;
}
.hero-image-home .hero-main-image {
  height: 80vh;
}
@media (max-width: 980px) {
  .hero-image-home .topbar {
    background: linear-gradient(180deg, rgba(2,5,11,0.42), rgba(2,5,11,0.18));
  }
}


/* V21 hero premium reveal: fade-in + light blur + very subtle zoom */
.hero-fade-home .hero-main-image {
  opacity: 0;
  transform: scale(1.025);
  filter: blur(6px);
  animation: bywyouHeroPremiumReveal 1.8s ease-out forwards;
  will-change: opacity, transform, filter;
}
.hero-fade-home .visual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(2,5,11,0.16), transparent 28%, rgba(2,5,11,0.22));
}
@keyframes bywyouHeroPremiumReveal {
  from {
    opacity: 0;
    transform: scale(1.025);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fade-home .hero-main-image {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* v22 - premium menu intro and hover */
.topbar .brand,
.topbar .brand-v13 {
  opacity: 0;
  transform: translateY(-8px);
  animation: bywyouTopFadeIn .8s ease-out forwards;
}

.topbar .menu a,
.topbar .menu-v13 a {
  position: relative;
  opacity: 0;
  transform: translateY(-6px);
  animation: bywyouMenuFadeIn .7s ease-out forwards;
  transition: color .25s ease, opacity .25s ease;
}

.topbar .menu a:nth-child(1),
.topbar .menu-v13 a:nth-child(1) { animation-delay: .15s; }
.topbar .menu a:nth-child(2),
.topbar .menu-v13 a:nth-child(2) { animation-delay: .22s; }
.topbar .menu a:nth-child(3),
.topbar .menu-v13 a:nth-child(3) { animation-delay: .29s; }
.topbar .menu a:nth-child(4),
.topbar .menu-v13 a:nth-child(4) { animation-delay: .36s; }
.topbar .menu a:nth-child(5),
.topbar .menu-v13 a:nth-child(5) { animation-delay: .43s; }
.topbar .menu a:nth-child(6),
.topbar .menu-v13 a:nth-child(6) { animation-delay: .50s; }

.topbar .menu a::after,
.topbar .menu-v13 a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: rgba(80, 190, 255, .85);
  transform: translateX(-50%);
  transition: width .28s ease, opacity .28s ease;
  opacity: .75;
}

.topbar .menu a:hover::after,
.topbar .menu a.active::after,
.topbar .menu-v13 a:hover::after,
.topbar .menu-v13 a.active::after {
  width: 70%;
  opacity: 1;
}

@keyframes bywyouTopFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bywyouMenuFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar .brand,
  .topbar .brand-v13,
  .topbar .menu a,
  .topbar .menu-v13 a {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* v23 - logo aligned with centered menu + refined logo entrance */
@media (min-width: 981px) {
  .no-footer-home .brand-v13 {
    top: 50%;
    transform: translateY(-50%);
    align-self: center;
    opacity: 0;
    animation: bywyouLogoAlignedIntro .9s cubic-bezier(.16, 1, .3, 1) .05s forwards;
    will-change: opacity, transform;
  }

  .no-footer-home .brand-v13 img {
    display: block;
    height: 34px;
  }
}

@keyframes bywyouLogoAlignedIntro {
  from {
    opacity: 0;
    transform: translateY(calc(-50% - 10px));
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
    filter: blur(0);
  }
}

@media (max-width: 980px) {
  .topbar .brand,
  .topbar .brand-v13 {
    opacity: 0;
    transform: translateY(-8px);
    animation: bywyouLogoMobileIntro .8s ease-out .05s forwards;
  }
}

@keyframes bywyouLogoMobileIntro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .no-footer-home .brand-v13 {
    opacity: 1;
    transform: translateY(-50%);
    animation: none;
    filter: none;
  }
}


/* v30 - rotating typewriter phrases */
.hero-typewriter {
  position: absolute;
  left: 50%;
  bottom: 0px;
  z-index: 4;
  transform: translateX(-50%);
  width: min(92vw, 980px);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-typewriter span {
  display: inline-block;
  min-height: 1.15em;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(18px, 3.1vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 1px;
  font-style: normal;
  text-align: center;
  text-shadow: 0 0 24px rgba(47, 177, 255, .30), 0 8px 34px rgba(0, 0, 0, .72);
  border-right: 2px solid rgba(105, 210, 255, .95);
  opacity: 0;
  animation: bywyouTypewriterFade .45s ease-out 1.0s forwards, bywyouCaretBlink .78s step-end 1.1s infinite;
}

@keyframes bywyouTypewriterFade {
  to { opacity: 1; }
}

@keyframes bywyouCaretBlink {
  0%, 100% { border-color: rgba(105, 210, 255, .95); }
  50% { border-color: transparent; }
}

@media (max-width: 720px) {
  .hero-typewriter {
    bottom: 0px;
    width: min(94vw, 700px);
  }
  .hero-typewriter span {
    font-size: clamp(15px, 4.6vw, 25px);
    letter-spacing: 1px;
  }
}


/* v56 - futuristic blue separator between hero and Productions */
.hero-blue-separator {
  position: relative;
  z-index: 6;
  height: 40px;
  margin: -20px auto -6px;
  overflow: visible;
  pointer-events: none;
}
.hero-blue-separator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: min(86vw, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(45, 185, 255, 0.18), rgba(80, 218, 255, 0.95), rgba(45, 185, 255, 0.18), transparent);
  box-shadow: 0 0 18px rgba(45, 185, 255, .85), 0 0 42px rgba(45, 185, 255, .28);
}
.hero-blue-separator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: min(86vw, 1040px);
  height: 32px;
  transform: translateX(-50%);
  border-radius: 0 0 22px 22px;
  background: radial-gradient(ellipse at top, rgba(10, 22, 40, 0.78) 0%, rgba(6, 12, 22, 0.38) 52%, rgba(4, 8, 16, 0) 100%);
  box-shadow: inset 0 1px 0 rgba(87, 190, 255, 0.06);
}
.hero-blue-separator span {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 92px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(87, 190, 255, 0), rgba(87, 225, 255, .95), rgba(87, 190, 255, 0));
  box-shadow: 0 0 28px rgba(87, 225, 255, .88);
}

/* v33 - sound deck under hero */
.sounddeck-section {
  padding: 18px 0 80px;
  position: relative;
}
.sounddeck-section::before {
  content: "";
  position: absolute;
  inset: -20px 0 auto;
  height: 180px;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.78), rgba(5, 7, 12, 0));
  pointer-events: none;
}
.sounddeck-wrap {
  position: relative;
  z-index: 1;
}
.sounddeck-panel {
  display: grid;
  gap: 28px;
}
.sounddeck-player {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 15% 15%, rgba(29,161,255,0.18), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(138,77,255,0.16), transparent 22%),
    linear-gradient(180deg, rgba(9, 12, 20, 0.94), rgba(7, 10, 17, 0.92));
  box-shadow: 0 28px 65px rgba(0,0,0,0.42);
  overflow: hidden;
}
.sounddeck-player::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,1));
  pointer-events:none;
}
.sounddeck-player-head,
.sounddeck-stage,
.sounddeck-carousel-shell {
  position: relative;
  z-index: 1;
}
.sounddeck-player-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom: 22px;
}
.sounddeck-kicker {
  display:inline-flex;
  align-items:center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border:1px solid rgba(87,190,255,0.24);
  background: rgba(10,18,31,0.54);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.sounddeck-status {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#d4e7ff;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #67e6ff;
  box-shadow: 0 0 14px rgba(103,230,255,0.85);
}
.sounddeck-stage {
  display:grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}
.sounddeck-cover {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.32);
}
.sounddeck-cover::before,
.track-shot::before {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.20), transparent 18%), linear-gradient(180deg, rgba(255,255,255,0.04), transparent 38%);
  pointer-events:none;
}
.sounddeck-cover-glow {
  position:absolute;
  inset:auto auto 18px 18px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0.02) 70%);
  filter: blur(8px);
}
.sounddeck-cover-inner {
  position:absolute;
  inset:auto 22px 20px 22px;
  z-index:1;
}
.sounddeck-mini-logo,
.sounddeck-mini-genre {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.sounddeck-mini-logo {
  font-size: 14px;
  letter-spacing: .24em;
  color: rgba(255,255,255,0.68);
  margin-bottom: 12px;
}
.sounddeck-mini-genre {
  display:inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(4,7,14,0.45);
  border:1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  margin-bottom: 12px;
}
.sounddeck-cover h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: .96;
  letter-spacing: -.04em;
  max-width: 90%;
}
.sounddeck-console {
  display:flex;
  flex-direction:column;
  gap:18px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border:1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12,16,26,0.86), rgba(9,13,21,0.74));
  backdrop-filter: blur(18px);
}
.sounddeck-console-top {
  display:grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap:18px;
  align-items:start;
}
.sounddeck-now {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sounddeck-console h3 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}
.sounddeck-console p {
  color: #c7d2e7;
  line-height: 1.7;
  max-width: 720px;
}
.sounddeck-play {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border:1px solid rgba(255,255,255,0.10);
  background: linear-gradient(145deg, rgba(29,161,255,0.25), rgba(138,77,255,0.20));
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.03), 0 10px 35px rgba(29,161,255,0.24);
  color: #fff;
  font-size: 26px;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.sounddeck-play:hover {
  transform: scale(1.04);
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.04), 0 16px 45px rgba(29,161,255,0.28);
}
.sounddeck-play.is-playing {
  background: linear-gradient(145deg, rgba(55,231,255,0.28), rgba(29,161,255,0.22));
}
.sounddeck-data-row {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.sounddeck-data-row span,
.sounddeck-chip {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color:#edf5ff;
  font-size: 13px;
}
.sounddeck-wave {
  display:flex;
  align-items:flex-end;
  gap:8px;
  height: 76px;
  padding: 8px 0;
}
.sounddeck-wave span {
  width: 8px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(76,220,255,1), rgba(29,161,255,0.55));
  animation: sounddeckWave 1.9s ease-in-out infinite;
  opacity: .88;
}
.sounddeck-wave span:nth-child(2) { animation-delay: .12s; }
.sounddeck-wave span:nth-child(3) { animation-delay: .24s; }
.sounddeck-wave span:nth-child(4) { animation-delay: .36s; }
.sounddeck-wave span:nth-child(5) { animation-delay: .48s; }
.sounddeck-wave span:nth-child(6) { animation-delay: .60s; }
.sounddeck-wave span:nth-child(7) { animation-delay: .72s; }
.sounddeck-wave span:nth-child(8) { animation-delay: .84s; }
.sounddeck-wave span:nth-child(9) { animation-delay: .96s; }
.sounddeck-wave span:nth-child(10) { animation-delay: 1.08s; }
.sounddeck-wave span:nth-child(11) { animation-delay: 1.20s; }
.sounddeck-wave span:nth-child(12) { animation-delay: 1.32s; }
@keyframes sounddeckWave {
  0%,100% { height: 18px; opacity: .42; }
  50% { height: 74px; opacity: 1; }
}
.sounddeck-progress {
  position:relative;
  height: 10px;
}
.sounddeck-progress-line {
  position:absolute;
  left:0; right:0; top:50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(55,231,255,0.95), rgba(138,77,255,0.78) 65%, rgba(255,255,255,0.18));
  box-shadow: 0 0 16px rgba(55,231,255,0.35);
}
.sounddeck-progress-dot {
  position:absolute;
  top:50%;
  left: 34%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(55,231,255,0.75);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 22px rgba(55,231,255,0.42);
}
.sounddeck-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.sounddeck-chip {
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.sounddeck-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(55,231,255,0.32);
  background: rgba(255,255,255,0.07);
}
.sounddeck-carousel-shell {
  display:grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items:center;
  gap:16px;
}
.sounddeck-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border:1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(10,14,23,0.98), rgba(8,11,18,0.88));
  color:#fff;
  font-size: 30px;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.30);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.sounddeck-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(55,231,255,0.24);
  background: linear-gradient(180deg, rgba(12,17,28,1), rgba(9,13,21,0.92));
}
.sounddeck-carousel {
  display:flex;
  gap:18px;
  overflow-x:auto;
  padding: 6px 2px 10px;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.sounddeck-carousel::-webkit-scrollbar { display:none; }
.track-shot {
  position:relative;
  flex: 0 0 208px;
  height: 312px;
  padding: 16px;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  background-color: #0a0e18;
  color: #fff;
  text-align:left;
  cursor:pointer;
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.track-shot:hover,
.track-shot.active {
  transform: translateY(-4px);
  border-color: rgba(82,197,255,0.38);
  box-shadow: 0 22px 38px rgba(0,0,0,0.32), 0 0 0 1px rgba(82,197,255,0.12) inset;
}
.track-shot-play {
  position:absolute;
  top:14px;
  left:14px;
  z-index:1;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  backdrop-filter: blur(10px);
}
.track-shot-inner {
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:1;
}
.track-shot-title {
  display:block;
  font-size: 28px;
  line-height: .96;
  font-weight: 700;
  letter-spacing: -.03em;
  text-shadow: 0 10px 18px rgba(0,0,0,0.38);
}
.track-shot-meta {
  display:flex;
  gap:8px;
  margin-top: 14px;
}
.track-shot-meta strong,
.track-shot-meta small {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 70px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 12px;
  background: rgba(7,10,17,0.52);
  border:1px solid rgba(255,255,255,0.14);
  color:#fff;
  font-size: 14px;
  backdrop-filter: blur(12px);
}
.track-shot-meta small {
  font-size: 13px;
}
.cover-neon {
  background:
    radial-gradient(circle at 70% 24%, rgba(255,167,76,0.78), transparent 16%),
    linear-gradient(180deg, rgba(128,7,0,0.46), transparent 30%),
    linear-gradient(135deg, rgba(43,4,4,0.78), rgba(15,44,26,0.92) 52%, rgba(12,16,24,1));
}
.cover-neon::after {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.06) 10% 12%, transparent 12% 100%),
    linear-gradient(180deg, transparent 0 68%, rgba(255,199,86,0.52) 68% 70%, transparent 70% 100%);
  mix-blend-mode: screen;
  opacity:.5;
}
.cover-gravity {
  background:
    radial-gradient(circle at 50% 34%, rgba(255,247,179,0.95), rgba(255,79,168,0.78) 18%, rgba(120,16,93,0.88) 36%, rgba(17,9,28,1) 72%),
    linear-gradient(180deg, rgba(255,93,183,0.30), transparent 40%),
    #110918;
}
.cover-gravity::after {
  content:"";
  position:absolute;
  width: 120px;
  height: 120px;
  border-radius:50%;
  left:50%; top:50%; transform:translate(-50%,-50%);
  border: 16px solid rgba(8,8,12,0.58);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12), 0 0 28px rgba(255,120,193,0.48);
}
.cover-nova {
  background:
    radial-gradient(circle at 45% 18%, rgba(255,226,151,0.58), transparent 14%),
    linear-gradient(180deg, rgba(191,142,68,0.15), transparent 30%),
    linear-gradient(180deg, rgba(79,57,33,0.20), transparent 58%),
    linear-gradient(180deg, rgba(39,44,57,0.15), rgba(12,15,24,0.96)),
    linear-gradient(135deg, rgba(51,35,27,1), rgba(12,14,21,1));
}
.cover-nova::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,12,18,0.75) 60% 100%);
}
.cover-signal {
  background:
    radial-gradient(circle at 64% 22%, rgba(199,206,214,0.22), transparent 16%),
    radial-gradient(circle at 55% 32%, rgba(54,145,255,0.24), transparent 18%),
    linear-gradient(135deg, rgba(37,39,54,0.82), rgba(22,32,60,0.92) 52%, rgba(12,14,22,1));
}
.cover-signal::after {
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 50% 45%, rgba(59,162,255,0.38), transparent 24%),
    linear-gradient(0deg, transparent 0 62%, rgba(255,255,255,0.06) 62% 64%, transparent 64% 100%),
    linear-gradient(90deg, transparent 0 45%, rgba(255,255,255,0.06) 45% 47%, transparent 47% 100%);
}
.cover-lucid {
  background:
    linear-gradient(180deg, rgba(108,123,255,0.18), rgba(255,56,136,0.08)),
    linear-gradient(180deg, rgba(83,145,255,0.75), rgba(108,44,148,0.82) 65%, rgba(10,14,22,1));
}
.cover-lucid::after {
  content:"";
  position:absolute;
  inset:0;
  background-image: linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,0.08) 18% 20%, transparent 20% 100%), linear-gradient(180deg, transparent 0 68%, rgba(255,120,175,0.26) 68% 100%);
}
.cover-midnight {
  background:
    radial-gradient(circle at 60% 70%, rgba(255,255,255,0.26), transparent 9%),
    radial-gradient(circle at 40% 26%, rgba(255,255,255,0.22), transparent 5%),
    linear-gradient(180deg, rgba(187,222,233,0.78), rgba(97,136,154,0.52) 52%, rgba(13,19,30,1));
}
.cover-midnight::after {
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(circle at 20% 18%, rgba(255,255,255,0.75) 0 2px, transparent 3px), radial-gradient(circle at 66% 28%, rgba(255,255,255,0.75) 0 3px, transparent 4px), radial-gradient(circle at 42% 40%, rgba(255,255,255,0.75) 0 2px, transparent 4px), radial-gradient(circle at 76% 60%, rgba(255,255,255,0.75) 0 2px, transparent 4px);
  opacity: .9;
}
@media (max-width: 1100px) {
  .sounddeck-stage {
    grid-template-columns: 1fr;
  }
  .sounddeck-cover {
    min-height: 300px;
  }
}
@media (max-width: 860px) {
  .sounddeck-player {
    padding: 20px;
    border-radius: 26px;
  }
  .sounddeck-carousel-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sounddeck-arrow {
    display:none;
  }
  .track-shot {
    flex-basis: 180px;
    height: 270px;
  }
  .track-shot-title {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .sounddeck-section {
    padding: 26px 0 58px;
  }
  .sounddeck-player-head {
    align-items:flex-start;
    flex-direction:column;
  }
  .sounddeck-console-top {
    grid-template-columns: 1fr;
  }
  .sounddeck-play {
    width: 66px;
    height: 66px;
  }
  .sounddeck-cover {
    min-height: 260px;
  }
  .sounddeck-cover h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .sounddeck-console {
    padding: 18px;
    border-radius: 22px;
  }
}


/* v34 - full width cards + compact on-demand player */
.sounddeck-section {
  padding: 74px 0 82px;
}
.sounddeck-player-wrap {
  margin-bottom: 34px;
}
.sounddeck-player {
  max-width: 1080px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px) scale(.985);
  transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
  pointer-events: none;
}
.sounddeck-player.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sounddeck-player[aria-hidden="true"] {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: none;
}
.sounddeck-player[aria-hidden="false"] {
  max-height: 900px;
}
.sounddeck-stage.compact-stage {
  grid-template-columns: 260px minmax(0,1fr);
  gap: 22px;
  align-items: start;
}
.sounddeck-cover {
  min-height: 300px;
}
.sounddeck-cover h2 {
  font-size: clamp(30px, 3.3vw, 44px);
}
.sounddeck-console.compact-console {
  gap: 16px;
  padding: 20px 22px 20px;
}
.compact-console-top {
  grid-template-columns: minmax(0,1fr) auto;
  gap: 16px;
}
.compact-data-row {
  gap: 8px;
}
.sounddeck-fullwave-wrap {
  width: 100%;
}
.full-width-wave {
  width: 100%;
  justify-content: space-between;
  gap: 0;
  height: 82px;
}
.full-width-wave span {
  flex: 1 1 auto;
  max-width: 10px;
  margin: 0 2px;
}
.sounddeck-progress {
  margin-top: 8px;
}
.sounddeck-carousel-bleed {
  width: 100%;
  margin-left: 0;
  padding: 0 20px;
}
.sounddeck-carousel-shell {
  grid-template-columns: 54px minmax(0,1fr) 54px;
  gap: 10px;
  width: min(980px, calc(100% - 34px));
  margin: 0 auto;
}
.sounddeck-carousel {
  width: 100%;
  gap: 20px;
  padding: 6px 0 14px;
}
.sounddeck-carousel.is-static {
  justify-content: center;
  overflow-x: visible;
}
.sounddeck-carousel-shell.is-static .sounddeck-arrow {
  opacity: .42;
  pointer-events: none;
}
.track-shot {
  flex: 0 0 clamp(210px, 12vw, 245px);
}
@media (max-width: 1200px) {
  .sounddeck-stage.compact-stage {
    grid-template-columns: 240px minmax(0,1fr);
  }
}
@media (max-width: 980px) {
  .sounddeck-section {
    padding: 58px 0 72px;
  }
  .sounddeck-stage.compact-stage {
    grid-template-columns: 1fr;
  }
  .sounddeck-player {
    max-width: min(calc(100% - 28px), 980px);
  }
}
@media (max-width: 860px) {
  .sounddeck-player-wrap {
    margin-bottom: 24px;
  }
  .sounddeck-carousel-bleed {
    padding: 0 12px;
  }
  .sounddeck-carousel-shell {
    width: calc(100% - 12px);
  }
  .track-shot {
    flex-basis: 180px;
  }
}
@media (max-width: 640px) {
  .sounddeck-player {
    max-width: calc(100% - 20px);
  }
  .sounddeck-cover {
    min-height: 250px;
  }
  .compact-console-top {
    grid-template-columns: 1fr;
  }
}


/* v35 - fixed click-to-open player */
.sounddeck-player.is-visible[aria-hidden="false"] {
  max-height: 900px;
  padding: 28px;
  border-width: 1px;
  margin: 0 auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
@media (max-width: 860px) {
  .sounddeck-player.is-visible[aria-hidden="false"] {
    padding: 20px;
  }
}


/* v36 - remove fake spectrum, keep clean professional timeline */
.sounddeck-wave,
.full-width-wave,
.sounddeck-fullwave-wrap {
  display: none !important;
}
.sounddeck-timeline-wrap {
  width: 100%;
  margin: 4px 0 2px;
  padding: 12px 0 4px;
}
.sounddeck-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  color: rgba(218, 232, 255, 0.62);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.minimal-progress {
  height: 18px;
  margin-top: 0 !important;
}
.minimal-progress .sounddeck-progress-line {
  height: 3px;
  background: linear-gradient(90deg, rgba(78, 203, 255, 0.9), rgba(78, 203, 255, 0.22) 34%, rgba(255,255,255,0.13) 34%, rgba(255,255,255,0.08));
  box-shadow: 0 0 18px rgba(55,231,255,0.16);
}
.minimal-progress .sounddeck-progress-dot {
  left: 34%;
  width: 11px;
  height: 11px;
  border-width: 1px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 0 15px rgba(55,231,255,0.28);
}
.sounddeck-console.compact-console {
  gap: 14px;
}


/* v37 - optional video player above audio deck */
.sounddeck-video-player {
  position: relative;
  z-index: 1;
  display: none;
  margin: 0 0 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}
.sounddeck-video-player.is-visible,
.sounddeck-video-player[aria-hidden="false"] {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.sounddeck-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at top left, rgba(55,231,255,0.16), transparent 28%),
    linear-gradient(180deg, rgba(8,12,22,0.96), rgba(6,9,16,0.94));
  box-shadow: 0 22px 48px rgba(0,0,0,0.34);
}
.sounddeck-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #02040a;
  object-fit: cover;
}
.sounddeck-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 24%, rgba(0,0,0,0.22));
}
.sounddeck-video-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(4, 7, 14, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}
.sounddeck-video-label span {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.sounddeck-video-label strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .sounddeck-video-frame {
    border-radius: 18px;
  }
  .sounddeck-video-label {
    left: 12px;
    bottom: 12px;
    gap: 8px;
    padding: 8px 10px;
  }
}


/* v38 - prevent video player from clipping audio deck */
.sounddeck-player.is-visible[aria-hidden="false"],
.sounddeck-player[aria-hidden="false"] {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
}

.sounddeck-video-player {
  margin-bottom: 26px;
}

.sounddeck-video-frame video {
  max-height: 58vh;
}

.sounddeck-stage.compact-stage {
  margin-top: 0;
}

.sounddeck-player-wrap {
  margin-bottom: 42px;
}

@media (max-width: 860px) {
  .sounddeck-video-frame video {
    max-height: 52vh;
  }
  .sounddeck-video-player {
    margin-bottom: 20px;
  }
}


/* v39 - remove overlay label/button on video player */
.sounddeck-video-label {
  display: none !important;
}


/* v40 - video controlled only by main audio play button */
.sounddeck-video-frame video {
  pointer-events: none;
}
.sounddeck-video-frame {
  cursor: default;
}


/* v41 - click video area to open fullscreen */
.sounddeck-video-frame {
  cursor: zoom-in;
}
.sounddeck-video-frame::before {
  content: "Fullscreen";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  background: rgba(4, 7, 14, 0.50);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
  backdrop-filter: blur(12px);
}
.sounddeck-video-frame:hover::before {
  opacity: 1;
  transform: translateY(0);
}


/* v42 - hidden scrollbars + BYWYOU blue social dock */
html,
body {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
* {
  scrollbar-width: none;
}
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.bywyou-floating-dock {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 240;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(29,161,255,0.18), transparent 36%),
    rgba(3, 5, 10, 0.58);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 16px 42px rgba(0,0,0,0.34), 0 0 32px rgba(29,161,255,0.08);
  backdrop-filter: blur(18px);
}

.bywyou-socials,
.bywyou-scroll-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bywyou-socials a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: rgba(232,242,255,0.72);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  opacity: .86;
  transition: color .22s ease, opacity .22s ease, transform .22s ease, text-shadow .22s ease;
}

.bywyou-socials a:hover {
  color: #5fd8ff;
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(48,183,255,0.46);
}

.bywyou-scroll-buttons {
  gap: 8px;
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.bywyou-scroll-btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #50cfff;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  background: radial-gradient(circle at 50% 45%, rgba(31,171,255,0.28), rgba(31,171,255,0.06) 62%, rgba(0,0,0,0.28));
  box-shadow: 0 0 20px rgba(29,161,255,0.34), inset 0 0 0 1px rgba(88,205,255,0.18);
  transition: transform .22s ease, color .22s ease, box-shadow .22s ease, background .22s ease;
}

.bywyou-scroll-btn:hover {
  color: #bff4ff;
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(29,161,255,0.52), inset 0 0 0 1px rgba(123,222,255,0.30);
  background: radial-gradient(circle at 50% 45%, rgba(45,190,255,0.36), rgba(31,171,255,0.08) 62%, rgba(0,0,0,0.30));
}

@media (max-width: 720px) {
  .bywyou-floating-dock {
    bottom: 14px;
    gap: 14px;
    padding: 8px 11px;
  }
  .bywyou-socials {
    gap: 10px;
  }
  .bywyou-socials a {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .bywyou-scroll-btn {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}


/* v43 - move social + scroll controls to top area */
.bywyou-floating-dock {
  top: 26px !important;
  right: 34px !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 999 !important;
  background:
    radial-gradient(circle at 78% 50%, rgba(29,161,255,0.22), transparent 36%),
    rgba(2, 4, 9, 0.46);
}

@media (max-width: 980px) {
  .bywyou-floating-dock {
    top: 76px !important;
    right: 14px !important;
  }
}

@media (max-width: 640px) {
  .bywyou-floating-dock {
    top: 72px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}


/* v44 - align social dock with desktop menu */
@media (min-width: 981px) {
  .bywyou-floating-dock {
    top: 17px !important;
    right: 34px !important;
    height: 54px;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
  }
}


/* v45 - fixed header with logo and menu while scrolling */
.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 990 !important;
}

body {
  padding-top: 0;
}

.visual-hero,
.empty-hero {
  padding-top: 0;
}

@media (min-width: 981px) {
  .bywyou-floating-dock {
    position: fixed !important;
    top: 17px !important;
    z-index: 1000 !important;
  }
}

@media (max-width: 980px) {
  .topbar {
    position: fixed !important;
  }
  .bywyou-floating-dock {
    position: fixed !important;
    z-index: 1000 !important;
  }
}


/* v48 - AI Create Produce Release process section */
.bywyou-process-section {
  position: relative;
  padding: 34px 0 110px;
  overflow: hidden;
}

.bywyou-process-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: min(780px, 78vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(67, 197, 255, 0.42), transparent);
  box-shadow: 0 0 26px rgba(29, 161, 255, 0.32);
}

.bywyou-process-wrap {
  position: relative;
  z-index: 1;
}

.bywyou-process-head {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.bywyou-process-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(87, 190, 255, 0.22);
  background: rgba(10, 18, 31, 0.46);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.bywyou-process-head h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.055em;
  text-shadow: 0 0 32px rgba(47, 177, 255, .16), 0 14px 42px rgba(0, 0, 0, .52);
}

.bywyou-process-head p {
  margin: 18px auto 0;
  max-width: 680px;
  color: rgba(218, 232, 255, 0.70);
  font-size: 16px;
  line-height: 1.75;
}

.bywyou-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bywyou-process-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    radial-gradient(circle at 18% 8%, rgba(29,161,255,0.18), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(138,77,255,0.12), transparent 24%),
    linear-gradient(180deg, rgba(10,14,24,0.88), rgba(7,10,18,0.82));
  box-shadow: 0 24px 52px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.bywyou-process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .75;
  pointer-events: none;
}

.bywyou-process-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(67,197,255,0.95), rgba(67,197,255,0.12));
  box-shadow: 0 0 18px rgba(67,197,255,0.30);
}

.bywyou-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(67, 197, 255, 0.24);
  box-shadow: 0 30px 66px rgba(0,0,0,0.34), 0 0 0 1px rgba(67,197,255,0.08) inset;
}

.bywyou-process-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 46px;
  color: rgba(95,216,255,0.82);
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: .28em;
}

.bywyou-process-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: .95;
  letter-spacing: -.04em;
}

.bywyou-process-card p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  color: rgba(218, 232, 255, 0.70);
  line-height: 1.68;
  font-size: 15px;
}

@media (max-width: 920px) {
  .bywyou-process-grid {
    grid-template-columns: 1fr;
  }
  .bywyou-process-card {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .bywyou-process-section {
    padding: 24px 0 86px;
  }
  .bywyou-process-head {
    text-align: left;
    margin-bottom: 24px;
  }
  .bywyou-process-card {
    padding: 24px;
    border-radius: 24px;
  }
}


/* v49 - complete home closing sections */
.bywyou-signal-section {
  position: relative;
  padding: 18px 0 88px;
  overflow: hidden;
}
.bywyou-signal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(52, 179, 255, 0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(121, 84, 255, 0.08), transparent 22%);
  pointer-events: none;
}
.bywyou-signal-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.bywyou-signal-kicker,
.bywyou-follow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(87, 190, 255, 0.18);
  background: rgba(10, 18, 31, 0.42);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.bywyou-signal-head h2,
.bywyou-follow-panel h2 {
  font-size: clamp(32px, 4.8vw, 66px);
  line-height: .96;
  letter-spacing: -.05em;
  text-shadow: 0 0 28px rgba(47, 177, 255, .14), 0 14px 42px rgba(0, 0, 0, .42);
}
.bywyou-signal-head p,
.bywyou-follow-panel p {
  margin: 16px auto 0;
  max-width: 720px;
  color: rgba(218, 232, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}
.bywyou-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.bywyou-signal-card {
  position: relative;
  min-height: 210px;
  padding: 28px 28px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    radial-gradient(circle at 100% 0%, rgba(29,161,255,0.12), transparent 28%),
    linear-gradient(180deg, rgba(10,14,24,0.88), rgba(7,10,18,0.82));
  box-shadow: 0 22px 48px rgba(0,0,0,0.24);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.bywyou-signal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(67,197,255,0.24);
  box-shadow: 0 30px 66px rgba(0,0,0,0.34), 0 0 0 1px rgba(67,197,255,0.08) inset;
}
.bywyou-signal-line {
  display: block;
  width: 78px;
  height: 2px;
  margin-bottom: 42px;
  background: linear-gradient(90deg, rgba(67,197,255,0.95), rgba(67,197,255,0.10));
  box-shadow: 0 0 18px rgba(67,197,255,0.34);
}
.bywyou-signal-card h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: .95;
  letter-spacing: -.04em;
}
.bywyou-signal-card p {
  max-width: 330px;
  color: rgba(218, 232, 255, 0.70);
  line-height: 1.68;
  font-size: 15px;
}

.bywyou-follow-section {
  padding: 0 0 88px;
}
.bywyou-follow-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 50px 40px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(54, 194, 255, 0.18), transparent 28%),
    radial-gradient(circle at 18% 100%, rgba(121, 84, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(8, 12, 22, 0.92), rgba(5, 8, 14, 0.94));
  box-shadow: 0 28px 64px rgba(0,0,0,0.30);
}
.bywyou-follow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .65;
  pointer-events: none;
}
.bywyou-follow-panel > * {
  position: relative;
  z-index: 1;
}
.bywyou-follow-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.bywyou-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(87, 190, 255, 0.20);
  color: #fff;
  background: rgba(15, 24, 40, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 10px 24px rgba(0,0,0,0.18);
  transition: transform .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.bywyou-follow-btn:hover {
  transform: translateY(-2px);
  color: #dff7ff;
  border-color: rgba(87, 190, 255, 0.38);
  background: rgba(18, 30, 52, 0.72);
  box-shadow: 0 16px 28px rgba(0,0,0,0.24), 0 0 18px rgba(67,197,255,0.16);
}

.bywyou-footer {
  position: relative;
  padding: 0 0 94px;
}
.bywyou-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bywyou-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bywyou-footer-brand strong {
  font-size: 15px;
  letter-spacing: .18em;
}
.bywyou-footer-brand span,
.bywyou-footer-copy {
  color: rgba(218,232,255,0.56);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .bywyou-signal-grid {
    grid-template-columns: 1fr;
  }
  .bywyou-signal-card {
    min-height: 190px;
  }
}
@media (max-width: 640px) {
  .bywyou-signal-section {
    padding: 6px 0 68px;
  }
  .bywyou-signal-head,
  .bywyou-follow-panel {
    text-align: left;
  }
  .bywyou-follow-panel {
    padding: 34px 22px;
    border-radius: 26px;
  }
  .bywyou-follow-actions {
    justify-content: flex-start;
  }
  .bywyou-follow-btn {
    min-width: 0;
    width: calc(50% - 7px);
  }
  .bywyou-footer {
    padding-bottom: 90px;
  }
  .bywyou-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* BYWYOU Virtual DJ ------------------------------------------------------ */
.virtual-dj-home-section,
.virtual-dj-playlist-section {
  position: relative;
  overflow: hidden;
}

.virtual-dj-home-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 53, 212, 0.24), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(58, 147, 255, 0.20), transparent 38%),
    linear-gradient(135deg, rgba(17,18,38,0.96), rgba(5,6,18,0.98));
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}

.virtual-dj-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #ff72ea;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.virtual-dj-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff36d4;
  box-shadow: 0 0 18px rgba(255,54,212,0.95);
}

.virtual-dj-home-copy h2,
.virtual-dj-copy h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 86px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.virtual-dj-home-copy p,
.virtual-dj-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.virtual-dj-home-btn,
.virtual-dj-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff35d4, #6d6aff);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(255,53,212,0.22);
  cursor: pointer;
}

.virtual-dj-controls button + button {
  background: rgba(255,255,255,0.10);
  box-shadow: none;
}

.virtual-dj-home-visual {
  position: relative;
  min-height: 270px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}

.virtual-dj-orb {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.92), rgba(255,53,212,0.46) 18%, rgba(80,99,255,0.16) 48%, transparent 72%);
  filter: blur(1px);
  animation: vdjFloat 6s ease-in-out infinite alternate;
}

.virtual-dj-home-visual strong {
  position: relative;
  z-index: 2;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-align: center;
  text-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.virtual-dj-wave {
  position: absolute;
  bottom: 32px;
  display: flex;
  align-items: end;
  gap: 8px;
  z-index: 3;
}

.virtual-dj-wave i {
  display: block;
  width: 7px;
  height: 24px;
  border-radius: 99px;
  background: rgba(255,255,255,0.78);
  animation: vdjBars 1.1s ease-in-out infinite alternate;
}

.virtual-dj-wave i:nth-child(2) { animation-delay: .15s; }
.virtual-dj-wave i:nth-child(3) { animation-delay: .3s; }
.virtual-dj-wave i:nth-child(4) { animation-delay: .45s; }
.virtual-dj-wave i:nth-child(5) { animation-delay: .6s; }

.virtual-dj-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 72px;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 51, 214, 0.25), transparent 35%),
    radial-gradient(circle at 12% 76%, rgba(70, 113, 255, 0.22), transparent 34%),
    #050510;
}

.virtual-dj-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.virtual-dj-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.virtual-dj-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 800;
}

.virtual-dj-console {
  position: relative;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
    rgba(8,9,24,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 36px 110px rgba(0,0,0,0.54);
  overflow: hidden;
}

.virtual-dj-console::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,53,212,0.16);
  filter: blur(24px);
}

.virtual-dj-topline,
.virtual-dj-now,
.virtual-dj-decks,
.virtual-dj-crossfader,
.virtual-dj-controls,
.virtual-dj-status {
  position: relative;
  z-index: 2;
}

.virtual-dj-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.virtual-dj-topline i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: #48ffac;
  box-shadow: 0 0 18px rgba(72,255,172,0.9);
}

.virtual-dj-now {
  margin-top: 38px;
}

.virtual-dj-now small {
  color: #ff72ea;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 900;
}

.virtual-dj-now h2 {
  margin: 8px 0 8px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.virtual-dj-now p,
.virtual-dj-status {
  color: rgba(255,255,255,0.64);
}

.virtual-dj-decks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.virtual-dj-deck {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.virtual-dj-deck.is-active {
  border-color: rgba(255,53,212,0.72);
  box-shadow: 0 0 28px rgba(255,53,212,0.18);
}

.virtual-dj-deck span {
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.virtual-dj-deck strong {
  display: block;
  min-height: 42px;
  margin: 8px 0 14px;
  line-height: 1.15;
}

.virtual-dj-meter {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,0.10);
}

.virtual-dj-meter i {
  display: block;
  width: 4%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #53ffcf, #ff35d4);
  transition: width .16s linear;
}

.virtual-dj-crossfader {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  color: rgba(255,255,255,0.58);
  font-weight: 900;
}

.virtual-dj-crossfader div {
  position: relative;
  height: 12px;
  border-radius: 99px;
  background: rgba(255,255,255,0.12);
}

.virtual-dj-crossfader i {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 24px rgba(255,255,255,0.46);
  transform: translate(-50%, -50%);
  transition: left .16s linear;
}

.virtual-dj-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.virtual-dj-status {
  margin-top: 18px;
  font-size: 14px;
}

.virtual-dj-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.virtual-dj-track-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.virtual-dj-track-card span {
  color: #ff72ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.virtual-dj-track-card h3 {
  margin: 10px 0 8px;
}

.virtual-dj-track-card p {
  color: rgba(255,255,255,0.62);
  margin: 0;
}



.virtual-dj-home-video {
  min-height: clamp(260px, 24vw, 420px);
  background: #02030a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 24px 70px rgba(0,0,0,0.34);
}

.virtual-dj-home-video video,
.virtual-dj-loop-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

.virtual-dj-video-overlay,
.virtual-dj-loop-player-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(4,6,20,0.82), rgba(4,6,20,0.42));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.virtual-dj-video-overlay span,
.virtual-dj-loop-player-label span {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.virtual-dj-video-overlay strong,
.virtual-dj-loop-player-label strong {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.virtual-dj-loop-player {
  position: relative;
  z-index: 2;
  height: clamp(220px, 30vw, 330px);
  margin-top: 28px;
  overflow: hidden;
  border-radius: 26px;
  background: #02030a;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 70px rgba(0,0,0,0.38);
}

.virtual-dj-loop-player::after,
.virtual-dj-home-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2,3,10,0.04), rgba(2,3,10,0.44)),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(0,0,0,0.34));
}

@keyframes vdjBars {
  from { height: 18px; opacity: .58; }
  to { height: 62px; opacity: 1; }
}

@keyframes vdjFloat {
  from { transform: translateY(-10px) scale(.94); }
  to { transform: translateY(14px) scale(1.05); }
}

@media (max-width: 860px) {
  .virtual-dj-home-panel,
  .virtual-dj-shell,
  .virtual-dj-track-grid {
    grid-template-columns: 1fr;
  }
  .virtual-dj-hero {
    padding-top: 108px;
  }
  .virtual-dj-decks {
    grid-template-columns: 1fr;
  }
}

.virtual-dj-deck.is-parallel {
  border-color: rgba(72,255,172,0.86);
  box-shadow: 0 0 30px rgba(72,255,172,0.20);
}

/* v43 - Virtual DJ layout: console video left, player card right */
.virtual-dj-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.virtual-dj-home-layout .virtual-dj-home-video {
  min-height: clamp(330px, 34vw, 560px);
  border-radius: 34px;
  border: 0;
  background: transparent;
  box-shadow: 0 34px 100px rgba(0,0,0,0.42);
}

.virtual-dj-home-layout .virtual-dj-home-panel {
  display: block;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 34px;
}

.virtual-dj-video-overlay,
.virtual-dj-loop-player-label {
  display: none !important;
}

.virtual-dj-hero {
  min-height: 100vh;
}

.virtual-dj-shell {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
}

.virtual-dj-hero-video {
  position: relative;
  min-height: clamp(360px, 38vw, 620px);
  overflow: hidden;
  border-radius: 36px;
  background: #02030a;
  box-shadow: 0 38px 120px rgba(0,0,0,0.46);
}

.virtual-dj-hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

.virtual-dj-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 46%, rgba(0,0,0,0.22)),
    linear-gradient(180deg, rgba(2,3,10,0.02), rgba(2,3,10,0.24));
}

.virtual-dj-console {
  align-self: center;
}

.virtual-dj-now {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .virtual-dj-home-layout,
  .virtual-dj-shell {
    grid-template-columns: 1fr;
  }

  .virtual-dj-home-layout .virtual-dj-home-video,
  .virtual-dj-hero-video {
    min-height: clamp(260px, 58vw, 480px);
  }
}


/* v44 - Virtual DJ refinements: no status text, smaller cards, full console video */
.virtual-dj-status {
  display: none !important;
}

.virtual-dj-home-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.62fr) !important;
  gap: clamp(18px, 3vw, 38px) !important;
}

.virtual-dj-home-layout .virtual-dj-home-video {
  min-height: clamp(260px, 28vw, 440px) !important;
  border-radius: 24px !important;
  padding: clamp(8px, 1.4vw, 18px);
  background: #02030a !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.36) !important;
}

.virtual-dj-home-layout .virtual-dj-home-video video,
.virtual-dj-hero-video video,
.virtual-dj-home-video video,
.virtual-dj-loop-player video {
  inset: clamp(6px, 1vw, 14px) !important;
  width: calc(100% - clamp(12px, 2vw, 28px)) !important;
  height: calc(100% - clamp(12px, 2vw, 28px)) !important;
  object-fit: contain !important;
  background: #02030a;
  border-radius: 18px;
}

.virtual-dj-home-layout .virtual-dj-home-panel {
  padding: clamp(20px, 2.6vw, 32px) !important;
  border-radius: 26px !important;
  max-width: 420px;
  justify-self: end;
}

.virtual-dj-home-copy h2 {
  font-size: clamp(30px, 4vw, 52px) !important;
  line-height: .94 !important;
}

.virtual-dj-home-copy p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin-top: 16px !important;
}

.virtual-dj-home-btn,
.virtual-dj-controls button {
  min-height: 42px !important;
  padding: 0 18px !important;
  margin-top: 20px !important;
  font-size: 13px !important;
}

.virtual-dj-shell {
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.64fr) !important;
  gap: clamp(18px, 3vw, 42px) !important;
}

.virtual-dj-hero-video {
  min-height: clamp(300px, 32vw, 500px) !important;
  border-radius: 24px !important;
  padding: clamp(8px, 1.2vw, 16px);
}

.virtual-dj-console {
  padding: clamp(18px, 2.4vw, 28px) !important;
  border-radius: 26px !important;
  max-width: 440px;
  justify-self: end;
}

.virtual-dj-now {
  margin-top: 22px !important;
}

.virtual-dj-now h2 {
  font-size: clamp(25px, 3.2vw, 42px) !important;
}

.virtual-dj-decks {
  gap: 10px !important;
  margin-top: 20px !important;
}

.virtual-dj-deck {
  padding: 14px !important;
  border-radius: 18px !important;
}

.virtual-dj-crossfader,
.virtual-dj-controls {
  margin-top: 22px !important;
}

.virtual-dj-hero-video::after,
.virtual-dj-home-video::after {
  background: radial-gradient(circle at 50% 50%, transparent 62%, rgba(0,0,0,0.18)) !important;
}

@media (max-width: 980px) {
  .virtual-dj-home-layout,
  .virtual-dj-shell {
    grid-template-columns: 1fr !important;
  }
  .virtual-dj-home-layout .virtual-dj-home-panel,
  .virtual-dj-console {
    max-width: none;
    justify-self: stretch;
  }
  .virtual-dj-home-layout .virtual-dj-home-video,
  .virtual-dj-hero-video {
    min-height: clamp(220px, 56vw, 390px) !important;
  }
}


/* v46 - Virtual DJ deck playback times */
#vdjNowMeta {
  display: none !important;
}

.virtual-dj-deck-time {
  margin: -6px 0 12px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.virtual-dj-deck.is-active .virtual-dj-deck-time,
.virtual-dj-deck.is-parallel .virtual-dj-deck-time {
  color: #ffffff;
}


/* v47 - Virtual DJ title cleanup and centered now mixing */
.virtual-dj-topline {
  justify-content: center !important;
  text-align: center !important;
}

.virtual-dj-topline strong {
  display: none !important;
}

.virtual-dj-now {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.virtual-dj-now small,
.virtual-dj-now h2,
.virtual-dj-now p {
  text-align: center !important;
}

.virtual-dj-now h2 {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100%;
}


/* VDJ round controls + no fade overlap mode */
.virtual-dj-round-controls {
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 24px !important;
}
.virtual-dj-controls .vdj-round-btn {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  font-size: 22px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.36), rgba(255,255,255,0.06) 34%, rgba(255,53,212,0.92) 100%) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow: 0 18px 38px rgba(255,53,212,0.25), inset 0 0 18px rgba(255,255,255,0.08) !important;
}
.virtual-dj-controls .vdj-round-btn:nth-child(2) {
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.30), rgba(255,255,255,0.08) 34%, rgba(109,106,255,0.88) 100%) !important;
}
.virtual-dj-controls .vdj-round-btn:nth-child(3) {
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.24), rgba(255,255,255,0.08) 34%, rgba(18,20,46,0.96) 100%) !important;
}
.virtual-dj-controls .vdj-round-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(255,53,212,0.34), inset 0 0 18px rgba(255,255,255,0.10) !important;
}
@media (max-width: 520px) {
  .virtual-dj-controls .vdj-round-btn {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    font-size: 20px !important;
  }
}


/* v49 - fixed wide Virtual DJ card and custom round button icons */
.virtual-dj-console {
  width: 520px !important;
  max-width: 520px !important;
  min-width: 520px !important;
}

.virtual-dj-shell {
  grid-template-columns: minmax(0, 1fr) 520px !important;
}

.virtual-dj-controls .vdj-round-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  font-size: 0 !important;
}

.vdj-icon {
  display: block;
  position: relative;
}

.vdj-icon-play {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid #fff;
  margin-left: 4px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.45));
}

.vdj-icon-pause {
  width: 23px;
  height: 28px;
}

.vdj-icon-pause::before,
.vdj-icon-pause::after {
  content: "";
  position: absolute;
  top: 0;
  width: 7px;
  height: 28px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.35);
}

.vdj-icon-pause::before {
  left: 0;
}

.vdj-icon-pause::after {
  right: 0;
}

.vdj-icon-stop {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.38);
}

@media (max-width: 980px) {
  .virtual-dj-console {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }
  .virtual-dj-shell {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .vdj-icon-play {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }
  .vdj-icon-pause {
    width: 20px;
    height: 25px;
  }
  .vdj-icon-pause::before,
  .vdj-icon-pause::after {
    width: 6px;
    height: 25px;
  }
  .vdj-icon-stop {
    width: 22px;
    height: 22px;
  }
}


/* v50 - centered deck labels/times and short hook mode */
.virtual-dj-decks,
.virtual-dj-deck,
.virtual-dj-deck span,
.virtual-dj-deck strong,
.virtual-dj-deck-time {
  text-align: center !important;
}

.virtual-dj-deck {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.virtual-dj-deck span,
.virtual-dj-deck strong,
.virtual-dj-deck-time {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.virtual-dj-meter {
  width: 100% !important;
}

/* v51 - Random PixVerse visual player controlled by audio buttons */
.virtual-dj-random-video {
  isolation: isolate;
}

.virtual-dj-random-video .vdj-visual-video {
  position: absolute !important;
  inset: clamp(6px, 1vw, 14px) !important;
  width: calc(100% - clamp(12px, 2vw, 28px)) !important;
  height: calc(100% - clamp(12px, 2vw, 28px)) !important;
  object-fit: cover !important;
  background: #02030a;
  border-radius: 18px;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity .42s ease;
  pointer-events: none;
  z-index: 1;
}

.virtual-dj-random-video .vdj-visual-video.is-active {
  opacity: 1;
  z-index: 2;
}

.virtual-dj-random-video::before {
  content: "";
  position: absolute;
  inset: clamp(6px, 1vw, 14px);
  border-radius: 18px;
  background: radial-gradient(circle at center, rgba(38, 28, 90, .32), rgba(2, 3, 10, .98));
  z-index: 0;
}


/* v48 - Click visual player to open fullscreen with close X */
.virtual-dj-hero-video {
  cursor: pointer;
}

.vdj-video-exit {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 8;
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}

.vdj-video-exit:hover {
  background: rgba(8,12,24,0.84);
}

.virtual-dj-hero-video.is-fullscreen,
.virtual-dj-hero-video.is-faux-fullscreen,
.virtual-dj-hero-video:fullscreen {
  border-radius: 0;
  background: #000;
}

.virtual-dj-hero-video.is-faux-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
}

body.vdj-faux-fullscreen-open {
  overflow: hidden;
}

.virtual-dj-hero-video.is-fullscreen .vdj-video-exit,
.virtual-dj-hero-video.is-faux-fullscreen .vdj-video-exit,
.virtual-dj-hero-video:fullscreen .vdj-video-exit {
  display: inline-flex;
}

.virtual-dj-hero-video.is-fullscreen .vdj-visual-video,
.virtual-dj-hero-video.is-faux-fullscreen .vdj-visual-video,
.virtual-dj-hero-video:fullscreen .vdj-visual-video {
  object-fit: contain;
  background: #000;
}


/* v49 - Video random transition without black gaps */
.vdj-visual-video {
  opacity: 0;
  transition: opacity .65s ease;
  background: #000;
}

.vdj-visual-video.is-active {
  opacity: 1;
  z-index: 2;
}

.virtual-dj-hero-video {
  background: #000;
}

/* v55 - home menu sections: Music / DJ SET / Media / Community */
.bywyou-section-title {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: center;
}
.bywyou-section-kicker,
.sounddeck-row-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(87, 190, 255, 0.22);
  background: rgba(10, 18, 31, 0.46);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.bywyou-section-title h2 {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 70px);
  line-height: .94;
  letter-spacing: -.055em;
  text-shadow: 0 0 32px rgba(47, 177, 255, .16), 0 14px 42px rgba(0, 0, 0, .52);
}
.bywyou-section-title h2 .title-soft {
  color: rgba(244, 248, 255, 0.94);
}
.bywyou-section-title h2 .title-accent {
  color: #67d7ff;
  text-shadow: 0 0 14px rgba(87, 225, 255, .26), 0 0 32px rgba(87, 225, 255, .16), 0 14px 42px rgba(0, 0, 0, .48);
}
.bywyou-section-title p {
  margin: 20px auto 0;
  max-width: 720px;
  color: rgba(218, 232, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}
.sounddeck-double-stack {
  display: grid;
  gap: 18px;
}
.sounddeck-row-label {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.sounddeck-row-label span {
  margin-bottom: 0;
  color: #dff7ff;
  border-color: rgba(255,255,255,0.14);
}
.sounddeck-row-label strong {
  display: none;
}
.sounddeck-row-label-second {
  margin-top: 12px;
}
.bywyou-process-grid {
  max-width: 820px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bywyou-media-card {
  min-height: 270px;
}
.bywyou-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 26px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(87, 190, 255, 0.20);
  color: #fff;
  background: rgba(15, 24, 40, 0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bywyou-card-link:hover {
  border-color: rgba(87, 190, 255, 0.44);
  box-shadow: 0 0 22px rgba(67,197,255,0.18);
}
#productions,
#dj-set,
#media,
#community {
  scroll-margin-top: 92px;
}
@media (max-width: 920px) {
  .bywyou-process-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
  .sounddeck-row-label {
    align-items: flex-start;
    flex-direction: column;
  }
  .sounddeck-row-label strong {
    text-align: left;
  }
}


/* v57 - clean cover cards with LED duration/BPM display */
.track-cover-card,
.track-shot.track-cover-card {
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.track-shot.track-cover-card::before,
.track-shot.track-cover-card .track-shot-play,
.track-shot.track-cover-card .track-shot-inner {
  display: none !important;
}
.track-cover-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px 22px 8px 8px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 34px rgba(0,0,0,0.28), 0 0 0 1px rgba(87,225,255,0.08) inset;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.track-shot.track-cover-card:hover .track-cover-image,
.track-shot.track-cover-card.active .track-cover-image {
  transform: translateY(-4px);
  border-color: rgba(82,197,255,0.42);
  box-shadow: 0 22px 42px rgba(0,0,0,0.38), 0 0 22px rgba(87,225,255,0.16);
}
.track-led-info {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 0;
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(87,225,255,0.22);
  border-top: 0;
  background: linear-gradient(180deg, rgba(2,10,16,0.96), rgba(3,15,22,0.88));
  color: #77eaff;
  font-family: "Courier New", Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 0 7px rgba(87,225,255,.9), 0 0 16px rgba(87,225,255,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 20px rgba(0,0,0,0.18);
}
.track-loading {
  color: rgba(218,232,255,0.68);
  padding: 28px;
  text-align: center;
  width: 100%;
}
.sounddeck-cover.has-cover-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sounddeck-cover.has-cover-image::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.18));
}

/* v58 - horizontal cover fallback in audio player */
.sounddeck-image-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.sounddeck-image-preview.is-visible {
  opacity: 1;
}
.sounddeck-image-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.32));
}
.sounddeck-video-frame video {
  position: relative;
  z-index: 0;
}
.sounddeck-video-label {
  z-index: 2;
}


/* v41 - single productions carousel with version selectors */
.sounddeck-single-stack {
  margin-top: 4px;
}
.track-cover-card {
  height: auto;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  border-radius: 0;
}
.track-cover-card:hover,
.track-cover-card.active {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: none;
}
.track-cover-card .track-cover-image {
  display:block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #0a0e18;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
  overflow:hidden;
  position:relative;
}
.track-cover-card .track-cover-image::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 38%);
  pointer-events:none;
}
.track-version-row {
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 9px;
  width: 100%;
  margin-top: 10px;
}
.track-version-btn {
  appearance:none;
  border:1px solid rgba(55,231,255,0.28);
  border-radius: 999px;
  min-height: 32px;
  padding: 0 11px;
  background: rgba(6,13,23,0.82);
  color:#7eeaff;
  font-size: 10px;
  line-height:1;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  cursor:pointer;
  text-shadow: 0 0 10px rgba(55,231,255,0.70);
  box-shadow: inset 0 0 16px rgba(55,231,255,0.06), 0 0 14px rgba(55,231,255,0.10);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.track-version-btn:hover,
.track-version-btn.active {
  transform: translateY(-1px);
  color:#ffffff;
  border-color: rgba(55,231,255,0.55);
  background: rgba(17,39,63,0.94);
  box-shadow: inset 0 0 18px rgba(55,231,255,0.12), 0 0 18px rgba(55,231,255,0.18);
}
.track-version-row .track-version-btn:only-child {
  min-width: 132px;
}
.track-led-info { display:none !important; }
@media (max-width: 640px) {
  .track-version-row { gap: 7px; }
  .track-version-btn { padding: 0 9px; font-size: 9px; min-height: 30px; }
}


/* v60 - clean player version selector */
.track-version-row {
  display: none !important;
}
.sounddeck-player-head,
.sounddeck-now,
.sounddeck-console h3,
.sounddeck-console p,
.sounddeck-play,
.sounddeck-timeline-wrap,
.sounddeck-actions,
.sounddeck-video-label,
.clean-data-row #sounddeckKey,
.clean-data-row #sounddeckTag {
  display: none !important;
}
.sounddeck-console.compact-console {
  align-self: stretch;
  justify-content: center;
  gap: 16px;
  padding: 18px;
}
.sounddeck-console-top.compact-console-top {
  display: none !important;
}
.clean-data-row {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
}
.clean-data-row #sounddeckBpm {
  min-width: 150px;
  justify-content: center;
  border-color: rgba(87,225,255,.32);
  color: #7eeaff;
  font-family: "Courier New", Consolas, monospace;
  font-size: 16px;
  letter-spacing: .18em;
  text-shadow: 0 0 9px rgba(87,225,255,.9), 0 0 22px rgba(87,225,255,.35);
}
.sounddeck-version-picker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.player-version-btn {
  appearance: none;
  border: 1px solid rgba(55,231,255,0.30);
  border-radius: 999px;
  min-height: 38px;
  padding: 0 18px;
  background: rgba(6,13,23,0.86);
  color: #7eeaff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  text-shadow: 0 0 10px rgba(55,231,255,0.72);
  box-shadow: inset 0 0 18px rgba(55,231,255,0.07), 0 0 16px rgba(55,231,255,0.12);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.player-version-btn:hover,
.player-version-btn.active {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(55,231,255,0.62);
  background: rgba(17,39,63,0.94);
  box-shadow: inset 0 0 20px rgba(55,231,255,0.13), 0 0 20px rgba(55,231,255,0.20);
}
.player-version-btn:only-child {
  min-width: 150px;
}
.track-cover-card {
  cursor: pointer;
}
@media (max-width: 640px) {
  .player-version-btn { min-height: 34px; padding: 0 13px; font-size: 10px; }
  .clean-data-row #sounddeckBpm { font-size: 13px; min-width: 130px; }
}

/* v61 - restore audio controls, keep clean labels and version buttons inside player */
.sounddeck-player-head,
.sounddeck-now,
.sounddeck-console h3,
.sounddeck-console p,
.sounddeck-video-label,
.clean-data-row #sounddeckKey,
.clean-data-row #sounddeckTag {
  display: none !important;
}
.sounddeck-console.compact-console {
  align-self: stretch;
  justify-content: center;
  gap: 14px;
  padding: 20px 22px;
}
.sounddeck-console-top.compact-console-top {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.sounddeck-console-top.compact-console-top > div {
  display: none !important;
}
.sounddeck-play {
  display: grid !important;
  place-items: center;
  margin: 0 auto;
  width: 74px;
  height: 74px;
}
.sounddeck-timeline-wrap {
  display: block !important;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 2px;
}
.sounddeck-time-row {
  display: none !important;
}
.sounddeck-actions {
  display: flex !important;
  justify-content: center;
  gap: 10px;
}
.clean-data-row {
  display: flex !important;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
}
.clean-data-row #sounddeckBpm {
  min-width: 150px;
  justify-content: center;
  border-color: rgba(87,225,255,.32);
  color: #7eeaff;
  font-family: "Courier New", Consolas, monospace;
  font-size: 16px;
  letter-spacing: .18em;
  text-shadow: 0 0 9px rgba(87,225,255,.9), 0 0 22px rgba(87,225,255,.35);
}
.sounddeck-version-picker {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .sounddeck-play { width: 64px; height: 64px; }
  .clean-data-row #sounddeckBpm { font-size: 13px; min-width: 130px; }
}

/* v62 - restored futuristic real audio player */
.sounddeck-player-head,
.sounddeck-now,
.sounddeck-console h3,
.sounddeck-console p,
.sounddeck-video-label,
.clean-data-row #sounddeckKey,
.clean-data-row #sounddeckTag,
.sounddeck-actions {
  display: none !important;
}
.sounddeck-console.compact-console {
  position: relative;
  align-self: stretch;
  justify-content: center;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(55,231,255,0.14), transparent 30%),
    linear-gradient(180deg, rgba(6,10,18,0.86), rgba(4,8,14,0.74));
  box-shadow: inset 0 0 34px rgba(55,231,255,0.055), inset 0 0 0 1px rgba(255,255,255,0.025);
}
.sounddeck-console.compact-console::before {
  content: "";
  position: absolute;
  inset: 18px 22px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87,225,255,.42), transparent);
  opacity: .65;
  pointer-events: none;
}
.sounddeck-console-top.compact-console-top {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.sounddeck-console-top.compact-console-top > div {
  display: none !important;
}
.sounddeck-play {
  display: grid !important;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(87,225,255,.22);
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(145deg, rgba(29,161,255,.36), rgba(138,77,255,.30));
  box-shadow:
    inset 0 0 0 12px rgba(255,255,255,.035),
    0 0 24px rgba(87,225,255,.22),
    0 16px 42px rgba(0,0,0,.38);
}
.sounddeck-play.is-playing {
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.20), transparent 24%),
    linear-gradient(145deg, rgba(55,231,255,.38), rgba(29,161,255,.24));
  box-shadow:
    inset 0 0 0 12px rgba(255,255,255,.04),
    0 0 34px rgba(87,225,255,.42),
    0 16px 42px rgba(0,0,0,.38);
}
.sounddeck-play-icon {
  transform: translateX(2px);
  filter: drop-shadow(0 0 12px rgba(255,255,255,.55));
}
.sounddeck-play.is-playing .sounddeck-play-icon {
  transform: translateX(0);
}
.clean-data-row {
  display: flex !important;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
}
.clean-data-row #sounddeckBpm {
  min-width: 154px;
  justify-content: center;
  border-color: rgba(87,225,255,.36);
  color: #9af3ff;
  background: rgba(5,13,22,.72);
  font-family: "Courier New", Consolas, monospace;
  font-size: 15px;
  letter-spacing: .18em;
  text-shadow: 0 0 9px rgba(87,225,255,.9), 0 0 22px rgba(87,225,255,.35);
  box-shadow: inset 0 0 18px rgba(55,231,255,.08), 0 0 16px rgba(55,231,255,.10);
}
.sounddeck-version-picker {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.player-version-btn {
  min-height: 38px;
  padding: 0 20px;
  border-radius: 999px;
}
.sounddeck-audio-core {
  width: min(100%, 620px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.sounddeck-wave {
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  height: 86px;
  padding: 6px 0 2px;
  opacity: .76;
}
.sounddeck-wave span {
  width: 7px;
  min-height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(158,243,255,1), rgba(55,231,255,.62) 55%, rgba(29,161,255,.25));
  box-shadow: 0 0 12px rgba(55,231,255,.28);
  animation-play-state: paused;
}
.sounddeck-wave.is-playing span {
  animation-play-state: running;
}
.sounddeck-timeline-wrap {
  display: block !important;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.sounddeck-time-row {
  display: flex !important;
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(211,237,255,.70);
  font-family: "Courier New", Consolas, monospace;
  font-size: 12px;
  letter-spacing: .12em;
}
.sounddeck-progress {
  position: relative;
  height: 18px;
  cursor: pointer;
}
.sounddeck-progress-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 0 10px rgba(0,0,0,.45), 0 0 16px rgba(55,231,255,.12);
}
.sounddeck-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(55,231,255,.98), rgba(138,77,255,.88));
  box-shadow: 0 0 18px rgba(55,231,255,.45);
}
.sounddeck-progress-dot {
  top: 50%;
  left: 0%;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(154,243,255,.92);
  background: #ffffff;
  box-shadow: 0 0 24px rgba(55,231,255,.55);
}
.sounddeck-stage.compact-stage {
  grid-template-columns: minmax(220px, 260px) minmax(0,1fr);
}
.sounddeck-cover.has-cover-image {
  min-height: 300px;
}
@media (max-width: 860px) {
  .sounddeck-stage.compact-stage { grid-template-columns: 1fr; }
  .sounddeck-cover.has-cover-image { min-height: 340px; }
  .sounddeck-wave { height: 68px; gap: 6px; }
  .sounddeck-play { width: 74px; height: 74px; }
}


/* v64 - compact horizontal futuristic player below video */
.hidden-player-cover { display:none !important; }
.sounddeck-stage.horizontal-player-stage {
  display:block !important;
  margin-top: 0;
}
.sounddeck-console.compact-console.horizontal-console {
  gap: 12px;
  padding: 16px 18px 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(55,231,255,0.12), transparent 22%),
    radial-gradient(circle at 88% 0%, rgba(138,77,255,0.10), transparent 22%),
    linear-gradient(180deg, rgba(6,10,18,0.88), rgba(5,8,14,0.80));
  box-shadow: inset 0 0 26px rgba(55,231,255,0.045), inset 0 0 0 1px rgba(255,255,255,0.03);
}
.sounddeck-console.compact-console.horizontal-console::before {
  inset: 12px 18px auto;
  opacity: .55;
}
.sounddeck-horizontal-bar {
  display: grid;
  grid-template-columns: auto minmax(140px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}
.sounddeck-track-compact {
  min-width: 0;
}
.sounddeck-track-label {
  display:block;
  margin-bottom: 4px;
  color: rgba(118, 228, 255, 0.78);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.sounddeck-track-compact #sounddeckTitleText {
  display:block !important;
  margin:0;
  color:#f4fbff;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -.02em;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sounddeck-track-compact #sounddeckDescription,
.sounddeck-horizontal-bar #sounddeckKey,
.sounddeck-horizontal-bar #sounddeckTag,
.sounddeck-track-compact .sounddeck-now {
  display:none !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play {
  width: 58px;
  height: 58px;
  margin: 0;
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.03), 0 0 22px rgba(87,225,255,.16), 0 10px 28px rgba(0,0,0,.34);
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play-icon {
  font-size: 22px;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-version-picker {
  justify-content: center;
  gap: 10px;
}
.sounddeck-console.compact-console.horizontal-console .player-version-btn {
  min-height: 36px;
  padding: 0 15px;
  font-size: 11px;
}
.sounddeck-console.compact-console.horizontal-console .clean-data-row {
  justify-content: flex-end;
}
.sounddeck-console.compact-console.horizontal-console .clean-data-row #sounddeckBpm {
  min-width: 118px;
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-audio-core {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  gap: 8px;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-wave {
  display: none !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-timeline-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 4px 0 0;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress {
  height: 16px;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-line {
  height: 3px;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 8px rgba(0,0,0,.42), 0 0 14px rgba(55,231,255,.10);
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-fill {
  background: linear-gradient(90deg, rgba(55,231,255,.98), rgba(66,195,255,.86) 50%, rgba(138,77,255,.78));
  box-shadow: 0 0 15px rgba(55,231,255,.35);
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-dot {
  width: 13px;
  height: 13px;
  border-width: 1px;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-time-row {
  display:flex !important;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .12em;
}
.sounddeck-console.compact-console.horizontal-console .compact-actions,
.sounddeck-actions.compact-actions {
  display:flex !important;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap: 8px;
  margin-top: 2px;
}
.sounddeck-actions.compact-actions .sounddeck-chip {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.sounddeck-video-player {
  margin-bottom: 14px;
}
.sounddeck-video-frame {
  border-radius: 22px;
}
@media (max-width: 980px) {
  .sounddeck-horizontal-bar {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "play title"
      "versions bpm";
    align-items: center;
  }
  .sounddeck-console.compact-console.horizontal-console .sounddeck-play { grid-area: play; }
  .sounddeck-track-compact { grid-area: title; }
  .sounddeck-version-picker { grid-area: versions; justify-content: flex-start !important; }
  .clean-data-row { grid-area: bpm; justify-content: flex-end !important; }
}
@media (max-width: 700px) {
  .sounddeck-console.compact-console.horizontal-console {
    padding: 14px 14px 12px;
    border-radius: 20px;
  }
  .sounddeck-horizontal-bar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "play"
      "title"
      "versions"
      "bpm";
    justify-items: center;
    text-align:center;
    gap: 10px;
  }
  .sounddeck-track-compact #sounddeckTitleText {
    white-space: normal;
  }
  .sounddeck-version-picker { justify-content: center !important; }
  .clean-data-row { justify-content: center !important; }
  .sounddeck-actions.compact-actions { justify-content:center; }
}


/* v65 - techno futuristic player refinement */
.hidden-player-cover,
#sounddeckCover.hidden-player-cover,
.sounddeck-stage.horizontal-player-stage #sounddeckCover {
  display: none !important;
}
.sounddeck-video-player {
  margin-bottom: 8px !important;
}
.sounddeck-video-frame {
  border-radius: 24px;
  border-color: rgba(89, 226, 255, 0.16);
  box-shadow: 0 18px 42px rgba(0,0,0,.30), inset 0 0 0 1px rgba(255,255,255,.02);
}
.sounddeck-console.compact-console.horizontal-console {
  position: relative;
  overflow: hidden;
  padding: 14px 16px 12px;
  border-radius: 22px;
  border: 1px solid rgba(86, 220, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(7,17,28,.92), rgba(4,9,17,.96) 40%, rgba(11,16,30,.92)),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  box-shadow:
    0 16px 34px rgba(0,0,0,.34),
    inset 0 0 36px rgba(53, 214, 255, .05),
    inset 0 0 0 1px rgba(255,255,255,.02);
}
.sounddeck-console.compact-console.horizontal-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(55,231,255,.06), transparent 35%, transparent 65%, rgba(148,86,255,.05), transparent),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
}
.sounddeck-horizontal-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(140px,1fr) auto auto;
  gap: 12px;
  align-items: center;
}
.sounddeck-track-compact {
  min-width: 0;
}
.sounddeck-track-label {
  display: none !important;
}
.sounddeck-track-compact #sounddeckTitleText {
  display: block !important;
  margin: 0;
  color: #f7fdff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(55,231,255,.18);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play {
  width: 56px;
  height: 56px;
  border-color: rgba(87,225,255,.26);
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.14), transparent 24%),
    linear-gradient(145deg, rgba(29,161,255,.34), rgba(138,77,255,.30));
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.03),
    0 0 22px rgba(87,225,255,.12),
    0 10px 28px rgba(0,0,0,.35);
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play:hover,
.sounddeck-console.compact-console.horizontal-console .sounddeck-play.is-playing {
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.035),
    0 0 28px rgba(87,225,255,.28),
    0 10px 28px rgba(0,0,0,.35);
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play-icon {
  font-size: 20px;
}
.sounddeck-console.compact-console.horizontal-console .player-version-btn {
  min-height: 35px;
  padding: 0 16px;
  border-color: rgba(55,231,255,.34);
  background: linear-gradient(180deg, rgba(7,16,28,.88), rgba(6,12,21,.92));
  color: #a5f2ff;
  font-size: 11px;
  letter-spacing: .16em;
  box-shadow: inset 0 0 14px rgba(55,231,255,.05), 0 0 14px rgba(55,231,255,.08);
}
.sounddeck-console.compact-console.horizontal-console .player-version-btn:hover,
.sounddeck-console.compact-console.horizontal-console .player-version-btn.active {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15,41,67,.96), rgba(8,25,44,.92));
  border-color: rgba(55,231,255,.7);
  box-shadow: inset 0 0 18px rgba(55,231,255,.10), 0 0 18px rgba(55,231,255,.22);
}
.sounddeck-console.compact-console.horizontal-console .clean-data-row #sounddeckBpm {
  min-width: 114px;
  min-height: 35px;
  padding: 0 14px;
  border-color: rgba(87,225,255,.30);
  background: linear-gradient(180deg, rgba(7,15,25,.92), rgba(4,10,18,.92));
  color: #b5f8ff;
  font-family: "Courier New", Consolas, monospace;
  font-size: 14px;
  letter-spacing: .28em;
  text-shadow: 0 0 9px rgba(87,225,255,.95), 0 0 18px rgba(87,225,255,.32);
}
.sounddeck-console.compact-console.horizontal-console .compact-audio-core {
  position: relative;
  z-index: 1;
  gap: 6px;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-timeline-wrap {
  padding-top: 0;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress {
  height: 20px;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15,40,54,.55), rgba(25,35,54,.45));
  box-shadow: inset 0 0 8px rgba(0,0,0,.45), 0 0 12px rgba(55,231,255,.08);
  overflow: hidden;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 0%, rgba(66,215,255,.16) 14%, transparent 28%, transparent 60%, rgba(145,89,255,.16) 78%, transparent 100%);
  animation: sounddeckLaserSweep 3.8s linear infinite;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-fill {
  position: relative;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(62,232,255,1) 0%, rgba(87,225,255,.98) 35%, rgba(134,110,255,.92) 100%);
  box-shadow: 0 0 12px rgba(55,231,255,.42), 0 0 22px rgba(55,231,255,.20);
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-fill::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -16px;
  width: 32px;
  height: 18px;
  background: radial-gradient(circle, rgba(160,247,255,.82) 0%, rgba(55,231,255,.35) 45%, transparent 72%);
  filter: blur(1px);
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(167,249,255,.9);
  background: #ffffff;
  box-shadow: 0 0 18px rgba(55,231,255,.55), 0 0 32px rgba(55,231,255,.20);
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-time-row {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-time-row span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 4px;
  color: #aef6ff;
  font-family: "Courier New", Consolas, monospace;
  font-size: 13px;
  letter-spacing: .20em;
  text-shadow: 0 0 7px rgba(87,225,255,.95), 0 0 18px rgba(87,225,255,.22);
}
.sounddeck-actions,
.sounddeck-actions.compact-actions,
.sounddeck-chip,
#sounddeckSpotify,
#sounddeckYoutube,
#sounddeckSuno {
  display: none !important;
}
@keyframes sounddeckLaserSweep {
  0% { transform: translateX(-65%); opacity: .15; }
  12% { opacity: .65; }
  45% { opacity: .35; }
  100% { transform: translateX(65%); opacity: .15; }
}
@media (max-width: 980px) {
  .sounddeck-horizontal-bar {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "play title"
      "versions bpm";
    gap: 12px;
  }
  .sounddeck-console.compact-console.horizontal-console .sounddeck-play { grid-area: play; }
  .sounddeck-track-compact { grid-area: title; }
  .sounddeck-version-picker { grid-area: versions; justify-content: flex-start !important; }
  .clean-data-row { grid-area: bpm; justify-content: flex-end !important; }
}
@media (max-width: 700px) {
  .sounddeck-track-compact #sounddeckTitleText {
    white-space: normal;
    text-align: center;
  }
  .sounddeck-horizontal-bar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "play"
      "title"
      "versions"
      "bpm";
    justify-items: center;
    text-align: center;
    gap: 10px;
  }
  .sounddeck-version-picker { justify-content: center !important; }
  .clean-data-row { justify-content: center !important; }
}


/* v66 - keep horizontal cover visible while switching player versions */
.sounddeck-video-frame {
  aspect-ratio: 16 / 9;
  min-height: 280px;
}
.sounddeck-video-frame video {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover;
}
.sounddeck-image-preview {
  position: absolute !important;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .sounddeck-video-frame {
    min-height: 190px;
  }
}


/* v70 - DJ SET embedded directly in home */
.virtual-dj-embed-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 78% 20%, rgba(87, 225, 255, 0.12), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(138, 77, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(5, 8, 16, 0), rgba(4, 8, 16, 0.72) 22%, rgba(4, 8, 16, 0.50));
}
.virtual-dj-embed-title {
  margin-bottom: 34px;
}
.virtual-dj-home-embed-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: stretch;
}
.virtual-dj-embed-section .virtual-dj-hero-video {
  min-height: clamp(360px, 38vw, 580px);
  border: 1px solid rgba(87, 225, 255, 0.12);
  box-shadow: 0 28px 74px rgba(0,0,0,.36), 0 0 44px rgba(55,231,255,.06);
}
.virtual-dj-embed-section .virtual-dj-console {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(87,225,255,.14);
  box-shadow: 0 28px 74px rgba(0,0,0,.34), inset 0 0 36px rgba(55,231,255,.055);
}
.virtual-dj-embed-section .virtual-dj-now {
  margin-top: 26px;
}
.virtual-dj-embed-section .virtual-dj-status {
  min-height: 44px;
}
@media (max-width: 980px) {
  .virtual-dj-home-embed-shell {
    grid-template-columns: 1fr;
  }
  .virtual-dj-embed-section .virtual-dj-hero-video {
    min-height: clamp(280px, 58vw, 480px);
  }
}


/* v67 - BYWYOU logo button for fullscreen exit */
.vdj-video-exit.vdj-logo-exit {
  top: 5%;
  right: 3%;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.vdj-video-exit.vdj-logo-exit img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(55, 231, 255, 0.22));
}

.vdj-video-exit.vdj-logo-exit:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  opacity: .92;
}

@media (max-width: 768px) {
  .vdj-video-exit.vdj-logo-exit {
    top: 5%;
    right: 3%;
    padding: 0;
  }

  .vdj-video-exit.vdj-logo-exit img {
    height: 34px;
  }
}

/* v90 - productions carousel full browser width + taller proportional audio card */
.sounddeck-carousel-bleed {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: clamp(14px, 2.4vw, 36px) !important;
  padding-right: clamp(14px, 2.4vw, 36px) !important;
}
.sounddeck-carousel-shell {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  grid-template-columns: 58px minmax(0, 1fr) 58px !important;
}
.sounddeck-carousel {
  width: 100% !important;
  padding-left: 2px !important;
  padding-right: 2px !important;
  scroll-padding-left: clamp(14px, 2.4vw, 36px);
}
.sounddeck-carousel.is-static {
  justify-content: flex-start !important;
}
.sounddeck-player {
  max-width: min(1320px, calc(100vw - 34px)) !important;
}
.sounddeck-console.compact-console.horizontal-console {
  min-height: clamp(124px, 10vw, 158px) !important;
  padding: clamp(20px, 2.1vw, 28px) clamp(20px, 2.4vw, 32px) clamp(18px, 2vw, 26px) !important;
  display: flex;
  justify-content: center;
}
.sounddeck-horizontal-bar {
  min-height: 70px;
  gap: clamp(16px, 2vw, 28px) !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play {
  width: clamp(66px, 5.2vw, 82px) !important;
  height: clamp(66px, 5.2vw, 82px) !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play-icon {
  font-size: clamp(22px, 1.8vw, 28px) !important;
}
.sounddeck-console.compact-console.horizontal-console .player-version-btn {
  min-height: clamp(40px, 3vw, 48px) !important;
  padding-left: clamp(18px, 1.8vw, 26px) !important;
  padding-right: clamp(18px, 1.8vw, 26px) !important;
}
.sounddeck-console.compact-console.horizontal-console .clean-data-row #sounddeckBpm {
  min-height: clamp(40px, 3vw, 48px) !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress {
  height: 26px !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-line {
  height: 5px !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-time-row {
  margin-top: 10px !important;
}
@media (max-width: 700px) {
  .sounddeck-carousel-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px !important;
    gap: 8px !important;
  }
  .sounddeck-console.compact-console.horizontal-console {
    min-height: auto !important;
    padding: 18px 16px 16px !important;
  }
  .sounddeck-horizontal-bar {
    min-height: 0;
  }
}

/* v91 - full horizontal cover visible, compact audio player restored */
.sounddeck-video-frame {
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
  height: auto !important;
  background: #020812 !important;
}
.sounddeck-video-frame video {
  object-fit: contain !important;
  background: #020812 !important;
}
.sounddeck-image-preview {
  background-size: contain !important;
  background-position: center center !important;
  background-color: #020812 !important;
}
.sounddeck-video-frame:fullscreen,
.sounddeck-video-frame.is-faux-fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.sounddeck-video-frame:fullscreen video,
.sounddeck-video-frame:fullscreen .sounddeck-image-preview,
.sounddeck-video-frame.is-faux-fullscreen video,
.sounddeck-video-frame.is-faux-fullscreen .sounddeck-image-preview {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background-size: contain !important;
  background-position: center center !important;
  background-color: #000 !important;
}
.sounddeck-video-frame:fullscreen::before,
.sounddeck-video-frame.is-faux-fullscreen::before,
.sounddeck-video-frame:fullscreen::after,
.sounddeck-video-frame.is-faux-fullscreen::after,
.sounddeck-video-frame:fullscreen .sounddeck-video-label,
.sounddeck-video-frame.is-faux-fullscreen .sounddeck-video-label {
  display: none !important;
}
.sounddeck-console.compact-console.horizontal-console {
  min-height: 96px !important;
  padding: 14px 18px 16px !important;
  display: block !important;
}
.sounddeck-horizontal-bar {
  min-height: 48px !important;
  gap: 14px !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play {
  width: 54px !important;
  height: 54px !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-play-icon {
  font-size: 18px !important;
}
.sounddeck-console.compact-console.horizontal-console .player-version-btn {
  min-height: 34px !important;
  padding: 8px 16px !important;
}
.sounddeck-console.compact-console.horizontal-console .clean-data-row #sounddeckBpm {
  min-height: 34px !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress {
  height: 18px !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-progress-line {
  height: 3px !important;
}
.sounddeck-console.compact-console.horizontal-console .sounddeck-time-row {
  margin-top: 6px !important;
}
@media (max-width: 720px) {
  .sounddeck-video-frame {
    min-height: 0 !important;
  }
}


/* v63 - Media photo slider full width */
.bywyou-media-photo-slider {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 46vw, 560px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(87, 190, 255, 0.18);
  background:
    radial-gradient(circle at 18% 10%, rgba(29,161,255,0.24), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(255,45,224,0.20), transparent 30%),
    linear-gradient(180deg, rgba(10,14,24,0.94), rgba(5,8,15,0.92));
  box-shadow: 0 30px 80px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.bywyou-media-photo-track,
.bywyou-media-photo-slide {
  position: absolute;
  inset: 0;
}

.bywyou-media-photo-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
  transform: scale(1.018);
}

.bywyou-media-photo-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.bywyou-media-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bywyou-media-photo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.38)),
    linear-gradient(90deg, rgba(4,6,12,0.54), transparent 54%, rgba(4,6,12,0.34));
  pointer-events: none;
}

.bywyou-media-photo-caption {
  position: absolute;
  left: clamp(22px, 4vw, 54px);
  bottom: clamp(22px, 4vw, 46px);
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: min(560px, 74vw);
}

.bywyou-media-photo-caption span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(67,231,255,0.28);
  background: rgba(2,8,18,0.54);
  color: var(--cyan);
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
}

.bywyou-media-photo-caption strong {
  color: #fff;
  font-size: clamp(30px, 5.4vw, 72px);
  line-height: .92;
  letter-spacing: -.055em;
  text-shadow: 0 22px 46px rgba(0,0,0,0.58), 0 0 30px rgba(67,231,255,0.16);
}

.bywyou-media-photo-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(4,8,18,0.56);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.36), 0 0 22px rgba(29,161,255,0.14);
  backdrop-filter: blur(14px);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.bywyou-media-photo-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  border-color: rgba(67,231,255,0.34);
  background: rgba(11,22,42,0.72);
}

.bywyou-media-photo-arrow.prev { left: 22px; }
.bywyou-media-photo-arrow.next { right: 22px; }

.bywyou-media-photo-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 5;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.bywyou-media-photo-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
  transition: width .24s ease, background .24s ease, box-shadow .24s ease;
}

.bywyou-media-photo-dots button.is-active {
  width: 28px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(67,231,255,0.58);
}

@media (max-width: 760px) {
  .bywyou-media-photo-slider {
    min-height: 360px;
    border-radius: 26px;
  }
  .bywyou-media-photo-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
  .bywyou-media-photo-arrow.prev { left: 12px; }
  .bywyou-media-photo-arrow.next { right: 12px; }
  .bywyou-media-photo-caption {
    left: 20px;
    right: 20px;
    bottom: 48px;
  }
}

/* v64 - Media photos carousel + fullscreen */
.bywyou-media-photo-slider {
  width: 100% !important;
  min-height: 0 !important;
  padding: 0 66px 5px !important;
  border-radius: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.bywyou-media-photo-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 28px;
}
.bywyou-media-photo-track {
  position: relative !important;
  inset: auto !important;
  display: flex;
  gap: 18px;
  width: 100%;
  transition: transform .42s ease;
  will-change: transform;
}
.bywyou-media-photo-card,
.bywyou-media-photo-slide {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 calc((100% - 36px) / 3);
  aspect-ratio: 16 / 9;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(87,190,255,0.18);
  background: rgba(5,9,18,0.88);
  box-shadow: 0 24px 64px rgba(0,0,0,0.36), 0 0 0 1px rgba(255,255,255,0.04) inset;
  cursor: pointer;
}
.bywyou-media-photo-card img,
.bywyou-media-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .4s ease;
}
.bywyou-media-photo-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}
.bywyou-media-photo-card::after,
.bywyou-media-photo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.20));
  pointer-events: none;
}
.bywyou-media-photo-caption,
.bywyou-media-photo-dots {
  display: none !important;
}
.bywyou-media-photo-arrow {
  top: 50% !important;
  padding-bottom: 5px !important;
}
.bywyou-media-photo-arrow.prev { left: 0 !important; }
.bywyou-media-photo-arrow.next { right: 0 !important; }
.bywyou-media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
}
.bywyou-media-lightbox.is-open {
  display: flex;
}
.bywyou-media-lightbox img {
  max-width: min(94vw, 1500px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 34px 110px rgba(0,0,0,0.62), 0 0 0 1px rgba(255,255,255,0.12);
}
.bywyou-media-lightbox-close,
.bywyou-media-lightbox-arrow {
  position: fixed;
  z-index: 10000;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(4,8,18,0.62);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.42);
}
.bywyou-media-lightbox-close {
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  font-size: 34px;
  line-height: 1;
}
.bywyou-media-lightbox-arrow {
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  font-size: 44px;
  line-height: 1;
  padding-bottom: 5px;
}
.bywyou-media-lightbox-arrow.prev { left: 24px; }
.bywyou-media-lightbox-arrow.next { right: 24px; }
body.bywyou-media-lightbox-open {
  overflow: hidden;
}
@media (max-width: 980px) {
  .bywyou-media-photo-slider {
    padding: 0 54px 5px !important;
  }
  .bywyou-media-photo-card,
  .bywyou-media-photo-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}
@media (max-width: 760px) {
  .bywyou-media-photo-slider {
    padding: 0 46px 5px !important;
  }
  .bywyou-media-photo-viewport {
    border-radius: 22px;
  }
  .bywyou-media-photo-track {
    gap: 0;
  }
  .bywyou-media-photo-card,
  .bywyou-media-photo-slide {
    flex-basis: 100%;
    border-radius: 20px;
  }
  .bywyou-media-lightbox {
    padding: 18px;
  }
  .bywyou-media-lightbox img {
    max-width: 94vw;
    max-height: 84vh;
    border-radius: 18px;
  }
  .bywyou-media-lightbox-close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    font-size: 30px;
  }
  .bywyou-media-lightbox-arrow {
    width: 46px;
    height: 46px;
    font-size: 34px;
  }
  .bywyou-media-lightbox-arrow.prev { left: 10px; }
  .bywyou-media-lightbox-arrow.next { right: 10px; }
}

/* v65 - Media fullscreen above every site layer */
.bywyou-media-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  isolation: isolate !important;
  transform: none !important;
}
.bywyou-media-lightbox.is-open {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.bywyou-media-lightbox img {
  position: relative !important;
  z-index: 2147483646 !important;
}
.bywyou-media-lightbox-close,
.bywyou-media-lightbox-arrow {
  z-index: 2147483647 !important;
}
html.bywyou-media-lightbox-open,
body.bywyou-media-lightbox-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

/* Media section title accent */
.bywyou-process-head h2 .title-soft {
  color: rgba(244, 248, 255, 0.94);
}
.bywyou-process-head h2 .title-accent {
  color: #67d7ff;
  text-shadow: 0 0 14px rgba(87, 225, 255, .26), 0 0 32px rgba(87, 225, 255, .16), 0 14px 42px rgba(0, 0, 0, .48);
}


/* BYWYOU Fan Ranking ------------------------------------------------------ */
.bywyou-community-chart-section {
  position: relative;
  padding: 0 0 96px;
  overflow: hidden;
}
.bywyou-community-chart-section::before {
  content: "";
  position: absolute;
  inset: -10% 0 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(54, 194, 255, 0.12), transparent 26%),
    radial-gradient(circle at 82% 6%, rgba(255, 54, 212, 0.10), transparent 25%),
    linear-gradient(180deg, transparent, rgba(5, 8, 14, 0.45));
  pointer-events: none;
}
.bywyou-community-chart-wrap,
.bywyou-community-chart-head,
.bywyou-top-chart,
.bywyou-community-socials {
  position: relative;
  z-index: 1;
}
.bywyou-community-chart-head {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}
.bywyou-community-chart-head h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .9;
  letter-spacing: -.065em;
  text-shadow: 0 0 34px rgba(47,177,255,.16), 0 18px 48px rgba(0,0,0,.50);
}
.bywyou-community-chart-head p {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(218,232,255,.72);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
}
.bywyou-top-chart {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.085);
  background:
    linear-gradient(90deg, rgba(67,197,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    radial-gradient(circle at 72% 0%, rgba(67,197,255,.18), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(255,54,212,.10), transparent 30%),
    linear-gradient(180deg, rgba(8,12,22,.96), rgba(4,7,13,.96));
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.025);
}
.bywyou-top-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(67,197,255,.08) 42%, transparent 58%);
  transform: translateX(-100%);
  animation: bywyouChartSweep 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bywyouChartSweep {
  0%, 42% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  70%, 100% { transform: translateX(100%); opacity: 0; }
}
.bywyou-top-chart-hero {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 46px) clamp(22px, 4vw, 44px) 24px;
  border-bottom: 1px solid rgba(255,255,255,.075);
}
.bywyou-chart-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(67,197,255,.24);
  background: rgba(7,18,31,.62);
  color: #9eeaff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.bywyou-chart-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #44f6ff;
  box-shadow: 0 0 18px rgba(68,246,255,.95);
  animation: bywyouLivePulse 1.5s ease-in-out infinite;
}
@keyframes bywyouLivePulse { 50% { transform: scale(1.45); opacity: .55; } }
.bywyou-top-chart-hero h3 {
  margin: 18px 0 0;
  font-size: clamp(36px, 5.4vw, 74px);
  line-height: .88;
  letter-spacing: -.065em;
}
.bywyou-top-chart-hero p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(218,232,255,.70);
  font-size: 15px;
  line-height: 1.68;
}
.bywyou-chart-pulse {
  flex: 0 0 auto;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(67,197,255,.28);
  background:
    radial-gradient(circle, rgba(67,197,255,.20), rgba(12,20,34,.72) 62%, rgba(7,10,18,.86));
  box-shadow: 0 0 34px rgba(67,197,255,.18), inset 0 0 30px rgba(67,197,255,.08);
}
.bywyou-chart-pulse span {
  display: block;
  color: rgba(158,234,255,.76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
}
.bywyou-chart-pulse strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 30px;
  letter-spacing: -.04em;
}
.bywyou-chart-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 18px clamp(14px, 3vw, 26px) 22px;
}
.bywyou-chart-loading {
  padding: 26px;
  color: rgba(218,232,255,.70);
  text-align: center;
}
.bywyou-chart-row {
  --row-glow: rgba(67,197,255,.08);
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(140px, .35fr) 116px;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 13px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.065);
  background:
    radial-gradient(circle at 0% 50%, var(--row-glow), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.047), rgba(255,255,255,.025));
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.bywyou-chart-row:hover {
  transform: translateY(-2px);
  border-color: rgba(67,197,255,.20);
  box-shadow: 0 18px 38px rgba(0,0,0,.26), 0 0 18px rgba(67,197,255,.10);
}
.bywyou-chart-row.is-top {
  --row-glow: rgba(255,54,212,.16);
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 0% 50%, rgba(255,54,212,.16), transparent 38%),
    radial-gradient(circle at 100% 30%, rgba(67,197,255,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.068), rgba(255,255,255,.028));
}
.bywyou-chart-position {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -.04em;
  background: rgba(8,16,28,.66);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 0 18px rgba(67,197,255,.05);
}
.bywyou-chart-row.is-top .bywyou-chart-position {
  color: #00111c;
  background: linear-gradient(135deg, #43c5ff, #f95fe5);
  box-shadow: 0 0 24px rgba(67,197,255,.22);
}
.bywyou-chart-track strong {
  display: block;
  color: #fff;
  font-size: clamp(17px, 2.3vw, 24px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.bywyou-chart-track span {
  display: block;
  margin-top: 6px;
  color: rgba(218,232,255,.54);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bywyou-chart-hype {
  min-width: 0;
}
.bywyou-chart-hype-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(218,232,255,.70);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bywyou-chart-meter {
  position: relative;
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.bywyou-chart-meter i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #43c5ff, #f95fe5);
  box-shadow: 0 0 16px rgba(67,197,255,.35);
  transition: width .35s ease;
}
.bywyou-chart-vote {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #04101c;
  background: linear-gradient(135deg, #43c5ff, #e6fbff);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(67,197,255,.18);
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}
.bywyou-chart-vote:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.bywyou-chart-vote:disabled {
  cursor: default;
  opacity: .55;
  filter: grayscale(.25);
  transform: none;
}
.bywyou-chart-row.is-voted {
  animation: bywyouVoteGlow .8s ease-out;
}
@keyframes bywyouVoteGlow {
  0% { box-shadow: 0 0 0 rgba(67,197,255,0); }
  35% { box-shadow: 0 0 38px rgba(67,197,255,.32); }
  100% { box-shadow: 0 12px 28px rgba(0,0,0,.18); }
}
.bywyou-chart-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(20px, 4vw, 42px) 28px;
  border-top: 1px solid rgba(255,255,255,.065);
  color: rgba(218,232,255,.66);
  font-size: 13px;
}
.bywyou-chart-refresh {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(67,197,255,.22);
  background: rgba(8,18,31,.68);
  color: #dff7ff;
  font-weight: 800;
  cursor: pointer;
}
.bywyou-community-socials {
  margin-top: 28px;
}
@media (max-width: 760px) {
  .bywyou-community-chart-section { padding-bottom: 86px; }
  .bywyou-community-chart-head { text-align: left; margin-bottom: 26px; }
  .bywyou-top-chart { border-radius: 28px; }
  .bywyou-top-chart-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px 20px;
  }
  .bywyou-chart-pulse {
    width: 100%;
    height: auto;
    min-height: 76px;
    border-radius: 22px;
  }
  .bywyou-chart-row {
    grid-template-columns: 52px minmax(0, 1fr) 86px;
    grid-template-areas:
      "pos track vote"
      "pos hype hype";
    gap: 10px 12px;
    min-height: 96px;
    padding: 12px;
  }
  .bywyou-chart-position { grid-area: pos; width: 46px; height: 64px; border-radius: 17px; }
  .bywyou-chart-track { grid-area: track; }
  .bywyou-chart-hype { grid-area: hype; }
  .bywyou-chart-vote { grid-area: vote; min-width: 82px; min-height: 40px; font-size: 12px; }
  .bywyou-chart-foot { align-items: flex-start; flex-direction: column; padding: 16px 20px 24px; }
}

/* BYWYOU Community chart: cover + internal audio player */
.bywyou-chart-row {
  grid-template-columns: 62px 52px 76px minmax(0, 1fr) minmax(140px, .32fr) 112px;
}
.bywyou-chart-cover {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(8,16,28,.70);
  box-shadow: 0 16px 30px rgba(0,0,0,.30), 0 0 20px rgba(67,197,255,.08);
}
.bywyou-chart-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bywyou-chart-play {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #03111f;
  background: linear-gradient(135deg, #43c5ff, #e6fbff);
  box-shadow: 0 0 22px rgba(67,197,255,.22), inset 0 0 12px rgba(255,255,255,.35);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.bywyou-chart-play:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
}
.bywyou-chart-play span {
  transform: translateX(1px);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}
.bywyou-chart-play.is-playing {
  background: linear-gradient(135deg, #f95fe5, #43c5ff);
  color: #fff;
  box-shadow: 0 0 26px rgba(249,95,229,.25), 0 0 26px rgba(67,197,255,.18);
}
.bywyou-chart-play.is-playing span {
  transform: none;
  font-size: 13px;
  letter-spacing: -2px;
}
.bywyou-chart-row.is-playing {
  border-color: rgba(67,197,255,.26);
  box-shadow: 0 18px 40px rgba(0,0,0,.28), 0 0 24px rgba(67,197,255,.12);
}
.bywyou-chart-audio-line {
  position: relative;
  width: min(260px, 100%);
  height: 5px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.bywyou-chart-audio-line i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #43c5ff, #f95fe5);
  box-shadow: 0 0 14px rgba(67,197,255,.40);
}
@media (max-width: 760px) {
  .bywyou-chart-row {
    grid-template-columns: 44px 54px minmax(0, 1fr) 82px;
    grid-template-areas:
      "pos cover track vote"
      "play cover track vote"
      "hype hype hype hype";
    min-height: 124px;
  }
  .bywyou-chart-position { grid-area: pos; width: 40px; height: 38px; border-radius: 14px; font-size: 16px; }
  .bywyou-chart-cover { grid-area: cover; width: 54px; height: 74px; border-radius: 16px; }
  .bywyou-chart-play { grid-area: play; width: 40px; height: 40px; }
  .bywyou-chart-track { grid-area: track; }
  .bywyou-chart-hype { grid-area: hype; }
  .bywyou-chart-vote { grid-area: vote; min-width: 76px; min-height: 40px; font-size: 11px; }
  .bywyou-chart-audio-line { width: 100%; margin-top: 8px; }
}


/* BYWYOU Community chart refinements: fullscreen covers, draggable progress, cleaner score */
body.bywyou-chart-cover-open {
  overflow: hidden;
}
.bywyou-chart-cover {
  padding: 0;
  cursor: zoom-in;
}
.bywyou-chart-cover:focus-visible,
.bywyou-chart-audio-line:focus-visible,
.bywyou-chart-cover-lightbox-close:focus-visible {
  outline: 2px solid rgba(67,197,255,.95);
  outline-offset: 3px;
}
.bywyou-chart-hype-top {
  justify-content: flex-end;
}
.bywyou-chart-hype-top strong {
  color: #fff;
  font-size: 16px;
  letter-spacing: -.02em;
}
.bywyou-chart-audio-line {
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  appearance: none;
}
.bywyou-chart-audio-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: var(--chart-audio-progress, 0%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(230,251,255,.95);
  box-shadow: 0 0 16px rgba(67,197,255,.55);
  opacity: .0;
  transition: opacity .2s ease, left .15s ease;
}
.bywyou-chart-row.is-playing .bywyou-chart-audio-line::after,
.bywyou-chart-audio-line:hover::after {
  opacity: 1;
}
.bywyou-chart-audio-line i {
  position: relative;
}
.bywyou-chart-cover-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(3,8,16,.48);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}
.bywyou-chart-cover-lightbox.is-open {
  display: flex;
}
.bywyou-chart-cover-lightbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(67,197,255,.18), transparent 38%),
    radial-gradient(circle at 50% 70%, rgba(249,95,229,.14), transparent 42%);
  pointer-events: none;
}
.bywyou-chart-cover-lightbox-frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(82vw, 620px);
  max-height: min(88vh, 900px);
}
.bywyou-chart-cover-lightbox-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(82vw, 620px);
  max-height: min(88vh, 900px);
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 40px 110px rgba(0,0,0,.68), 0 0 54px rgba(67,197,255,.18);
}
.bywyou-chart-cover-lightbox-close {
  position: fixed;
  z-index: 2;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(5,12,22,.56);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0,0,0,.32);
}
.bywyou-chart-cover-lightbox-close:hover {
  background: rgba(67,197,255,.18);
}
@media (max-width: 760px) {
  .bywyou-chart-cover-lightbox {
    padding: 18px;
  }
  .bywyou-chart-cover-lightbox-frame,
  .bywyou-chart-cover-lightbox-frame img {
    max-width: 92vw;
    max-height: 86vh;
  }
  .bywyou-chart-cover-lightbox-frame img {
    border-radius: 22px;
  }
}


/* BYWYOU section spacing + hit parade fan banners */
.sounddeck-section,
.virtual-dj-embed-section,
.bywyou-process-section,
.bywyou-community-chart-section {
  padding-top: 34px !important;
}
.bywyou-community-chart-section {
  padding-bottom: 96px !important;
}
.bywyou-community-chart-head .bywyou-follow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(87, 190, 255, 0.22);
  background: rgba(10, 18, 31, 0.46);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.bywyou-community-chart-head h2 .title-soft {
  color: rgba(244, 248, 255, 0.94);
}
.bywyou-community-chart-head h2 .title-accent {
  color: #67d7ff;
  text-shadow: 0 0 14px rgba(87, 225, 255, .26), 0 0 32px rgba(87, 225, 255, .16), 0 14px 42px rgba(0, 0, 0, .48);
}
.bywyou-community-chart-head p {
  margin-top: 16px;
  font-size: clamp(15px, 1.6vw, 17px);
  letter-spacing: .02em;
}
.bywyou-top-chart-hero {
  display: block !important;
  padding: clamp(18px, 2.8vw, 28px) clamp(14px, 3vw, 26px) !important;
  border-bottom: 1px solid rgba(255,255,255,.075);
}
.bywyou-chart-pulse {
  display: none !important;
}
.bywyou-fan-banner-slider {
  position: relative;
  min-height: 164px;
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.085);
  background:
    radial-gradient(circle at 20% 20%, rgba(67,197,255,.18), transparent 34%),
    radial-gradient(circle at 86% 58%, rgba(249,95,229,.14), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.060), rgba(255,255,255,.025));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.022), 0 18px 42px rgba(0,0,0,.22);
}
.bywyou-fan-banner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 3vw, 30px);
  opacity: 0;
  transform: translateY(8px) scale(.985);
  pointer-events: none;
  transition: opacity .85s ease, transform .85s ease;
}
.bywyou-fan-banner.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.bywyou-fan-photo {
  width: 128px;
  height: 128px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 50% 32%, rgba(103,215,255,.45), transparent 34%),
    linear-gradient(135deg, rgba(5,12,22,.90), rgba(21,32,50,.82));
  box-shadow: 0 16px 38px rgba(0,0,0,.32), 0 0 28px rgba(67,197,255,.12);
}
.bywyou-fan-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.bywyou-fan-photo img[src=""],
.bywyou-fan-photo img:not([src]) {
  display: none;
}
.bywyou-fan-message span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(103,215,255,.24);
  background: rgba(5,16,30,.56);
  color: #9eeaff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.bywyou-fan-message p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(244,248,255,.94);
  font-size: clamp(20px, 3.2vw, 36px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 900;
}
.bywyou-fan-message strong {
  display: block;
  margin-top: 12px;
  color: rgba(218,232,255,.62);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .sounddeck-section,
  .virtual-dj-embed-section,
  .bywyou-process-section,
  .bywyou-community-chart-section {
    padding-top: 34px !important;
  }
  .bywyou-community-chart-head {
    text-align: center !important;
    margin-bottom: 28px !important;
  }
  .bywyou-fan-banner-slider {
    min-height: 214px;
    border-radius: 22px;
  }
  .bywyou-fan-banner {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }
  .bywyou-fan-photo {
    width: 72px;
    height: 92px;
    border-radius: 18px;
  }
  .bywyou-fan-message p {
    font-size: clamp(19px, 7vw, 28px);
    line-height: 1.08;
  }
  .bywyou-fan-message strong {
    margin-top: 10px;
  }
}

/* BYWYOU final override layer - cleaned and deduplicated (v738-v811) */
.bywyou-section-title h2, .bywyou-process-head h2, .bywyou-community-chart-head h2 {
  text-transform: uppercase;
  letter-spacing: .015em;
}

.bywyou-section-title h2 .title-soft, .bywyou-process-head h2 .title-soft, .bywyou-community-chart-head h2 .title-soft {
  color: #f8fcff !important;
  text-shadow: 0 0 18px rgba(255, 255, 255, .18), 0 12px 38px rgba(0, 0, 0, .55);
}

.bywyou-section-title h2 .title-accent, .bywyou-process-head h2 .title-accent, .bywyou-community-chart-head h2 .title-accent {
  color: #7fe5ff !important;
  text-shadow: 0 0 14px rgba(127, 229, 255, .42), 0 0 34px rgba(65, 190, 255, .24), 0 14px 42px rgba(0, 0, 0, .48);
}

.bywyou-section-kicker, .bywyou-process-kicker, .bywyou-follow-kicker {
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .bywyou-fan-banner-slider::before {
    right: 12px;
    top: -10px;
    font-size: 118px;
  }

  .bywyou-fan-message span {
    font-size: 9px !important;
    letter-spacing: .16em !important;
  }

}

.bywyou-fan-message span {
  color: #dff8ff !important;
  background: linear-gradient(90deg, rgba(67,197,255,.20), rgba(249,95,229,.10)) !important;
  box-shadow: 0 0 24px rgba(67,197,255,.10);
  display: none !important;
}

.bywyou-fan-message strong {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px !important;
  display: block !important;
  margin: 0 0 12px !important;
  color: #101828 !important;
  font-size: 18px !important;
  line-height: 1.15;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 800;
}

.bywyou-fan-message strong em {
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(103,215,255,.35));
  display: none !important;
}

.bywyou-fan-message strong small {
  display: block;
  margin-top: 6px;
  color: #667085 !important;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 760px) {
  .bywyou-fan-message strong {
    gap: 6px;
    letter-spacing: .11em !important;
    margin-bottom: 10px !important;
    font-size: 17px !important;
  }

  .bywyou-fan-message strong small {
    display: block;
    width: 100%;
    padding-left: 30px;
    font-size: 11px;
    letter-spacing: .08em;
  }

}

.bywyou-fan-banner-slider::before {
  position: absolute;
  right: 28px;
  top: -24px;
  z-index: 0;
  color: rgba(103, 215, 255, .11);
  font-size: 180px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
  content: none !important;
}

.bywyou-fan-banner.is-active {
  display: grid !important;
  pointer-events: auto;
}

.bywyou-fan-photo::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103,215,255,.20), rgba(103,215,255,.95), rgba(249,95,229,.70));
  box-shadow: 0 0 16px rgba(103,215,255,.48);
  content: none !important;
}

.bywyou-fan-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bywyou-fan-message span, .bywyou-fan-message strong, .bywyou-fan-message strong em, .bywyou-fan-message strong small {
  display: none !important;
}

.bywyou-community-chart-head .bywyou-follow-kicker {
  background: rgba(7, 15, 28, .68);
  border-color: rgba(111, 220, 255, .28);
  box-shadow: 0 10px 24px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.02);
}

.bywyou-community-chart-head h2 {
  text-shadow: 0 0 24px rgba(69, 214, 255, .20), 0 22px 54px rgba(0,0,0,.55);
}

.bywyou-top-chart::before {
  inset: 0;
  background: radial-gradient(circle at 22% 34%, rgba(106, 236, 255, .10), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(211, 98, 255, .08), transparent 20%);
  transform: none;
  animation: none;
  opacity: 1;
}

.bywyou-top-chart-hero {
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3.2vw, 28px) 22px !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
}

@media (max-width: 1100px) {
  .bywyou-fan-banner-slider {
    min-height: 182px !important;
  }

  .bywyou-fan-banner {
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 8px 20px;
    padding: 14px;
  }

  .bywyou-fan-photo {
    width: 84px;
    height: 84px;
    min-height: 152px;
    border-radius: 18px;
  }

  .bywyou-fan-meta strong {
    font-size: clamp(24px, 2.2vw, 30px);
  }

  .bywyou-fan-meta small {
    font-size: 13px;
  }

  .bywyou-fan-message p {
    font-size: clamp(27px, 2.6vw, 34px) !important;
  }

}

@media (max-width: 760px) {
  .bywyou-community-chart-head {
    margin-bottom: 22px;
  }

  .bywyou-top-chart {
    border-radius: 26px;
  }

  .bywyou-top-chart-hero {
    padding: 16px 14px 18px !important;
  }

}

.bywyou-fan-message span, .bywyou-fan-message p span {
  display: block !important;
}

.bywyou-fan-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #eef2f7 !important;
  box-shadow: 0 16px 32px rgba(10,18,34,.12);
  grid-area: photo !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 186px !important;
  border-radius: 22px !important;
}

.bywyou-fan-social-instagram {
  color: #fff !important;
  background: radial-gradient(circle at 25% 110%, #ffd36b 0 18%, transparent 36%),
    radial-gradient(circle at 15% 20%, #8a3ffc 0 18%, transparent 38%),
    linear-gradient(135deg, #ff7a18 0%, #ff2f80 46%, #7a39ff 100%) !important;
  font-size: 42px !important;
}

@media (max-width: 1180px) {
  .bywyou-fan-photo {
    min-height: 170px !important;
  }

}

@media (max-width: 760px) {
  .bywyou-fan-photo {
    margin: 0 auto;
    grid-area: photo;
    width: 96px !important;
    height: 112px !important;
    min-height: 112px !important;
    border-radius: 14px !important;
  }

  .bywyou-fan-meta strong {
    font-size: 27px !important;
    margin-bottom: 5px !important;
  }

  .bywyou-fan-meta small {
    letter-spacing: .10em;
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }

  .bywyou-fan-message {
    grid-area: message;
    align-items: center !important;
    padding: 0 !important;
  }

}

.bywyou-fan-social-facebook {
  color: #fff !important;
  background: linear-gradient(135deg, #2f8cff 0%, #145bd8 100%) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 900 !important;
  font-size: 40px !important;
}

@media (max-width: 1180px) {
  .bywyou-fan-social {
    width: 52px !important;
    height: 52px !important;
    border-radius: 15px !important;
    font-size: 29px !important;
  }

  .bywyou-fan-social-facebook {
    font-size: 36px !important;
  }

}

@media (max-width: 760px) {
  .bywyou-fan-meta {
    align-self: center;
    grid-area: meta;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .bywyou-fan-meta strong, .bywyou-fan-meta small {
    text-align: left !important;
  }

  .bywyou-fan-social {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
    font-size: 24px !important;
    margin: 0 !important;
    place-self: start !important;
  }

  .bywyou-fan-social-facebook {
    font-size: 31px !important;
  }

}

.bywyou-fan-message p span {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: block !important;
  width: 100% !important;
  white-space: nowrap !important;
  color: #000000 !important;
}

@media (max-width: 760px) {
  .bywyou-fan-message p span {
    white-space: normal !important;
  }

  .bywyou-fan-banner {
    text-align: center;
    align-items: center;
    grid-template-rows: auto 1fr !important;
    grid-template-columns: 96px minmax(0, 1fr) !important;
    grid-template-areas: "photo meta"
      "message message" !important;
    gap: 12px 14px !important;
    padding: 12px !important;
  }

}

.bywyou-fan-location, .bywyou-fan-info small, .bywyou-fan-meta small {
  color: rgba(210,230,245,.78) !important;
}

.bywyou-fan-photo, .bywyou-fan-avatar, .bywyou-fan-banner img {
  box-shadow: 0 16px 32px rgba(0,0,0,.24), 0 0 0 1px rgba(255,255,255,.16) !important;
}

.bywyou-fan-name, .bywyou-fan-info strong, .bywyou-fan-meta strong {
  color: #f7fbff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.42) !important;
  font-weight: 600 !important;
  letter-spacing: -.035em !important;
}

@media (max-width: 1180px) {
  .bywyou-fan-banner-slider {
    min-height: 238px !important;
  }

}

@media (max-width: 760px) {
  .bywyou-fan-banner-slider {
    border-radius: 22px;
    min-height: 318px !important;
  }

}

@media (max-width: 1180px) {
  .bywyou-fan-message p {
    line-height: 1.04 !important;
    letter-spacing: -.04em !important;
    border-radius: 24px !important;
    font-size: clamp(18px, 1.95vw, 23px) !important;
    width: min(540px, 100%) !important;
    min-width: min(460px, 100%) !important;
    max-width: 540px !important;
    padding: 16px 26px 18px !important;
  }

}

@media (max-width: 760px) {
  .bywyou-fan-message p {
    letter-spacing: -.035em !important;
    border-radius: 22px !important;
    font-size: clamp(17px, 4.5vw, 22px) !important;
    line-height: 1.12 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 14px 16px 16px !important;
  }

  .bywyou-fan-message p span, .bywyou-fan-message span {
    white-space: normal !important;
  }

}

.bywyou-chart-foot {
  display: none !important;
}

.bywyou-community-socials .bywyou-follow-btn:not(:first-child), .bywyou-socials a:not(:first-child) {
  display: none !important;
}

.bywyou-floating-dock .bywyou-socials {
  display: none !important;
}

.bywyou-floating-dock {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  gap: 0 !important;
}

.bywyou-scroll-buttons {
  margin: 0 !important;
  border-left: 0 !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at 76% 45%, rgba(29,161,255,.26), transparent 42%),
    linear-gradient(135deg, rgba(7,18,36,.78), rgba(18,14,42,.72)) !important;
  border: 1px solid rgba(122,220,255,.22) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.34), 0 0 22px rgba(92,213,255,.12), inset 0 1px 0 rgba(255,255,255,.13) !important;
  backdrop-filter: blur(16px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(130%) !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 42px !important;
  padding: 7px 10px !important;
}

.bywyou-scroll-btn {
  place-items: center !important;
  position: relative !important;
  flex: 0 0 28px !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 0 !important;
  color: transparent !important;
  vertical-align: middle !important;
  transform: none !important;
}

.bywyou-scroll-btn::before {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  line-height: 28px !important;
  text-align: center !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  color: #67eaff !important;
  text-shadow: 0 0 10px rgba(103,234,255,.75) !important;
  transform: translateY(0) !important;
}

.bywyou-scroll-btn[data-scroll-dir="up"]::before {
  content: "▲" !important;
}

.bywyou-scroll-btn[data-scroll-dir="down"]::before {
  content: "▼" !important;
}

@media (max-width: 720px) {
  .bywyou-scroll-buttons {
    flex-direction: row !important;
    height: 40px !important;
    gap: 8px !important;
    padding: 6px 9px !important;
  }

  .bywyou-scroll-btn {
    flex-basis: 27px !important;
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    min-height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
  }

  .bywyou-scroll-btn::before {
    line-height: 27px !important;
    font-size: 12px !important;
  }

}

.bywyou-scroll-btn:hover::before, .bywyou-scroll-btn:focus-visible::before {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(255,255,255,.95), 0 0 18px rgba(103,234,255,.85) !important;
}

.bywyou-scroll-btn:hover, .bywyou-scroll-btn:focus-visible {
  border-color: rgba(255,255,255,.42) !important;
  box-shadow: 0 0 18px rgba(103,234,255,.34), inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.bywyou-footer-contact:hover {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.8) !important;
  text-shadow: 0 0 14px rgba(127,221,255,.42) !important;
}

@media (max-width: 920px) {
  .bywyou-footer-inner {
    align-items: center !important;
  }

}

@media (max-width: 720px) {
  .bywyou-community-chart-section {
    padding-bottom: 26px !important;
  }

}

.bywyou-footer-contact, .bywyou-footer-contact:hover {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  text-decoration: none !important;
}

.bywyou-footer-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #dff7ff !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(127,221,255,.42) !important;
  transition: color .2s ease, border-color .2s ease, text-shadow .2s ease !important;
  font-size: 10px !important;
  letter-spacing: .16em !important;
  font-weight: 600 !important;
  padding-bottom: 2px !important;
  line-height: 1.1 !important;
  margin-top: 4px !important;
}

.bywyou-footer-brand span {
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: .14em !important;
  margin: 0 !important;
  position: relative !important;
  display: inline-block !important;
  margin-top: 0 !important;
  padding-bottom: 8px !important;
  line-height: 1.05 !important;
  color: #00aeff !important;
  text-shadow: 0 0 14px rgba(0,174,255,.22) !important;
}

.bywyou-footer-brand span::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  transform: translateX(-50%) !important;
  height: 1px !important;
  width: 128px !important;
  background: linear-gradient(90deg, transparent, rgba(0,174,255,.72), rgba(255,255,255,.36), rgba(0,174,255,.72), transparent) !important;
  box-shadow: 0 0 12px rgba(0,174,255,.34) !important;
}

@media (max-width: 720px) {
  .bywyou-footer-copy {
    margin-top: 16px !important;
  }

}

.bywyou-media-photo-empty {
  min-height: 220px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: rgba(235, 245, 255, .62);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px dashed rgba(120, 220, 255, .22);
  background: rgba(6, 16, 32, .46);
}

.bywyou-media-photo-empty span {
  text-align: center;
}

.bywyou-footer-logo-button {
  appearance: none !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}

.bywyou-footer-logo-button .bywyou-footer-logo {
  display: block !important;
  transition: transform .22s ease, filter .22s ease, opacity .22s ease !important;
}

.bywyou-footer-logo-button:hover .bywyou-footer-logo {
  transform: translateY(-1px) scale(1.025) !important;
  filter: drop-shadow(0 0 14px rgba(70, 210, 255, .35)) !important;
}

.bywyou-footer-logo-button:focus-visible {
  outline: 1px solid rgba(72, 214, 255, .75) !important;
  outline-offset: 8px !important;
  border-radius: 999px !important;
}

.bywyou-chart-list {
  padding-bottom: 8px !important;
}

.bywyou-community-socials-inline {
  display: flex !important;
  width: 100% !important;
  margin: 0 !important;
  min-height: 62px !important;
  align-items: center !important;
  justify-content: center !important;
}

.bywyou-community-socials-inline .bywyou-follow-btn {
  margin: 0 auto !important;
  transform: translateY(-2px) !important;
}

.bywyou-community-socials-inline .bywyou-follow-btn:hover {
  transform: translateY(-4px) !important;
}

@media (max-width: 720px) {
  .bywyou-chart-list {
    padding-bottom: 6px !important;
  }

  .bywyou-chart-spotify-slot, .bywyou-community-socials-inline {
    min-height: 58px !important;
  }

}

@keyframes bywyouFadeRiseIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(.985);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes bywyouSoftGlowIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

main > section, .bywyou-hero, .sounddeck-section, .virtual-dj-embed-section, .bywyou-process-section, .bywyou-community-chart-section, .bywyou-footer {
  animation: bywyouFadeRiseIn .82s cubic-bezier(.18,.84,.24,1) both;
  animation-delay: var(--bywyou-enter-delay, 0s);
}

.sounddeck-section {
  --bywyou-enter-delay: .08s;
}

.virtual-dj-embed-section {
  --bywyou-enter-delay: .14s;
}

.bywyou-process-section {
  --bywyou-enter-delay: .20s;
}

.bywyou-production-card, .bywyou-fan-banner, .bywyou-chart-row, .bywyou-follow-btn, .bywyou-scroll-buttons, .sounddeck-card, .bywyou-process-card {
  animation: bywyouSoftGlowIn .72s cubic-bezier(.18,.84,.24,1) both;
}

.bywyou-fan-banner:nth-child(2), .bywyou-chart-row:nth-child(2), .bywyou-production-card:nth-child(2) {
  animation-delay: .08s;
}

.bywyou-fan-banner:nth-child(3), .bywyou-chart-row:nth-child(3), .bywyou-production-card:nth-child(3) {
  animation-delay: .14s;
}

.bywyou-fan-banner:nth-child(4), .bywyou-chart-row:nth-child(4), .bywyou-production-card:nth-child(4) {
  animation-delay: .20s;
}

.bywyou-fan-banner:nth-child(5), .bywyou-chart-row:nth-child(5), .bywyou-production-card:nth-child(5) {
  animation-delay: .26s;
}

.bywyou-community-chart-wrap, .bywyou-community-chart-head, .bywyou-top-chart, .bywyou-chart-list, .bywyou-chart-spotify-slot, .bywyou-community-socials {
  position: relative !important;
  z-index: 2 !important;
}

@keyframes bywyouChartAurora {
  0% {
    opacity: .72;
    transform: translate3d(-1.5%, -1%, 0) scale(1);
    filter: saturate(115%);
  }
  100% {
    opacity: .98;
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
    filter: saturate(145%);
  }
}

@keyframes bywyouChartLightSweep {
  0% {
    opacity: .46;
    transform: translate3d(-4%, 0, 0) scale(1.02);
  }
  100% {
    opacity: .86;
    transform: translate3d(4%, -2%, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  main > section, .bywyou-hero, .sounddeck-section, .virtual-dj-embed-section, .bywyou-process-section, .bywyou-community-chart-section, .bywyou-footer, .bywyou-production-card, .bywyou-fan-banner, .bywyou-chart-row, .bywyou-follow-btn, .bywyou-scroll-buttons, .sounddeck-card, .bywyou-process-card, .bywyou-community-chart-section::before, .bywyou-community-chart-section::after {
    animation: none !important;
  }

}

main > section, .sounddeck-section, .virtual-dj-embed-section, .bywyou-process-section, .bywyou-community-chart-section, .bywyou-footer, .bywyou-production-card, .bywyou-fan-banner, .bywyou-chart-row, .sounddeck-card, .bywyou-process-card, .sounddeck-player, .sounddeck-carousel, .virtual-dj-shell, .virtual-dj-hero-video, .virtual-dj-console, .bywyou-media-photo-slider, .bywyou-top-chart, .bywyou-chart-list {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none !important;
}

#productions .bywyou-section-title {
  --bywyou-reveal-delay: .02s;
}

#productions .sounddeck-player {
  --bywyou-reveal-delay: .12s;
}

#productions .sounddeck-carousel {
  --bywyou-reveal-delay: .22s;
}

#dj-set .virtual-dj-embed-title {
  --bywyou-reveal-delay: .02s;
}

#media .bywyou-section-title {
  --bywyou-reveal-delay: .04s;
}

#media .bywyou-media-photo-slider {
  --bywyou-reveal-delay: .14s;
}

#community .bywyou-section-title, #community .bywyou-community-chart-head {
  --bywyou-reveal-delay: .03s;
}

#community .bywyou-top-chart {
  --bywyou-reveal-delay: .14s;
}

#community .bywyou-chart-list {
  --bywyou-reveal-delay: .22s;
}

#community .bywyou-chart-row:nth-child(1) {
  --bywyou-reveal-delay: .06s;
}

#community .bywyou-chart-row:nth-child(2) {
  --bywyou-reveal-delay: .12s;
}

#community .bywyou-chart-row:nth-child(3) {
  --bywyou-reveal-delay: .18s;
}

#community .bywyou-chart-row:nth-child(4) {
  --bywyou-reveal-delay: .24s;
}

#community .bywyou-chart-row:nth-child(5) {
  --bywyou-reveal-delay: .30s;
}

#community .bywyou-chart-row:nth-child(n/**/+6) {
  --bywyou-reveal-delay: .36s;
}

.bywyou-community-chart-section {
  padding-bottom: 32px !important;
  --bywyou-enter-delay: .26s;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.bywyou-community-chart-section::before, .bywyou-community-chart-section::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 1 !important;
  transform: translate3d(0,0,0);
}

.bywyou-community-chart-section > *, .bywyou-community-chart-wrap, .bywyou-community-chart-head, .bywyou-top-chart, .bywyou-chart-list, .bywyou-chart-spotify-slot {
  position: relative !important;
  z-index: 2 !important;
}

@keyframes bywyouSpyneBeams {
  0% {
    opacity: .54;
    transform: translate3d(-5%, 2%, 0) rotate(-1deg) scale(1.02);
    filter: blur(20px) saturate(130%);
  }
  45% {
    opacity: .88;
    transform: translate3d(2%, -1%, 0) rotate(1.4deg) scale(1.08);
    filter: blur(16px) saturate(170%);
  }
  100% {
    opacity: .68;
    transform: translate3d(6%, 1%, 0) rotate(-.8deg) scale(1.04);
    filter: blur(22px) saturate(155%);
  }
}

@keyframes bywyouSpyneAurora {
  0% {
    opacity: .52;
    transform: translate3d(0, -2%, 0) scale(1);
  }
  50% {
    opacity: .82;
    transform: translate3d(2%, 2%, 0) scale(1.06);
  }
  100% {
    opacity: .62;
    transform: translate3d(-2%, 1%, 0) scale(1.03);
  }
}

@media (max-width: 720px) {
  .bywyou-community-chart-section::before {
    inset: -18% -32% -12% -32% !important;
    filter: blur(22px) saturate(145%) !important;
  }

}

@media (prefers-reduced-motion: reduce) {
  body.bywyou-motion-ready .bywyou-reveal, body.bywyou-motion-ready .bywyou-reveal:not(.bywyou-visible), body.bywyou-motion-ready .bywyou-reveal.bywyou-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

}

.empty-hero, .visual-hero, .bywyou-hero {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.bywyou-reveal {
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: none !important;
  will-change: opacity, transform;
}

body.bywyou-motion-ready .bywyou-reveal:not(.bywyou-visible) {
  opacity: 0;
  filter: none !important;
}

body.bywyou-motion-ready .bywyou-reveal.bywyou-from-bottom:not(.bywyou-visible) {
  transform: translate3d(0, 56px, 0);
}

body.bywyou-motion-ready .bywyou-reveal.bywyou-from-left:not(.bywyou-visible) {
  transform: translate3d(-150px, 0, 0) scale(.965);
}

body.bywyou-motion-ready .bywyou-reveal.bywyou-from-right:not(.bywyou-visible) {
  transform: translate3d(150px, 0, 0) scale(.965);
}

body.bywyou-motion-ready .bywyou-reveal.bywyou-fade-only:not(.bywyou-visible) {
  transform: translate3d(0, 20px, 0);
}

body.bywyou-motion-ready .bywyou-reveal.bywyou-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: none !important;
  transition: opacity .72s ease-out,
    transform .86s cubic-bezier(.16,.82,.24,1);
  transition-delay: var(--bywyou-reveal-delay, 0s);
}

#dj-set .virtual-dj-hero-video.bywyou-reveal, #dj-set .virtual-dj-console.bywyou-reveal {
  will-change: opacity, transform;
}

body.bywyou-motion-ready #dj-set .virtual-dj-hero-video.bywyou-visible {
  transition-duration: 1.02s !important;
}

body.bywyou-motion-ready #dj-set .virtual-dj-console.bywyou-visible {
  transition-duration: 1.02s !important;
}

#dj-set .virtual-dj-hero-video {
  --bywyou-reveal-delay: .06s !important;
}

#dj-set .virtual-dj-console {
  --bywyou-reveal-delay: .16s !important;
}

#productions .sounddeck-player, #productions .sounddeck-carousel, #media .bywyou-media-photo-slider {
  transition-duration: .82s !important;
}

@keyframes bywyouLightBeamsSoft {
  0% { transform: translate3d(-2.5%, 1%, 0) rotate(-.6deg) scale(1); opacity: .48; }
  50% { transform: translate3d(1.5%, -1%, 0) rotate(.7deg) scale(1.04); opacity: .76; }
  100% { transform: translate3d(3%, 1%, 0) rotate(-.35deg) scale(1.02); opacity: .58; }
}

@keyframes bywyouAuroraSoft {
  0% { transform: translate3d(0, -1%, 0) scale(1); opacity: .46; }
  100% { transform: translate3d(-1.5%, 1%, 0) scale(1.035); opacity: .64; }
}

@media (max-width: 720px) {
  body.bywyou-motion-ready .bywyou-reveal.bywyou-from-left:not(.bywyou-visible), body.bywyou-motion-ready .bywyou-reveal.bywyou-from-right:not(.bywyou-visible) {
    transform: translate3d(0, 44px, 0) scale(.99);
  }

}

@media (prefers-reduced-motion: reduce) {
  .bywyou-reveal, body.bywyou-motion-ready .bywyou-reveal, body.bywyou-motion-ready .bywyou-reveal:not(.bywyou-visible), body.bywyou-motion-ready .bywyou-reveal.bywyou-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .bywyou-community-chart-section::before, .bywyou-community-chart-section::after {
    animation: none !important;
  }

}

.bywyou-footer-logo {
  width: min(190px, 52vw) !important;
  height: auto !important;
  filter: drop-shadow(0 0 18px rgba(96,214,255,.18)) !important;
  margin-bottom: 0 !important;
  display: block !important;
  margin: 0 auto 2px !important;
}

.bywyou-footer-brand {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0 !important;
  gap: 5px !important;
}

.bywyou-footer-logo-button, .bywyou-footer-logo {
  margin-top: 0 !important;
  margin-bottom: 1px !important;
}

.bywyou-footer-copy {
  color: rgba(218,232,255,.52) !important;
  font-size: 13px !important;
  text-align: center !important;
  padding-top: 0 !important;
  display: block !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1.2 !important;
}

.bywyou-chart-spotify-slot {
  display: flex !important;
  width: 100% !important;
  margin-top: -2px !important;
  margin: 0 !important;
  min-height: 66px !important;
  padding: 8px 20px 10px !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.bywyou-chart-spotify-slot .bywyou-follow-btn:hover {
  color: #ffffff !important;
  border-color: rgba(120, 226, 255, .74) !important;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.26), transparent 48%),
    linear-gradient(135deg, rgba(18, 65, 96, .96), rgba(7, 28, 54, .98)) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .32),
    0 0 26px rgba(73, 205, 255, .32),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
  transform: translateY(-1px) !important;
}

.bywyou-community-chart-section::before {
  z-index: 0 !important;
  inset: -10% -18% -8% -18% !important;
  background: linear-gradient(100deg,
      transparent 0%,
      transparent 34%,
      rgba(58, 208, 255, .00) 40%,
      rgba(68, 217, 255, .18) 47%,
      rgba(183, 243, 255, .34) 50%,
      rgba(78, 205, 255, .16) 54%,
      transparent 62%,
      transparent 100%) !important;
  filter: blur(18px) saturate(135%) !important;
  opacity: .82 !important;
  mix-blend-mode: screen !important;
  animation: bywyouChartSweepLight786 7.5s ease-in-out infinite !important;
  will-change: transform, opacity !important;
}

.bywyou-community-chart-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(0,0,0);
  inset: -2% -8% 0 -8% !important;
  background: radial-gradient(ellipse at 50% 54%, rgba(48, 190, 255, .10), transparent 48%),
    radial-gradient(ellipse at 50% 78%, rgba(112, 72, 255, .08), transparent 54%) !important;
  filter: blur(28px) saturate(125%) !important;
  opacity: .38 !important;
  mix-blend-mode: screen !important;
  animation: none !important;
}

@keyframes bywyouChartSweepLight786 {
  0% { transform: translate3d(-72%, 0, 0) skewX(-10deg); opacity: 0; }
  12% { opacity: .26; }
  45% { opacity: .82; }
  72% { opacity: .28; }
  100% { transform: translate3d(72%, 0, 0) skewX(-10deg); opacity: 0; }
}

@media (max-width: 720px) {
  .bywyou-chart-spotify-slot {
    min-height: 62px !important;
    padding: 7px 14px 9px !important;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .bywyou-community-chart-section::before, .bywyou-community-chart-section::after {
    animation-duration: 22s !important;
    filter: blur(30px) saturate(120%) !important;
    display: none !important;
    content: none !important;
    animation: none !important;
    opacity: 0 !important;
  }

}

.bywyou-footer {
  padding: 0 0 34px !important;
  --bywyou-enter-delay: .32s;
  margin-top: 0 !important;
  background: rgba(2, 6, 14, .94) !important;
  padding-bottom: 18px !important;
  padding-top: 10px !important;
}

.bywyou-footer-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 6px !important;
  justify-content: flex-start !important;
  padding-bottom: 0 !important;
  min-height: auto !important;
  border-top: 0 !important;
  padding-top: 10px !important;
}

.bywyou-chart-spotify-slot .bywyou-follow-btn {
  padding-top: 3px !important;
  box-sizing: border-box !important;
  min-width: 118px !important;
  min-height: 40px !important;
  padding: 3px 18px 0 !important;
  border: 1px solid rgba(92, 213, 255, .48) !important;
  color: #eaf9ff !important;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.20), transparent 48%),
    linear-gradient(135deg, rgba(11, 35, 58, .92), rgba(7, 22, 43, .94)) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28),
    0 0 18px rgba(63, 199, 255, .20),
    inset 0 1px 0 rgba(255,255,255,.16) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  transform: none !important;
  margin-bottom: 7px !important;
}

.bywyou-top-chart {
  border-radius: 34px;
  border: 1px solid rgba(132, 221, 255, .12);
  box-shadow: 0 30px 84px rgba(0,0,0,.48), inset 0 0 0 1px rgba(255,255,255,.03);
  background: linear-gradient(90deg, rgba(67,197,255,.075) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px),
    radial-gradient(circle at 72% 0%, rgba(67,197,255,.16), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(255,54,212,.08), transparent 30%),
    linear-gradient(180deg, rgba(8,12,22,.84), rgba(4,7,13,.82)) !important;
  background-size: 42px 42px, 42px 42px, auto, auto, auto !important;
  backdrop-filter: blur(10px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
}

@media (max-width: 720px) {
  .bywyou-footer {
    padding-bottom: 16px !important;
    padding-top: 10px !important;
  }

  .bywyou-footer-inner {
    min-height: auto !important;
    padding-bottom: 0 !important;
    padding-top: 10px !important;
  }

  .bywyou-chart-spotify-slot .bywyou-follow-btn {
    min-width: 112px !important;
    min-height: 38px !important;
    font-size: 10px !important;
    transform: none !important;
    margin-bottom: 7px !important;
  }

  .bywyou-top-chart {
    background: linear-gradient(90deg, rgba(67,197,255,.065) 1px, transparent 1px),
      linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
      radial-gradient(circle at 72% 0%, rgba(67,197,255,.12), transparent 34%),
      linear-gradient(180deg, rgba(8,12,22,.92), rgba(4,7,13,.91)) !important;
    background-size: 42px 42px, 42px 42px, auto, auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .bywyou-fan-banner-slider {
    background: linear-gradient(135deg, rgba(7,18,36,.76), rgba(18,14,42,.70)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

}

.bywyou-fan-meta::before {
  content: "" !important;
  position: absolute !important;
  inset: -35% -45% !important;
  pointer-events: none !important;
  background: linear-gradient(100deg, transparent 0%, rgba(107,221,255,.16) 45%, transparent 62%) !important;
  transform: translateX(-28%) !important;
  opacity: .75 !important;
}

.bywyou-fan-meta strong, .bywyou-fan-meta small, .bywyou-fan-meta .bywyou-fan-social {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 720px) {
  .bywyou-fan-meta::before {
    display: none !important;
  }

  .bywyou-fan-meta, .bywyou-fan-info, .bywyou-fan-person, .bywyou-fan-profile, .bywyou-fan-banner {
    background: rgba(255,255,255,.018) !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

}

.bywyou-fan-banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  border: 1px solid rgba(122,220,255,.24) !important;
  min-height: 252px !important;
  background: linear-gradient(135deg, rgba(7,18,36,.42), rgba(18,14,42,.32)) !important;
  border-color: rgba(122,220,255,.18) !important;
  box-shadow: 0 22px 64px rgba(0,0,0,.30), 0 0 34px rgba(92,213,255,.10), inset 0 1px 0 rgba(255,255,255,.08) !important;
  backdrop-filter: blur(14px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(120%) !important;
}

.bywyou-fan-meta, .bywyou-fan-info, .bywyou-fan-person, .bywyou-fan-profile {
  background: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.bywyou-fan-meta::before, .bywyou-fan-info::before, .bywyou-fan-person::before, .bywyou-fan-profile::before {
  display: none !important;
  opacity: 0 !important;
}

@media (max-width: 720px) {
  .bywyou-fan-banner-slider, .bywyou-fan-banner {
    background: linear-gradient(135deg, rgba(7,18,36,.72), rgba(18,14,42,.66)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .bywyou-fan-meta, .bywyou-fan-info, .bywyou-fan-person, .bywyou-fan-profile {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

}

.bywyou-fan-meta strong {
  display: block !important;
  color: #08111f !important;
  font-weight: 950 !important;
  width: 100% !important;
  text-align: center !important;
  font-size: clamp(34px, 2.8vw, 48px) !important;
  line-height: .92 !important;
  letter-spacing: -.055em !important;
  margin: 0 0 10px !important;
}

.bywyou-fan-meta small {
  margin-bottom: 10px;
  display: block !important;
  color: #4b5565 !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
  letter-spacing: .12em !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 0 18px !important;
}

@media (max-width: 1180px) {
  .bywyou-fan-banner {
    gap: 18px !important;
    padding-right: 18px !important;
    grid-template-columns: 158px 210px minmax(0, 1fr) !important;
  }

  .bywyou-fan-meta {
    min-width: 210px !important;
  }

}

@media (max-width: 720px) {
  .bywyou-fan-meta {
    padding: 14px 12px 12px !important;
    border-radius: 18px !important;
    min-width: 0 !important;
    background: linear-gradient(135deg, rgba(10,20,42,.38), rgba(28,20,58,.38)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .bywyou-fan-banner {
    box-shadow: 0 14px 34px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.08) !important;
    grid-template-columns: 1fr !important;
    background: linear-gradient(135deg, rgba(0,0,0,.88), rgba(4,8,18,.82)) !important;
    background-image: linear-gradient(135deg, rgba(0,0,0,.88), rgba(4,8,18,.82)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .bywyou-fan-message {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding-right: 0 !important;
    background: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }

}

.bywyou-fan-banner, .bywyou-fan-card, .bywyou-fan-highlight, .bywyou-fan-feature {
  background: linear-gradient(135deg, rgba(0,0,0,.72), rgba(0,0,0,.66)) !important;
  border: 1px solid rgba(140, 210, 255, 0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035),
    0 14px 34px rgba(0,0,0,0.20) !important;
  backdrop-filter: blur(8px) saturate(110%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(110%) !important;
}

@media (max-width: 720px) {
  .bywyou-fan-banner, .bywyou-fan-card, .bywyou-fan-highlight, .bywyou-fan-feature {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: linear-gradient(135deg, rgba(0,0,0,.80), rgba(0,0,0,.74)) !important;
  }

  .bywyou-fan-message, .bywyou-fan-quote, .bywyou-fan-text-wrap {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: linear-gradient(135deg, rgba(0,0,0,.88), rgba(0,0,0,.82)) !important;
  }

}

.bywyou-fan-message, .bywyou-fan-quote, .bywyou-fan-text-wrap {
  background: #000000 !important;
  background-image: none !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 24px rgba(0,0,0,0.22) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.bywyou-fan-message p, .bywyou-fan-quote p, .bywyou-fan-text-wrap p {
  color: #ffffff !important;
}

.bywyou-fan-banner {
  position: absolute;
  inset: 0;
  display: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  pointer-events: none;
  z-index: 1;
  grid-template-rows: 1fr !important;
  grid-template-areas: "photo meta message" !important;
  align-items: stretch !important;
  padding: 14px 24px 14px 14px !important;
  grid-template-columns: 178px 232px minmax(0, 1fr) !important;
  gap: 20px !important;
  border-color: rgba(122,220,255,.20) !important;
  background: #000000 !important;
  background-image: none !important;
  border: 1px solid rgba(122, 220, 255, 0.34) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.bywyou-fan-meta {
  padding-top: 2px;
  grid-area: meta !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  align-self: stretch !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 232px !important;
  padding: 18px 18px 16px !important;
  border-radius: 24px !important;
  border-color: rgba(122,220,255,.18) !important;
  background: #000000 !important;
  background-image: none !important;
  border: 1px solid rgba(122, 220, 255, 0.34) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.bywyou-fan-message p {
  text-wrap: balance;
  display: block !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-transform: none !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  font-weight: 500 !important;
  margin: 0 auto !important;
  font-size: clamp(20px, 1.62vw, 26px) !important;
  line-height: 1.1 !important;
  letter-spacing: -.018em !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 18px 34px 20px !important;
  box-sizing: border-box !important;
  width: min(620px, 100%) !important;
  min-width: min(520px, 100%) !important;
  max-width: 620px !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  text-shadow: none !important;
}

.bywyou-fan-message p span, .bywyou-fan-message span {
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  text-shadow: inherit !important;
  font-weight: inherit !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  white-space: nowrap !important;
  color: #ffffff !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.bywyou-fan-meta strong, .bywyou-fan-meta small, .bywyou-fan-social {
  color: #ffffff !important;
}

.bywyou-fan-social {
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.42) !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 17px !important;
  font-size: 32px !important;
  margin: 0 auto !important;
  place-self: center !important;
  box-shadow: 0 12px 24px rgba(10,18,34,.14), inset 0 0 0 1px rgba(255,255,255,.28) !important;
  border-color: rgba(122, 220, 255, 0.38) !important;
}

.bywyou-fan-message {
  grid-area: message !important;
  align-self: stretch !important;
  padding: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  justify-content: center !important;
  border-color: rgba(255,255,255,.20) !important;
  padding-right: 0 !important;
  background: #000000 !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid #000000 !important;
}

@media (max-width: 760px) {
  .bywyou-media-lightbox-wallpaper {
    bottom: 16px !important;
    padding: 0 16px !important;
    letter-spacing: .11em !important;
    top: 14px !important;
    right: 68px !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    font-size: 28px !important;
  }

}

.bywyou-media-lightbox-wallpaper svg path {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

@media (max-width: 760px) {
  .bywyou-media-lightbox-wallpaper svg {
    width: 21px !important;
    height: 21px !important;
  }

}

.bywyou-media-lightbox-wallpaper {
  position: fixed !important;
  z-index: 2147483647 !important;
  top: 22px !important;
  right: 86px !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  cursor: pointer !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  font-size: 0 !important;
  border: 1px solid rgba(96, 226, 255, 0.55) !important;
  background: radial-gradient(circle at 30% 30%, rgba(24, 62, 94, 0.92) 0%, rgba(6, 14, 30, 0.92) 62%, rgba(2, 6, 16, 0.96) 100%) !important;
  color: #8fefff !important;
  box-shadow: 0 0 0 1px rgba(64, 205, 255, 0.10) inset,
    0 0 18px rgba(64, 205, 255, 0.18),
    0 0 34px rgba(64, 205, 255, 0.12),
    0 16px 38px rgba(0,0,0,0.46) !important;
}

.bywyou-media-lightbox-wallpaper::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(152, 239, 255, 0.14);
  pointer-events: none;
}

.bywyou-media-lightbox-wallpaper svg {
  width: 23px !important;
  height: 23px !important;
  display: block !important;
  filter: drop-shadow(0 0 4px rgba(111, 238, 255, 0.55)) drop-shadow(0 0 10px rgba(68, 212, 255, 0.28));
}

.bywyou-media-lightbox-wallpaper:hover {
  border-color: rgba(133, 242, 255, 0.9) !important;
  color: #d8fbff !important;
  background: radial-gradient(circle at 30% 30%, rgba(36, 92, 128, 0.96) 0%, rgba(10, 23, 44, 0.94) 60%, rgba(3, 9, 20, 0.98) 100%) !important;
  box-shadow: 0 0 0 1px rgba(120, 236, 255, 0.14) inset,
    0 0 24px rgba(86, 225, 255, 0.32),
    0 0 44px rgba(86, 225, 255, 0.20),
    0 18px 42px rgba(0,0,0,0.52) !important;
}

.bywyou-media-lightbox-close::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(152, 239, 255, 0.14);
  pointer-events: none;
}

.bywyou-media-lightbox-close:hover {
  border-color: rgba(133, 242, 255, 0.9) !important;
  color: #d8fbff !important;
  background: radial-gradient(circle at 30% 30%, rgba(36, 92, 128, 0.96) 0%, rgba(10, 23, 44, 0.94) 60%, rgba(3, 9, 20, 0.98) 100%) !important;
  box-shadow: 0 0 0 1px rgba(120, 236, 255, 0.14) inset,
    0 0 24px rgba(86, 225, 255, 0.32),
    0 0 44px rgba(86, 225, 255, 0.20),
    0 18px 42px rgba(0,0,0,0.52) !important;
}

.bywyou-media-lightbox-close {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 0 2px 0 !important;
  border: 1px solid rgba(96, 226, 255, 0.55) !important;
  background: radial-gradient(circle at 30% 30%, rgba(24, 62, 94, 0.92) 0%, rgba(6, 14, 30, 0.92) 62%, rgba(2, 6, 16, 0.96) 100%) !important;
  color: #8fefff !important;
  box-shadow: 0 0 0 1px rgba(64, 205, 255, 0.10) inset,
    0 0 18px rgba(64, 205, 255, 0.18),
    0 0 34px rgba(64, 205, 255, 0.12),
    0 16px 38px rgba(0,0,0,0.46) !important;
  font-size: 0 !important;
  text-shadow: none !important;
}

.bywyou-media-lightbox-close svg {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  filter: drop-shadow(0 0 4px rgba(111, 238, 255, 0.55)) drop-shadow(0 0 10px rgba(68, 212, 255, 0.28));
}

.bywyou-media-lightbox-close svg path {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

@media (max-width: 760px) {
  .bywyou-media-lightbox-close svg {
    width: 19px !important;
    height: 19px !important;
  }

}

/* BYWYOU v813 - classifiche fan transparent layers
   Elimina il nero dai livelli superiori della card fan/classifiche.
   Nessun nuovo effetto, nessuna modifica al JavaScript. */
.bywyou-fan-banner-slider,
.bywyou-fan-banner,
.bywyou-fan-card,
.bywyou-fan-highlight,
.bywyou-fan-feature,
.bywyou-fan-meta,
.bywyou-fan-info,
.bywyou-fan-person,
.bywyou-fan-profile,
.bywyou-fan-message,
.bywyou-fan-quote,
.bywyou-fan-text-wrap {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.bywyou-fan-message p,
.bywyou-fan-message p span,
.bywyou-fan-message span {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.bywyou-fan-banner.is-active {
  opacity: 1 !important;
}

@media (max-width: 720px) {
  .bywyou-fan-banner-slider,
  .bywyou-fan-banner,
  .bywyou-fan-card,
  .bywyou-fan-highlight,
  .bywyou-fan-feature,
  .bywyou-fan-meta,
  .bywyou-fan-info,
  .bywyou-fan-person,
  .bywyou-fan-profile,
  .bywyou-fan-message,
  .bywyou-fan-quote,
  .bywyou-fan-text-wrap {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
  }
}

/* BYWYOU v814 - rimuove bordo box messaggi fan/classifiche */
.bywyou-fan-message,
.bywyou-fan-quote,
.bywyou-fan-text-wrap {
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.bywyou-fan-message p,
.bywyou-fan-message p span,
.bywyou-fan-message span,
.bywyou-fan-quote p,
.bywyou-fan-text-wrap p {
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}

@media (max-width: 720px) {
  .bywyou-fan-message,
  .bywyou-fan-quote,
  .bywyou-fan-text-wrap {
    border: 0 !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
  }
}

/* BYWYOU fan card order fix - social icon last */
.bywyou-fan-meta {
  gap: 8px !important;
}
.bywyou-fan-meta strong {
  order: 1 !important;
}
.bywyou-fan-meta small {
  order: 2 !important;
}
.bywyou-fan-social {
  order: 3 !important;
  margin-top: 8px !important;
}

/* BYWYOU v812 - reduce space below gallery slide */
#media.bywyou-process-section {
  padding-bottom: 42px !important;
}

@media (max-width: 760px) {
  #media.bywyou-process-section {
    padding-bottom: 34px !important;
  }
}

/* BYWYOU performance + mobile polish v813 */
#productions,
#dj-set,
#media,
#community {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.hero-main-image,
.bywyou-media-photo-card img,
.bywyou-media-lightbox-image,
.sounddeck-cover img {
  image-rendering: auto;
}

.bywyou-media-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) {
  #productions,
  #dj-set,
  #media,
  #community {
    contain-intrinsic-size: 760px;
  }

  .bywyou-media-photo-slider,
  .bywyou-media-photo-viewport,
  .bywyou-media-photo-track {
    max-width: 100%;
  }

  .bywyou-media-photo-card {
    min-width: 100% !important;
  }

  .bywyou-media-lightbox-frame {
    max-width: calc(100vw - 28px) !important;
    max-height: calc(100vh - 120px) !important;
  }

  .bywyou-media-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
  }
}

/* BYWYOU v814 - top logo share tooltip */
.bywyou-top-share {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.bywyou-share-tooltip {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translate(-50%, -6px);
  opacity: 0;
  pointer-events: none;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(5, 9, 18, .92);
  border: 1px solid rgba(55, 231, 255, .26);
  color: #ffffff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0,0,0,.35), 0 0 18px rgba(29,161,255,.18);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 120;
}
.bywyou-top-share:hover .bywyou-share-tooltip,
.bywyou-top-share:focus-visible .bywyou-share-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* BYWYOU v815 - mobile layout, menu, previews and responsive fixes */
@media (max-width: 760px) {
  .topbar {
    position: absolute !important;
  }
  .no-footer-home .nav-v13,
  .nav.nav-v13 {
    position: relative !important;
    min-height: 78px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 18px !important;
  }
  .topbar .brand,
  .topbar .brand-v13,
  .no-footer-home .brand-v13 {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 3 !important;
  }
  .no-footer-home .brand-v13 img,
  .topbar .brand-v13 img {
    height: 36px !important;
    width: auto !important;
  }
  .menu-toggle {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 6 !important;
    width: 48px !important;
    height: 48px !important;
    display: inline-grid !important;
    place-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    border-radius: 16px !important;
    border: 1px solid rgba(96,226,255,.36) !important;
    background:
      radial-gradient(circle at 30% 20%, rgba(68,218,255,.28), transparent 42%),
      linear-gradient(145deg, rgba(6,17,34,.88), rgba(2,7,17,.94)) !important;
    box-shadow: 0 0 0 1px rgba(64,205,255,.08) inset, 0 12px 30px rgba(0,0,0,.35), 0 0 22px rgba(55,231,255,.12) !important;
    color: #8fefff !important;
    font-size: 0 !important;
  }
  .menu-toggle span {
    position: absolute;
    left: 13px;
    right: 13px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    box-shadow: 0 0 8px rgba(99,236,255,.65);
    transition: transform .22s ease, opacity .22s ease, top .22s ease;
  }
  .menu-toggle span:nth-child(1) { top: 16px; }
  .menu-toggle span:nth-child(2) { top: 23px; }
  .menu-toggle span:nth-child(3) { top: 30px; }
  .menu-toggle.is-open span:nth-child(1) { top: 23px; transform: rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
  .menu,
  .menu.menu-v13 {
    position: fixed !important;
    left: 18px !important;
    right: 18px !important;
    top: 88px !important;
    z-index: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 22px 18px !important;
    border-radius: 28px !important;
    background:
      radial-gradient(circle at 20% 0%, rgba(67,197,255,.22), transparent 38%),
      radial-gradient(circle at 82% 100%, rgba(249,95,229,.14), transparent 42%),
      linear-gradient(160deg, rgba(5,12,24,.94), rgba(1,5,14,.96)) !important;
    border: 1px solid rgba(96,226,255,.24) !important;
    box-shadow: 0 26px 70px rgba(0,0,0,.58), 0 0 42px rgba(67,197,255,.10), inset 0 0 0 1px rgba(255,255,255,.04) !important;
    backdrop-filter: blur(22px) saturate(135%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(135%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) scale(.97) !important;
    transition: opacity .22s ease, transform .22s ease !important;
  }
  .menu.open,
  .menu.menu-v13.open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }
  .menu a,
  .menu-v13 a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 48px !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    letter-spacing: .20em !important;
    background: rgba(255,255,255,.035) !important;
    border: 1px solid rgba(255,255,255,.055) !important;
  }
  .hero-typewriter {
    bottom: 10px !important;
    width: min(96vw, 720px) !important;
  }
  .hero-typewriter span {
    font-size: clamp(21px, 6.2vw, 32px) !important;
    font-weight: 700 !important;
    letter-spacing: .055em !important;
  }

  .sounddeck-carousel-shell {
    grid-template-columns: minmax(0,1fr) !important;
    gap: 0 !important;
  }
  .sounddeck-arrow,
  .sounddeck-carousel-shell .sounddeck-arrow,
  .bywyou-media-photo-arrow,
  .bywyou-media-lightbox-arrow {
    display: none !important;
  }
  .sounddeck-carousel {
    padding: 6px 16px 12px !important;
    gap: 16px !important;
    scroll-snap-type: x mandatory !important;
  }
  .track-shot.track-cover-card,
  .track-cover-card {
    flex: 0 0 min(62vw, 230px) !important;
    width: min(62vw, 230px) !important;
    min-width: min(62vw, 230px) !important;
    overflow: visible !important;
    scroll-snap-align: center !important;
  }
  .track-cover-card .track-cover-image,
  .track-shot.track-cover-card .track-cover-image {
    aspect-ratio: 2 / 3 !important;
    height: auto !important;
    min-height: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-color: transparent !important;
    border-radius: 24px !important;
  }
  .sounddeck-video-player.is-mobile-cover-preview .sounddeck-video-frame {
    aspect-ratio: 2 / 3 !important;
    width: min(82vw, 390px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .sounddeck-video-player.is-mobile-cover-preview .sounddeck-image-preview {
    background-size: cover !important;
    background-position: center center !important;
    background-color: #020812 !important;
  }

  .bywyou-process-head,
  .bywyou-section-title,
  .bywyou-community-chart-head {
    text-align: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .bywyou-process-head p,
  .bywyou-section-title p,
  .bywyou-community-chart-head p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bywyou-fan-banner-slider {
    min-height: 470px !important;
    overflow: hidden !important;
  }
  .bywyou-fan-banner {
    grid-template-columns: 1fr !important;
    grid-template-areas: "photo" "meta" "message" !important;
    align-content: start !important;
    justify-items: center !important;
    gap: 14px !important;
    padding: 22px 16px !important;
  }
  .bywyou-fan-photo {
    grid-area: photo !important;
    width: 118px !important;
    height: 118px !important;
    margin: 0 auto !important;
  }
  .bywyou-fan-meta,
  .bywyou-fan-info,
  .bywyou-fan-person,
  .bywyou-fan-profile {
    grid-area: meta !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }
  .bywyou-fan-message {
    grid-area: message !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  .bywyou-fan-message p,
  .bywyou-fan-message p span,
  .bywyou-fan-message span {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    max-width: 100% !important;
    text-align: center !important;
    line-height: 1.12 !important;
    font-size: clamp(22px, 7.2vw, 34px) !important;
  }

  .bywyou-chart-row {
    grid-template-columns: 46px 64px minmax(0, 1fr) !important;
    grid-template-areas:
      "pos cover track"
      "play cover track"
      "hype hype hype"
      "vote vote vote" !important;
    gap: 10px 12px !important;
    min-height: 0 !important;
    padding: 14px !important;
    align-items: center !important;
  }
  .bywyou-chart-cover {
    width: 64px !important;
    height: 86px !important;
    border-radius: 18px !important;
  }
  .bywyou-chart-track {
    min-width: 0 !important;
    text-align: left !important;
  }
  .bywyou-chart-track strong,
  .bywyou-chart-track span {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
  .bywyou-chart-hype {
    width: 100% !important;
  }
  .bywyou-chart-vote {
    justify-self: center !important;
    width: min(72vw, 220px) !important;
    min-width: 0 !important;
    margin-top: 4px !important;
    font-size: 12px !important;
  }
}

/* Hide gallery fullscreen download button everywhere */
.bywyou-media-lightbox-wallpaper,
.bywyou-media-lightbox-wallpaper svg {
  display: none !important;
}

@media (max-width: 760px) and (orientation: portrait) {
  .virtual-dj-hero-video.is-fullscreen,
  .virtual-dj-hero-video.is-faux-fullscreen,
  .virtual-dj-hero-video:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .virtual-dj-hero-video.is-fullscreen .vdj-visual-video,
  .virtual-dj-hero-video.is-faux-fullscreen .vdj-visual-video,
  .virtual-dj-hero-video:fullscreen .vdj-visual-video {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 100vh !important;
    height: 100vw !important;
    max-width: none !important;
    max-height: none !important;
    transform: translate(-50%, -50%) rotate(90deg) !important;
    transform-origin: center center !important;
    object-fit: contain !important;
    background: #000 !important;
  }
  .virtual-dj-hero-video.is-fullscreen .vdj-video-exit,
  .virtual-dj-hero-video.is-faux-fullscreen .vdj-video-exit,
  .virtual-dj-hero-video:fullscreen .vdj-video-exit {
    top: 18px !important;
    right: 18px !important;
    transform: none !important;
  }
}


/* BYWYOU v816 - mobile final refinements */
@media (max-width: 760px) {
  /* hide every scroll/slider arrow on mobile */
  .sounddeck-arrow,
  .sounddeck-carousel-shell .sounddeck-arrow,
  .bywyou-media-photo-arrow,
  .bywyou-media-lightbox-arrow,
  .bywyou-scroll-buttons,
  .bywyou-floating-dock .bywyou-scroll-buttons,
  .bywyou-scroll-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* bigger centered top logo */
  .topbar .brand,
  .topbar .brand-v13,
  .no-footer-home .brand-v13 {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .topbar .brand img,
  .topbar .brand-v13 img,
  .no-footer-home .brand-v13 img {
    height: 46px !important;
    max-width: 58vw !important;
    width: auto !important;
  }

  /* hamburger pushed further right */
  .menu-toggle {
    right: 4px !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 15px !important;
  }

  /* mobile hit parade: views/count below, small vote button beside it */
  .bywyou-chart-row {
    grid-template-columns: 46px 64px minmax(0, 1fr) !important;
    grid-template-areas:
      "pos cover track"
      "play cover track"
      "hype hype vote" !important;
    gap: 10px 10px !important;
    align-items: center !important;
  }
  .bywyou-chart-hype {
    grid-area: hype !important;
    width: 100% !important;
    align-self: center !important;
  }
  .bywyou-chart-hype-top {
    justify-content: center !important;
    text-align: center !important;
    font-size: 12px !important;
    letter-spacing: .10em !important;
  }
  .bywyou-chart-hype-top strong {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 28px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.045) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    color: #eaf8ff !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }
  .bywyou-chart-meter {
    max-width: 100% !important;
  }
  .bywyou-chart-vote {
    grid-area: vote !important;
    justify-self: end !important;
    align-self: center !important;
    width: auto !important;
    min-width: 74px !important;
    max-width: 92px !important;
    min-height: 34px !important;
    height: 34px !important;
    padding: 0 13px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    letter-spacing: .14em !important;
  }
}

@media (max-width: 380px) {
  .topbar .brand img,
  .topbar .brand-v13 img,
  .no-footer-home .brand-v13 img {
    height: 42px !important;
    max-width: 54vw !important;
  }
  .menu-toggle {
    right: 2px !important;
  }
  .bywyou-chart-row {
    grid-template-columns: 42px 58px minmax(0, 1fr) !important;
  }
  .bywyou-chart-cover {
    width: 58px !important;
    height: 78px !important;
  }
  .bywyou-chart-vote {
    min-width: 68px !important;
    max-width: 82px !important;
    padding: 0 10px !important;
  }
}

/* BYWYOU v817 - mobile gallery swipe, fullscreen scroll, production landscape, chart rebuild */
.bywyou-media-lightbox-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: clamp(54px, 5.2vw, 74px) !important;
  height: clamp(88px, 11vw, 142px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(103,215,255,.30) !important;
  background:
    linear-gradient(180deg, rgba(6,18,34,.72), rgba(3,8,18,.42)) !important;
  color: #dffbff !important;
  text-shadow: 0 0 18px rgba(87,225,255,.85) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.055),
    0 24px 70px rgba(0,0,0,.58),
    0 0 32px rgba(87,225,255,.18) !important;
  backdrop-filter: blur(18px) saturate(1.25) !important;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease !important;
}
.bywyou-media-lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.04) !important;
  border-color: rgba(103,215,255,.62) !important;
  background: linear-gradient(180deg, rgba(18,52,86,.84), rgba(6,15,28,.56)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 28px 80px rgba(0,0,0,.64),
    0 0 42px rgba(87,225,255,.28) !important;
}
.bywyou-media-lightbox-arrow.prev { left: max(14px, 2.2vw) !important; }
.bywyou-media-lightbox-arrow.next { right: max(14px, 2.2vw) !important; }
.bywyou-media-lightbox-arrow::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(18vw, 170px);
  pointer-events: none;
  opacity: .88;
}
.bywyou-media-lightbox-arrow.prev::before {
  left: 0;
  background: linear-gradient(90deg, rgba(20,92,145,.26), transparent);
}
.bywyou-media-lightbox-arrow.next::before {
  right: 0;
  background: linear-gradient(270deg, rgba(20,92,145,.26), transparent);
}
.bywyou-media-lightbox img {
  transition: transform .30s ease, opacity .30s ease, filter .30s ease !important;
  will-change: transform, opacity;
}
.bywyou-media-lightbox.is-moving-next img {
  animation: bywyouLightboxSlideNext .30s ease both;
}
.bywyou-media-lightbox.is-moving-prev img {
  animation: bywyouLightboxSlidePrev .30s ease both;
}
@keyframes bywyouLightboxSlideNext {
  0% { opacity: .55; transform: translateX(22px) scale(.985); filter: blur(1px); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}
@keyframes bywyouLightboxSlidePrev {
  0% { opacity: .55; transform: translateX(-22px) scale(.985); filter: blur(1px); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

/* Production player: on mobile always preview horizontal/video content, not portrait cover */
.sounddeck-video-player.is-mobile-landscape-preview .sounddeck-video-frame {
  aspect-ratio: 16 / 9 !important;
  width: 100% !important;
  max-width: min(100%, 980px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.sounddeck-video-player.is-mobile-landscape-preview .sounddeck-image-preview {
  background-size: contain !important;
  background-position: center center !important;
  background-color: #020812 !important;
}
@media (max-width: 760px) and (orientation: portrait) {
  .sounddeck-video-frame:fullscreen,
  .sounddeck-video-frame.is-faux-fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden !important;
  }
  .sounddeck-video-frame:fullscreen video,
  .sounddeck-video-frame:fullscreen .sounddeck-image-preview,
  .sounddeck-video-frame.is-faux-fullscreen video,
  .sounddeck-video-frame.is-faux-fullscreen .sounddeck-image-preview {
    left: 50% !important;
    top: 50% !important;
    width: 100vh !important;
    height: 100vw !important;
    max-width: none !important;
    max-height: none !important;
    transform: translate(-50%, -50%) rotate(90deg) !important;
    transform-origin: center center !important;
    object-fit: contain !important;
    background-size: contain !important;
    background-position: center center !important;
  }
}

@media (max-width: 760px) {
  /* keep homepage gallery arrows hidden, but show fullscreen side scroll */
  .bywyou-media-photo-arrow,
  .sounddeck-arrow,
  .bywyou-scroll-buttons,
  .bywyou-scroll-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .bywyou-media-lightbox-arrow {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 48px !important;
    height: 104px !important;
    border-radius: 24px !important;
    font-size: 36px !important;
  }
  .bywyou-media-lightbox-arrow.prev { left: 8px !important; }
  .bywyou-media-lightbox-arrow.next { right: 8px !important; }
  .bywyou-media-lightbox img {
    max-width: 92vw !important;
    max-height: 86vh !important;
  }

  /* Hit Parade exact mobile layout */
  .bywyou-chart-row {
    display: grid !important;
    grid-template-columns: 42px 66px minmax(0, 1fr) 44px !important;
    grid-template-areas:
      "pos cover track play"
      "hype hype hype vote" !important;
    gap: 12px 10px !important;
    align-items: center !important;
    min-height: 0 !important;
    padding: 14px 12px !important;
    border-radius: 22px !important;
  }
  .bywyou-chart-position {
    grid-area: pos !important;
    width: 42px !important;
    height: 66px !important;
    border-radius: 17px !important;
    font-size: 21px !important;
    line-height: 1 !important;
    align-self: center !important;
    justify-self: start !important;
  }
  .bywyou-chart-cover {
    grid-area: cover !important;
    width: 66px !important;
    height: 88px !important;
    border-radius: 18px !important;
    align-self: center !important;
    justify-self: start !important;
  }
  .bywyou-chart-track {
    grid-area: track !important;
    min-width: 0 !important;
    width: 100% !important;
    text-align: left !important;
    align-self: center !important;
  }
  .bywyou-chart-track strong {
    display: block !important;
    font-size: clamp(14px, 4.2vw, 18px) !important;
    line-height: 1.06 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
  .bywyou-chart-track span {
    display: block !important;
    margin-top: 5px !important;
    font-size: 10px !important;
    letter-spacing: .16em !important;
    white-space: normal !important;
  }
  .bywyou-chart-audio-line {
    display: block !important;
    width: 100% !important;
    height: 6px !important;
    margin-top: 9px !important;
  }
  .bywyou-chart-play {
    grid-area: play !important;
    justify-self: end !important;
    align-self: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }
  .bywyou-chart-play span {
    font-size: 13px !important;
  }
  .bywyou-chart-hype {
    grid-area: hype !important;
    width: 100% !important;
    min-width: 0 !important;
    align-self: center !important;
    justify-self: stretch !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-top: 2px !important;
  }
  .bywyou-chart-hype-top {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
    text-align: left !important;
  }
  .bywyou-chart-hype-top strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, rgba(67,197,255,.18), rgba(249,95,229,.10)) !important;
    border: 1px solid rgba(103,215,255,.30) !important;
    color: #eaffff !important;
    font-family: 'Oswald', Arial, sans-serif !important;
    font-size: clamp(22px, 6.8vw, 31px) !important;
    line-height: 1 !important;
    letter-spacing: .03em !important;
    text-shadow: 0 0 16px rgba(87,225,255,.34) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 0 22px rgba(87,225,255,.08) !important;
  }
  .bywyou-chart-meter {
    display: none !important;
  }
  .bywyou-chart-vote {
    grid-area: vote !important;
    justify-self: end !important;
    align-self: center !important;
    width: auto !important;
    min-width: 72px !important;
    max-width: 86px !important;
    min-height: 36px !important;
    height: 36px !important;
    padding: 0 12px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    letter-spacing: .14em !important;
  }
}

@media (max-width: 380px) {
  .bywyou-chart-row {
    grid-template-columns: 38px 58px minmax(0, 1fr) 40px !important;
    gap: 10px 8px !important;
  }
  .bywyou-chart-position {
    width: 38px !important;
    height: 60px !important;
    font-size: 18px !important;
  }
  .bywyou-chart-cover {
    width: 58px !important;
    height: 78px !important;
  }
  .bywyou-chart-play {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }
  .bywyou-chart-vote {
    min-width: 66px !important;
    max-width: 76px !important;
    padding: 0 9px !important;
  }
}


/* BYWYOU final chart numbering refinement */
@media (max-width: 760px) {
  .bywyou-chart-position {
    width: 48px !important;
    height: 72px !important;
    border-radius: 18px !important;
    font-size: clamp(30px, 9.2vw, 42px) !important;
    letter-spacing: -.08em !important;
  }
  .bywyou-chart-hype-top strong {
    min-height: 34px !important;
    padding: 0 15px !important;
    font-size: clamp(17px, 5.3vw, 24px) !important;
    letter-spacing: .02em !important;
  }
}
@media (max-width: 380px) {
  .bywyou-chart-position {
    width: 44px !important;
    height: 66px !important;
    font-size: clamp(27px, 8.4vw, 36px) !important;
  }
  .bywyou-chart-hype-top strong {
    font-size: clamp(16px, 5vw, 21px) !important;
    padding: 0 12px !important;
  }
}


/* BYWYOU chart position style unified + mobile spacing fix */
.bywyou-chart-position,
.bywyou-chart-row.is-top .bywyou-chart-position {
  color: #00111c !important;
  background: linear-gradient(135deg, #43c5ff, #f95fe5) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 0 24px rgba(67,197,255,.22), inset 0 0 0 1px rgba(255,255,255,.12) !important;
  text-shadow: none !important;
}
@media (max-width: 760px) {
  .bywyou-chart-row {
    grid-template-columns: 62px 66px minmax(0, 1fr) 44px !important;
    gap: 12px 14px !important;
    padding-left: 10px !important;
    padding-right: 12px !important;
  }
  .bywyou-chart-position,
  .bywyou-chart-row.is-top .bywyou-chart-position {
    justify-self: center !important;
    align-self: center !important;
    width: 54px !important;
    height: 74px !important;
    font-size: clamp(32px, 9.8vw, 44px) !important;
    letter-spacing: -.08em !important;
  }
}
@media (max-width: 380px) {
  .bywyou-chart-row {
    grid-template-columns: 56px 58px minmax(0, 1fr) 40px !important;
    gap: 10px 12px !important;
    padding-left: 8px !important;
  }
  .bywyou-chart-position,
  .bywyou-chart-row.is-top .bywyou-chart-position {
    width: 50px !important;
    height: 68px !important;
    font-size: clamp(29px, 9vw, 38px) !important;
  }
}


/* BYWYOU v819 - force unified chart position numbers */
#community .bywyou-chart-row .bywyou-chart-position,
#community .bywyou-chart-row .bywyou-chart-position-unified,
#community .bywyou-chart-row.is-top .bywyou-chart-position,
#community .bywyou-chart-row.is-top .bywyou-chart-position-unified {
  color: #00111c !important;
  background: linear-gradient(135deg, #43c5ff 0%, #75e7ff 42%, #f95fe5 100%) !important;
  border: 1px solid rgba(255,255,255,.26) !important;
  box-shadow:
    0 0 28px rgba(67,197,255,.28),
    0 12px 28px rgba(0,0,0,.22),
    inset 0 0 0 1px rgba(255,255,255,.16) !important;
  text-shadow: none !important;
  font-family: 'Oswald', Arial, sans-serif !important;
  font-weight: 950 !important;
}
@media (max-width: 760px) {
  #community .bywyou-chart-row {
    grid-template-columns: 66px 66px minmax(0, 1fr) 44px !important;
    gap: 12px 16px !important;
    padding-left: 8px !important;
  }
  #community .bywyou-chart-row .bywyou-chart-position,
  #community .bywyou-chart-row .bywyou-chart-position-unified,
  #community .bywyou-chart-row.is-top .bywyou-chart-position,
  #community .bywyou-chart-row.is-top .bywyou-chart-position-unified {
    grid-area: pos !important;
    justify-self: center !important;
    align-self: center !important;
    margin: 0 auto !important;
    width: 56px !important;
    height: 76px !important;
    border-radius: 19px !important;
    font-size: clamp(34px, 10.4vw, 46px) !important;
    line-height: 1 !important;
    letter-spacing: -.08em !important;
  }
}
@media (max-width: 380px) {
  #community .bywyou-chart-row {
    grid-template-columns: 60px 58px minmax(0, 1fr) 40px !important;
    gap: 10px 14px !important;
    padding-left: 6px !important;
  }
  #community .bywyou-chart-row .bywyou-chart-position,
  #community .bywyou-chart-row .bywyou-chart-position-unified,
  #community .bywyou-chart-row.is-top .bywyou-chart-position,
  #community .bywyou-chart-row.is-top .bywyou-chart-position-unified {
    width: 52px !important;
    height: 70px !important;
    font-size: clamp(30px, 9.5vw, 40px) !important;
  }
}

/* BYWYOU v820 - mobile round rank card, centered views and sticky top menu */
@media (max-width: 760px) {
  .topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    transform: none !important;
  }
  body {
    padding-top: 78px !important;
  }
  .bywyou-hero,
  .visual-hero,
  .empty-hero {
    margin-top: -78px !important;
  }
  #community .bywyou-chart-row {
    grid-template-columns: 46px 66px minmax(0, 1fr) 44px !important;
    gap: 12px 14px !important;
    padding-left: 12px !important;
  }
  #community .bywyou-chart-row .bywyou-chart-position,
  #community .bywyou-chart-row .bywyou-chart-position-unified,
  #community .bywyou-chart-row.is-top .bywyou-chart-position,
  #community .bywyou-chart-row.is-top .bywyou-chart-position-unified {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 50% !important;
    justify-self: center !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    font-size: clamp(20px, 6.2vw, 28px) !important;
    line-height: 1 !important;
    letter-spacing: -.04em !important;
  }
  #community .bywyou-chart-hype {
    justify-self: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  #community .bywyou-chart-hype-top {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  #community .bywyou-chart-hype-top strong {
    margin: 0 auto !important;
    justify-content: center !important;
    text-align: center !important;
    min-width: 86px !important;
    max-width: 120px !important;
    font-size: clamp(15px, 4.5vw, 20px) !important;
  }
}

@media (max-width: 380px) {
  body {
    padding-top: 74px !important;
  }
  .bywyou-hero,
  .visual-hero,
  .empty-hero {
    margin-top: -74px !important;
  }
  #community .bywyou-chart-row {
    grid-template-columns: 42px 58px minmax(0, 1fr) 40px !important;
    gap: 10px 12px !important;
    padding-left: 10px !important;
  }
  #community .bywyou-chart-row .bywyou-chart-position,
  #community .bywyou-chart-row .bywyou-chart-position-unified,
  #community .bywyou-chart-row.is-top .bywyou-chart-position,
  #community .bywyou-chart-row.is-top .bywyou-chart-position-unified {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    font-size: clamp(18px, 5.8vw, 24px) !important;
  }
  #community .bywyou-chart-hype-top strong {
    min-width: 76px !important;
    max-width: 104px !important;
    font-size: clamp(14px, 4.2vw, 18px) !important;
  }
}


/* BYWYOU v821 - chart cover fullscreen orientation */
.bywyou-chart-cover-lightbox.is-desktop-horizontal .bywyou-chart-cover-lightbox-frame {
  max-width: min(94vw, 1280px) !important;
  max-height: 86vh !important;
}
.bywyou-chart-cover-lightbox.is-desktop-horizontal .bywyou-chart-cover-lightbox-frame img {
  max-width: min(94vw, 1280px) !important;
  max-height: 86vh !important;
  border-radius: 26px !important;
}
@media (max-width: 760px) {
  .bywyou-chart-cover-lightbox.is-mobile-vertical .bywyou-chart-cover-lightbox-frame,
  .bywyou-chart-cover-lightbox.is-mobile-vertical .bywyou-chart-cover-lightbox-frame img {
    max-width: 92vw !important;
    max-height: 88vh !important;
  }
}

/* BYWYOU mobile fan banner layout fix v826 */
@media (max-width: 720px) {
  .bywyou-fan-banner-slider {
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  .bywyou-fan-banner {
    inset: auto !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    grid-template-areas:
      "photo meta"
      "message message" !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 22px !important;
    min-height: 0 !important;
    background: linear-gradient(135deg, rgba(0,0,0,.88), rgba(4,8,18,.84)) !important;
  }

  .bywyou-fan-banner:not(.is-active) {
    position: absolute !important;
    inset: 0 !important;
  }

  .bywyou-fan-banner.is-active {
    position: relative !important;
    display: grid !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .bywyou-fan-photo {
    grid-area: photo !important;
    width: 92px !important;
    height: 112px !important;
    min-height: 112px !important;
    margin: 0 !important;
    border-radius: 18px !important;
  }

  .bywyou-fan-meta {
    grid-area: meta !important;
    min-width: 0 !important;
    width: 100% !important;
    min-height: 112px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 13px 14px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(226,244,255,.86)) !important;
    border: 1px solid rgba(125,223,255,.26) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.80) !important;
  }

  .bywyou-fan-meta strong {
    color: #071323 !important;
    width: auto !important;
    text-align: left !important;
    font-size: 21px !important;
    line-height: 1.02 !important;
    letter-spacing: -.035em !important;
    margin: 0 0 6px !important;
  }

  .bywyou-fan-meta small {
    color: #4d5d73 !important;
    width: auto !important;
    text-align: left !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    letter-spacing: .10em !important;
    margin: 0 0 8px !important;
  }

  .bywyou-fan-social {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 11px !important;
    font-size: 20px !important;
    margin: 0 !important;
    place-self: auto !important;
  }

  .bywyou-fan-social-facebook {
    font-size: 25px !important;
  }

  .bywyou-fan-message {
    grid-area: message !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    align-items: stretch !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .bywyou-fan-message p {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 15px 14px 16px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(224,244,255,.86)) !important;
    border: 1px solid rgba(125,223,255,.26) !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.75) !important;
    color: #071323 !important;
    font-size: 19px !important;
    line-height: 1.18 !important;
    letter-spacing: -.025em !important;
    font-weight: 850 !important;
    overflow: visible !important;
  }

  .bywyou-fan-message p span {
    display: inline !important;
    width: auto !important;
    white-space: normal !important;
    overflow: visible !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    color: inherit !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .bywyou-fan-message p span + span::before {
    content: " " !important;
  }
}

/* BYWYOU mobile fan dark style restore v827 */
@media (max-width: 720px) {
  .bywyou-fan-banner {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    grid-template-areas:
      "photo meta"
      "message message" !important;
    gap: 12px !important;
    align-items: stretch !important;
    background: #000000 !important;
    background-image: none !important;
    border: 1px solid rgba(122, 220, 255, 0.34) !important;
    box-shadow: none !important;
  }

  .bywyou-fan-photo {
    width: 96px !important;
    height: 116px !important;
    min-height: 116px !important;
    align-self: stretch !important;
    border-radius: 18px !important;
    border: 1px solid rgba(122, 220, 255, 0.34) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.36) !important;
  }

  .bywyou-fan-photo img {
    height: 100% !important;
    object-fit: cover !important;
  }

  .bywyou-fan-meta {
    min-height: 116px !important;
    height: 116px !important;
    align-self: stretch !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 14px 14px !important;
    background: #000000 !important;
    background-image: none !important;
    border: 1px solid rgba(122, 220, 255, 0.34) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .bywyou-fan-meta strong {
    color: #ffffff !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 21px !important;
    line-height: 1.05 !important;
    letter-spacing: -.03em !important;
    margin: 0 0 6px !important;
  }

  .bywyou-fan-meta small {
    color: rgba(255,255,255,.72) !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
    letter-spacing: .10em !important;
    margin: 0 0 8px !important;
  }

  .bywyou-fan-social {
    color: #ffffff !important;
    border-color: rgba(122, 220, 255, 0.38) !important;
    background: #000000 !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.14) !important;
    margin: 0 auto !important;
    place-self: center !important;
  }

  .bywyou-fan-message {
    background: #000000 !important;
    background-image: none !important;
    border: 1px solid rgba(122, 220, 255, 0.34) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    overflow: visible !important;
    align-items: stretch !important;
  }

  .bywyou-fan-message p {
    background: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #ffffff !important;
    text-shadow: none !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 16px 15px 18px !important;
    margin: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 19px !important;
    line-height: 1.2 !important;
    letter-spacing: -.025em !important;
    font-weight: 750 !important;
  }

  .bywyou-fan-message p span,
  .bywyou-fan-message span {
    color: #ffffff !important;
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    display: inline !important;
    width: auto !important;
    max-width: 100% !important;
    text-align: center !important;
  }
}


/* BYWYOU mobile fan card color + message regular v828 */
@media (max-width: 720px) {
  .bywyou-fan-banner {
    background:
      radial-gradient(circle at 20% 20%, rgba(67,197,255,.18), transparent 34%),
      radial-gradient(circle at 86% 58%, rgba(249,95,229,.14), transparent 38%),
      linear-gradient(135deg, rgba(255,255,255,.060), rgba(255,255,255,.025)) !important;
    border: 1px solid rgba(255,255,255,.085) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.022), 0 18px 42px rgba(0,0,0,.22) !important;
  }

  .bywyou-fan-meta,
  .bywyou-fan-message {
    background:
      radial-gradient(circle at 20% 20%, rgba(67,197,255,.16), transparent 36%),
      radial-gradient(circle at 88% 80%, rgba(249,95,229,.11), transparent 42%),
      linear-gradient(135deg, rgba(255,255,255,.060), rgba(255,255,255,.025)) !important;
    border: 1px solid rgba(255,255,255,.085) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.022), 0 14px 34px rgba(0,0,0,.20) !important;
  }

  .bywyou-fan-social {
    background:
      radial-gradient(circle at 35% 20%, rgba(103,215,255,.28), transparent 48%),
      linear-gradient(135deg, rgba(255,255,255,.070), rgba(255,255,255,.030)) !important;
    border-color: rgba(122,220,255,.28) !important;
  }

  .bywyou-fan-message p {
    font-weight: 400 !important;
  }

  .bywyou-fan-message p span,
  .bywyou-fan-message span {
    font-weight: 400 !important;
  }
}


/* BYWYOU v829 - TOP TEN same title size as LIVE MOMENTS */
.bywyou-community-chart-head h2 {
  font-size: clamp(34px, 5.2vw, 70px) !important;
  line-height: .94 !important;
  letter-spacing: .015em !important;
}
@media (max-width: 768px) {
  .bywyou-community-chart-head h2 {
    font-size: clamp(34px, 12vw, 52px) !important;
    line-height: .94 !important;
  }
}


/* BYWYOU v830 - TOP TEN mobile size, fullscreen gallery controls and fluid slide */
.bywyou-community-chart-head h2 {
  font-size: clamp(34px, 5vw, 72px) !important;
  line-height: .95 !important;
  letter-spacing: .015em !important;
}

.bywyou-media-lightbox-wallpaper,
.bywyou-media-lightbox-wallpaper svg {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.bywyou-media-lightbox-wallpaper {
  position: fixed !important;
  top: 22px !important;
  right: 88px !important;
  z-index: 2147483647 !important;
  width: 52px !important;
  height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(103,215,255,.36) !important;
  background: linear-gradient(180deg, rgba(10,24,42,.78), rgba(3,8,18,.54)) !important;
  color: #e9fbff !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.48), 0 0 26px rgba(87,225,255,.16) !important;
  backdrop-filter: blur(16px) saturate(1.2) !important;
}
.bywyou-media-lightbox-wallpaper svg {
  width: 24px !important;
  height: 24px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
}
.bywyou-media-lightbox-wallpaper:hover {
  transform: translateY(-1px) scale(1.04) !important;
  border-color: rgba(103,215,255,.68) !important;
}

.bywyou-media-lightbox-arrow {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  font-size: 34px !important;
  line-height: 1 !important;
  padding: 0 0 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(103,215,255,.42) !important;
  background: radial-gradient(circle at 50% 25%, rgba(103,215,255,.20), rgba(5,14,28,.72) 58%, rgba(3,7,16,.62)) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.52), 0 0 24px rgba(87,225,255,.20), inset 0 0 0 1px rgba(255,255,255,.06) !important;
}
.bywyou-media-lightbox-arrow::before {
  display: none !important;
  content: none !important;
}
.bywyou-media-lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.08) !important;
}
.bywyou-media-lightbox img {
  transition: transform .42s cubic-bezier(.2,.8,.2,1), opacity .42s cubic-bezier(.2,.8,.2,1), filter .42s cubic-bezier(.2,.8,.2,1) !important;
}
.bywyou-media-lightbox.is-moving-next img {
  animation: bywyouLightboxSlideNextFluid .42s cubic-bezier(.2,.8,.2,1) both !important;
}
.bywyou-media-lightbox.is-moving-prev img {
  animation: bywyouLightboxSlidePrevFluid .42s cubic-bezier(.2,.8,.2,1) both !important;
}
@keyframes bywyouLightboxSlideNextFluid {
  0% { opacity: 0; transform: translateX(42px) scale(.975); filter: blur(2px); }
  55% { opacity: .92; filter: blur(.35px); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}
@keyframes bywyouLightboxSlidePrevFluid {
  0% { opacity: 0; transform: translateX(-42px) scale(.975); filter: blur(2px); }
  55% { opacity: .92; filter: blur(.35px); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

@media (max-width: 760px) {
  .bywyou-community-chart-head h2 {
    font-size: 34px !important;
    line-height: .95 !important;
  }
  .bywyou-media-lightbox-wallpaper {
    top: 14px !important;
    right: 68px !important;
    width: 46px !important;
    height: 46px !important;
  }
  .bywyou-media-lightbox-wallpaper svg {
    width: 21px !important;
    height: 21px !important;
  }
  .bywyou-media-lightbox-arrow {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    font-size: 28px !important;
  }
}


/* BYWYOU v831 - hide gallery fullscreen controls only on mobile */
@media (max-width: 760px) {
  .bywyou-media-lightbox.is-open .bywyou-media-lightbox-arrow,
  .bywyou-media-lightbox.is-open .bywyou-media-lightbox-arrow.prev,
  .bywyou-media-lightbox.is-open .bywyou-media-lightbox-arrow.next,
  .bywyou-media-lightbox.is-open .bywyou-media-lightbox-wallpaper,
  .bywyou-media-lightbox.is-open .bywyou-media-lightbox-wallpaper svg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}


/* BYWYOU v832 - smaller DJ SET fullscreen logo on mobile */
@media (max-width: 760px) {
  .virtual-dj-hero-video.is-fullscreen .vdj-video-exit.vdj-logo-exit,
  .virtual-dj-hero-video.is-faux-fullscreen .vdj-video-exit.vdj-logo-exit,
  .virtual-dj-hero-video:fullscreen .vdj-video-exit.vdj-logo-exit {
    top: 12px !important;
    right: 12px !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    transform: none !important;
  }

  .virtual-dj-hero-video.is-fullscreen .vdj-video-exit.vdj-logo-exit img,
  .virtual-dj-hero-video.is-faux-fullscreen .vdj-video-exit.vdj-logo-exit img,
  .virtual-dj-hero-video:fullscreen .vdj-video-exit.vdj-logo-exit img {
    height: 22px !important;
    width: auto !important;
    max-width: 34vw !important;
  }
}

/* BYWYOU v835 - mobile hero image slightly higher, text unchanged */
@media (max-width: 760px) {
  .hero-image-home .hero-main-image,
  .visual-hero .hero-main-image,
  .hero-main-image {
    object-position: center 30% !important;
  }
}



/* BYWYOU v837 - mobile-only hero image override */
.hero-main-picture{display:block;width:100%;height:100%;}
.hero-main-picture source{display:none;}
@media (max-width: 760px){
  .hero-main-picture,
  .hero-main-picture .hero-main-image{
    display:block;
    width:100%;
    height:100%;
  }
}


/* BYWYOU v839 - mobile hero container reduced so subtitle rises closer to image */
@media (max-width: 760px) {
  .visual-hero {
    height: 62vh !important;
    min-height: 0 !important;
  }
  .hero-main-picture,
  .hero-main-picture .hero-main-image,
  .hero-image-home .hero-main-image,
  .visual-hero .hero-main-image,
  .hero-main-image {
    height: 62vh !important;
    min-height: 0 !important;
  }
}


/* BYWYOU v840 - mobile hero shorter and typewriter 20px higher */
@media (max-width: 760px) {
  .visual-hero {
    height: 50vh !important;
    min-height: 0 !important;
  }
  .hero-main-picture,
  .hero-main-picture .hero-main-image,
  .hero-image-home .hero-main-image,
  .visual-hero .hero-main-image,
  .hero-main-image {
    height: 50vh !important;
    min-height: 0 !important;
  }
  .hero-typewriter {
    bottom: 20px !important;
  }
}


/* BYWYOU v841 - mobile hero height 50vh */
@media (max-width: 760px) {
  .visual-hero,
  .empty-hero {
    height: 50vh !important;
    min-height: 0 !important;
  }
  .hero-main-picture,
  .hero-main-picture .hero-main-image,
  .hero-image-home .hero-main-image,
  .visual-hero .hero-main-image,
  .hero-main-image {
    height: 50vh !important;
    min-height: 0 !important;
  }
}


/* BYWYOU v843 - Design by Marte-D and compact mobile vertical spacing */
@media (max-width: 760px) {
  .visual-hero,
  .empty-hero {
    height: 55vh !important;
    min-height: 0 !important;
  }

  .hero-main-picture,
  .hero-main-picture .hero-main-image,
  .hero-image-home .hero-main-image,
  .visual-hero .hero-main-image,
  .hero-main-image {
    height: 55vh !important;
    min-height: 0 !important;
  }

  main > section,
  .section,
  .sounddeck-section,
  .virtual-dj-embed-section,
  .bywyou-process-section,
  .bywyou-community-chart-section,
  .bywyou-footer {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .container,
  .bywyou-section-title,
  .virtual-dj-embed-title,
  .bywyou-process-head,
  .bywyou-community-chart-head {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

  .hero-blue-separator {
    height: 14px !important;
    margin: -7px auto -5px !important;
  }

  .sounddeck-player-wrap,
  .sounddeck-carousel-bleed,
  .virtual-dj-shell,
  .bywyou-process-wrap,
  .bywyou-community-chart-wrap,
  .bywyou-media-photo-slider,
  .bywyou-fan-banner-slider,
  .bywyou-chart-list {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .bywyou-section-title h2,
  .virtual-dj-embed-title h2,
  .bywyou-process-head h2,
  .bywyou-community-chart-head h2 {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
  }

  .bywyou-section-title p,
  .virtual-dj-embed-title p,
  .bywyou-process-head p,
  .bywyou-community-chart-head p {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
  }
}


/* BYWYOU v844 - mobile line break and hero text bottom */
.mobile-only-break {
  display: none;
}
@media (max-width: 760px) {
  .mobile-only-break {
    display: block;
  }
  .hero-typewriter {
    bottom: 10px !important;
  }
}


/* BYWYOU v845 - mobile productions player: play button centered above progress */
@media (max-width: 760px) {
  #productions .sounddeck-horizontal-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  #productions .sounddeck-play {
    order: 5 !important;
    margin: 6px auto 2px !important;
    align-self: center !important;
    justify-self: center !important;
  }

  #productions .sounddeck-track-compact {
    order: 1 !important;
    width: 100% !important;
    text-align: center !important;
  }

  #productions .sounddeck-version-picker {
    order: 2 !important;
    justify-content: center !important;
    width: 100% !important;
  }

  #productions .sounddeck-data-row {
    order: 3 !important;
    justify-content: center !important;
    width: 100% !important;
  }

  #productions .sounddeck-audio-core {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  #productions .sounddeck-timeline-wrap {
    width: 100% !important;
    margin-top: 8px !important;
  }

  #productions .sounddeck-wave {
    margin-bottom: 6px !important;
  }
}

/* BYWYOU v846 - productions player play button slightly smaller */
#productions .sounddeck-play {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  font-size: 18px !important;
}
#productions .sounddeck-play-icon {
  font-size: 18px !important;
  line-height: 1 !important;
}
@media (max-width: 760px) {
  #productions .sounddeck-play {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    font-size: 16px !important;
  }
  #productions .sounddeck-play-icon {
    font-size: 16px !important;
  }
}


/* BYWYOU v854 - gallery fullscreen slide like productions covers */
.bywyou-media-lightbox-viewport {
  position: relative !important;
  z-index: 2147483646 !important;
  width: min(94vw, 1500px) !important;
  max-width: min(94vw, 1500px) !important;
  height: min(86vh, 980px) !important;
  max-height: 86vh !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  box-shadow: 0 34px 110px rgba(0,0,0,0.62), 0 0 0 1px rgba(255,255,255,0.12) !important;
  background: rgba(3,7,16,.92) !important;
}
.bywyou-media-lightbox-track {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  will-change: transform !important;
  transition: transform .48s cubic-bezier(.22,.86,.24,1) !important;
}
.bywyou-media-lightbox-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.bywyou-media-lightbox-slide img {
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 22px !important;
  box-shadow: none !important;
  transform: none !important;
  animation: none !important;
  filter: none !important;
  transition: none !important;
}
.bywyou-media-lightbox.is-moving-next img,
.bywyou-media-lightbox.is-moving-prev img {
  animation: none !important;
  transform: none !important;
  filter: none !important;
}
@media (max-width: 760px) {
  .bywyou-media-lightbox-viewport {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #000 !important;
  }
  .bywyou-media-lightbox-slide img {
    max-width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }
}

/* BYWYOU v856 - productions player play button slightly smaller on desktop only */
@media (min-width: 761px) {
  #productions .sounddeck-play {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    font-size: 16px !important;
  }
  #productions .sounddeck-play-icon {
    font-size: 16px !important;
    line-height: 1 !important;
  }
}

/* BYWYOU v857 - desktop productions progress bar spacing */
@media (min-width: 761px) {
  #productions .sounddeck-timeline-wrap {
    margin-top: 10px !important;
  }
}


/* BYWYOU v858 - iPhone Safari DJ fullscreen hides fixed site chrome */
html.vdj-faux-fullscreen-open,
body.vdj-faux-fullscreen-open {
  overflow: hidden !important;
  background: #000 !important;
}

html.vdj-faux-fullscreen-open .topbar,
body.vdj-faux-fullscreen-open .topbar,
html.vdj-faux-fullscreen-open .menu-toggle,
body.vdj-faux-fullscreen-open .menu-toggle,
html.vdj-faux-fullscreen-open .menu,
body.vdj-faux-fullscreen-open .menu,
html.vdj-faux-fullscreen-open .menu-v13,
body.vdj-faux-fullscreen-open .menu-v13,
html.vdj-faux-fullscreen-open .bywyou-floating-dock,
body.vdj-faux-fullscreen-open .bywyou-floating-dock,
html.vdj-faux-fullscreen-open .bywyou-scroll-buttons,
body.vdj-faux-fullscreen-open .bywyou-scroll-buttons {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.virtual-dj-hero-video.is-fullscreen,
.virtual-dj-hero-video.is-faux-fullscreen,
.virtual-dj-hero-video:fullscreen {
  z-index: 2147483647 !important;
}

.virtual-dj-hero-video.is-fullscreen .vdj-video-exit,
.virtual-dj-hero-video.is-faux-fullscreen .vdj-video-exit,
.virtual-dj-hero-video:fullscreen .vdj-video-exit {
  z-index: 2147483647 !important;
}


/* BYWYOU v861 - iPhone Safari DJ SET fullscreen text exit */
.vdj-ios-text-exit {
  position: fixed !important;
  right: max(16px, env(safe-area-inset-right)) !important;
  top: max(16px, env(safe-area-inset-top)) !important;
  z-index: 2147483647 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 72px !important;
  min-height: 44px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
  background: rgba(0,0,0,0.72) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: 0 14px 42px rgba(0,0,0,.52), 0 0 24px rgba(70,190,255,.20) !important;
}

.vdj-ios-text-exit.is-visible {
  display: inline-flex !important;
}

html.vdj-ios-safari-fullscreen-open .virtual-dj-hero-video.is-faux-fullscreen,
body.vdj-ios-safari-fullscreen-open .virtual-dj-hero-video.is-faux-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  z-index: 2147483000 !important;
  background: #000 !important;
  transform: none !important;
}

html.vdj-ios-safari-fullscreen-open .virtual-dj-hero-video.is-faux-fullscreen .vdj-video-exit,
body.vdj-ios-safari-fullscreen-open .virtual-dj-hero-video.is-faux-fullscreen .vdj-video-exit {
  display: none !important;
}

@supports (-webkit-touch-callout: none) {
  html.vdj-ios-safari-fullscreen-open,
  body.vdj-ios-safari-fullscreen-open {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    background: #000 !important;
  }
}


/* BYWYOU v862 - video fullscreen toggles by tapping video */
.virtual-dj-hero-video,
.sounddeck-video-frame {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.vdj-ios-text-exit {
  display: none !important;
}


/* BYWYOU v863 - iPhone Safari video tap toggle without page jump */
@supports (-webkit-touch-callout: none) {
  html.vdj-ios-safari-fullscreen-open,
  body.vdj-ios-safari-fullscreen-open {
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: hidden !important;
    background: #000 !important;
  }
}


/* BYWYOU v864 - fan photos preload and soft fade-in */
.bywyou-fan-photo {
  position: relative;
}
.bywyou-fan-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(103,215,255,.26), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  opacity: .72;
  transition: opacity .75s ease;
  pointer-events: none;
}
.bywyou-fan-photo img.bywyou-fan-img {
  opacity: 0;
  transform: scale(1.035);
  filter: blur(8px) saturate(1.05);
  transition: opacity .9s ease, transform 1.05s ease, filter 1.05s ease;
  will-change: opacity, transform, filter;
}
.bywyou-fan-photo img.bywyou-fan-img.is-loaded {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) saturate(1.04);
}
.bywyou-fan-photo:has(img.bywyou-fan-img.is-loaded)::before,
.bywyou-fan-photo.is-loaded::before {
  opacity: 0;
}


/* BYWYOU v865 - DJ SET auto folder + fan photos batch preload */
.bywyou-fan-banner-slider.is-preloading {
  opacity: 0 !important;
  transition: opacity .55s ease !important;
}
.bywyou-fan-banner-slider.is-ready {
  opacity: 1 !important;
  transition: opacity .55s ease !important;
}
.bywyou-fan-photo img.bywyou-fan-img.is-loaded + .bywyou-fan-photo-placeholder,
.bywyou-fan-photo img.bywyou-fan-img.is-loaded ~ .bywyou-fan-photo-placeholder {
  opacity: 0 !important;
}


/* BYWYOU v866 - fan cards real soft dissolve */
.bywyou-fan-banner-slider.is-preloading,
.bywyou-fan-banner-slider.is-soft-fade-pending {
  opacity: 0 !important;
  transform: translateY(6px) scale(.992) !important;
  filter: blur(6px) !important;
  transition: opacity 1.25s ease, transform 1.25s ease, filter 1.25s ease !important;
}
.bywyou-fan-banner-slider.is-ready,
.bywyou-fan-banner-slider.is-soft-fade-done {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
  transition: opacity 1.25s ease, transform 1.25s ease, filter 1.25s ease !important;
}
.bywyou-fan-banner {
  transition: opacity 1.35s ease, transform 1.35s ease, filter 1.35s ease !important;
  filter: blur(2px);
}
.bywyou-fan-banner.is-active {
  filter: blur(0);
}
.bywyou-fan-photo img.bywyou-fan-img {
  transition: opacity 1.35s ease, transform 1.45s ease, filter 1.45s ease !important;
}


/* BYWYOU v867 - real crossfade for fan cards */
.bywyou-fan-banner-slider.bywyou-card-fade {
  position: relative !important;
  overflow: hidden !important;
  min-height: 164px !important;
  transition: opacity 1.15s ease, transform 1.15s ease, filter 1.15s ease, height .35s ease !important;
}
.bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner {
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: 1 !important;
  transform: translateY(10px) scale(.985) !important;
  filter: blur(5px) !important;
  transition: opacity 1.15s ease, transform 1.15s ease, filter 1.15s ease, visibility 0s linear 1.15s !important;
  will-change: opacity, transform, filter !important;
}
.bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
  transition: opacity 1.15s ease, transform 1.15s ease, filter 1.15s ease, visibility 0s linear 0s !important;
}
.bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner.is-leaving {
  opacity: 0 !important;
  visibility: visible !important;
  pointer-events: none !important;
  z-index: 3 !important;
  transform: translateY(-8px) scale(.99) !important;
  filter: blur(5px) !important;
  transition: opacity 1.15s ease, transform 1.15s ease, filter 1.15s ease, visibility 0s linear 1.15s !important;
}
@media (max-width: 720px) {
  .bywyou-fan-banner-slider.bywyou-card-fade {
    min-height: 380px !important;
    height: 380px;
  }
  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner,
  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner.is-active,
  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner:not(.is-active) {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
  }
}


/* BYWYOU v868 - remove general fan card border */
.bywyou-fan-banner,
.bywyou-fan-card,
.bywyou-fan-highlight,
.bywyou-fan-feature {
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 720px) {
  .bywyou-fan-banner,
  .bywyou-fan-card,
  .bywyou-fan-highlight,
  .bywyou-fan-feature {
    border: 0 !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }
}

/* BYWYOU v869 - remove fan general frame completely */
.bywyou-fan-banner-slider {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.bywyou-fan-banner-slider::before,
.bywyou-fan-banner-slider::after {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
}
.bywyou-fan-banner {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  background-image: none !important;
}


/* BYWYOU v870 - remove separator line between fan area and charts */
.bywyou-community-chart-section,
.bywyou-community-chart-wrap,
.bywyou-community-chart-head,
.bywyou-fans-section,
.bywyou-fans-wrap,
.fan-community-section,
.community-fans-section,
.fan-carousel-section {
  border-top: 0 !important;
}

.bywyou-community-chart-section::before,
.bywyou-community-chart-section::after,
.bywyou-community-chart-wrap::before,
.bywyou-community-chart-wrap::after,
.bywyou-fans-section::before,
.bywyou-fans-section::after,
.bywyou-fans-wrap::before,
.bywyou-fans-wrap::after,
.fan-community-section::before,
.fan-community-section::after,
.community-fans-section::before,
.community-fans-section::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* BYWYOU v871 - remove internal fan/chart divider line */
.bywyou-top-chart-hero,
#community .bywyou-top-chart-hero,
.bywyou-top-chart .bywyou-top-chart-hero {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}
.bywyou-top-chart-hero::before,
.bywyou-top-chart-hero::after,
#community .bywyou-top-chart-hero::before,
#community .bywyou-top-chart-hero::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.bywyou-chart-list,
#community .bywyou-chart-list {
  border-top: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* BYWYOU v872 - fan cards no vertical entrance movement */
.bywyou-fan-card,
.bywyou-fan-slide,
.bywyou-community-fan-card,
.bywyou-community-fan-slide,
.fan-card,
.fan-slide,
.community-fan-card,
.community-fan-slide {
  transform: none !important;
  translate: none !important;
}

.bywyou-fan-card.is-active,
.bywyou-fan-slide.is-active,
.bywyou-community-fan-card.is-active,
.bywyou-community-fan-slide.is-active,
.fan-card.is-active,
.fan-slide.is-active,
.community-fan-card.is-active,
.community-fan-slide.is-active,
.bywyou-fan-card.active,
.bywyou-fan-slide.active,
.bywyou-community-fan-card.active,
.bywyou-community-fan-slide.active,
.fan-card.active,
.fan-slide.active,
.community-fan-card.active,
.community-fan-slide.active {
  transform: none !important;
  translate: none !important;
}

.bywyou-community-chart-section [class*="fan"],
.bywyou-community-chart-wrap [class*="fan"],
.bywyou-fans [class*="fan"],
.community-fans [class*="fan"] {
  transform: none !important;
  translate: none !important;
}

/* BYWYOU v875 - restore exact chart light sweep from preleva.zip */
.bywyou-community-chart-section {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}
.bywyou-community-chart-section::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  inset: -10% -18% -8% -18% !important;
  background: linear-gradient(100deg,
      transparent 0%,
      transparent 34%,
      rgba(58, 208, 255, .00) 40%,
      rgba(68, 217, 255, .18) 47%,
      rgba(183, 243, 255, .34) 50%,
      rgba(78, 205, 255, .16) 54%,
      transparent 62%,
      transparent 100%) !important;
  filter: blur(18px) saturate(135%) !important;
  opacity: .82 !important;
  mix-blend-mode: screen !important;
  animation: bywyouChartSweepLight786 7.5s ease-in-out infinite !important;
  will-change: transform, opacity !important;
  transform: translate3d(-72%, 0, 0) skewX(-10deg);
  box-shadow: none !important;
  border: 0 !important;
}
.bywyou-community-chart-section::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
  transform: translate3d(0,0,0);
  inset: -2% -8% 0 -8% !important;
  background: radial-gradient(ellipse at 50% 54%, rgba(48, 190, 255, .10), transparent 48%),
    radial-gradient(ellipse at 50% 78%, rgba(112, 72, 255, .08), transparent 54%) !important;
  filter: blur(28px) saturate(125%) !important;
  opacity: .38 !important;
  mix-blend-mode: screen !important;
  animation: none !important;
  box-shadow: none !important;
  border: 0 !important;
}
@keyframes bywyouChartSweepLight786 {
  0% { transform: translate3d(-72%, 0, 0) skewX(-10deg); opacity: 0; }
  12% { opacity: .26; }
  45% { opacity: .82; }
  72% { opacity: .28; }
  100% { transform: translate3d(72%, 0, 0) skewX(-10deg); opacity: 0; }
}
.bywyou-community-chart-section > *,
.bywyou-community-chart-wrap,
.bywyou-community-chart-head,
.bywyou-top-chart,
.bywyou-chart-list,
.bywyou-chart-spotify-slot,
.bywyou-community-socials {
  position: relative !important;
  z-index: 2 !important;
}
@media (max-width: 720px) {
  .bywyou-community-chart-section::before,
  .bywyou-community-chart-section::after {
    display: none !important;
    content: none !important;
    animation: none !important;
    opacity: 0 !important;
  }
}


/* BYWYOU v876 - original Instagram icon and adaptive mobile fan message height */
.bywyou-fan-social-instagram {
  color: #fff !important;
  background: radial-gradient(circle at 30% 108%, #fdf497 0 16%, #fdf497 18%, #fd5949 42%, #d6249f 62%, #285AEB 100%) !important;
}
.bywyou-fan-social-instagram .bywyou-instagram-original-icon {
  width: 62% !important;
  height: 62% !important;
  display: block !important;
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 1.85 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.bywyou-fan-social-instagram .bywyou-instagram-original-icon circle:last-child {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

@media (max-width: 720px) {
  .bywyou-fan-banner-slider.bywyou-card-fade {
    min-height: 0 !important;
    height: auto;
    transition: height .36s ease !important;
    overflow: visible !important;
  }
  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner,
  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner:not(.is-active) {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner.is-active {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .bywyou-fan-banner {
    height: auto !important;
    min-height: 0 !important;
    align-items: start !important;
  }
  .bywyou-fan-message {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    align-self: start !important;
  }
  .bywyou-fan-message p {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    white-space: normal !important;
    display: block !important;
    padding-top: 16px !important;
    padding-bottom: 18px !important;
  }
  .bywyou-fan-message p span,
  .bywyou-fan-message span {
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
}

/* BYWYOU v877 - compact mobile top menu height */
@media (max-width: 760px) {
  .no-footer-home .nav-v13,
  .nav.nav-v13,
  .topbar .nav,
  .nav {
    min-height: 64px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body {
    padding-top: 64px !important;
  }

  .bywyou-hero,
  .visual-hero,
  .empty-hero {
    margin-top: -64px !important;
  }

  .no-footer-home .brand-v13 img,
  .topbar .brand-v13 img,
  .topbar .brand img,
  .brand img {
    height: 34px !important;
    width: auto !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    right: 14px !important;
    border-radius: 14px !important;
  }

  .menu-toggle span {
    left: 11px !important;
    right: 11px !important;
  }

  .menu-toggle span:nth-child(1) { top: 13px !important; }
  .menu-toggle span:nth-child(2) { top: 20px !important; }
  .menu-toggle span:nth-child(3) { top: 27px !important; }
  .menu-toggle.is-open span:nth-child(1) { top: 20px !important; }
  .menu-toggle.is-open span:nth-child(3) { top: 20px !important; }

  .menu,
  .menu.menu-v13 {
    top: 72px !important;
  }
}

/* BYWYOU v878 - mobile top menu: compact container only, original logo and hamburger sizes */
@media (max-width: 760px) {
  .no-footer-home .nav-v13,
  .nav.nav-v13,
  .topbar .nav,
  .nav {
    min-height: 64px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body {
    padding-top: 64px !important;
  }

  .bywyou-hero,
  .visual-hero,
  .empty-hero {
    margin-top: -64px !important;
  }

  .topbar .brand img,
  .topbar .brand-v13 img,
  .no-footer-home .brand-v13 img,
  .brand img {
    height: 46px !important;
    max-width: 58vw !important;
    width: auto !important;
  }

  .menu-toggle {
    right: 4px !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 15px !important;
  }

  .menu-toggle span {
    left: 13px !important;
    right: 13px !important;
  }

  .menu-toggle span:nth-child(1) { top: 16px !important; }
  .menu-toggle span:nth-child(2) { top: 23px !important; }
  .menu-toggle span:nth-child(3) { top: 30px !important; }
  .menu-toggle.is-open span:nth-child(1) { top: 23px !important; }
  .menu-toggle.is-open span:nth-child(3) { top: 23px !important; }

  .menu,
  .menu.menu-v13 {
    top: 72px !important;
  }
}


/* BYWYOU v879 - mobile fan slider locked height: prevent chart jump */
@media (max-width: 720px) {
  .bywyou-fan-banner-slider.bywyou-card-fade {
    min-height: 390px !important;
    overflow: hidden !important;
    transition: opacity 1.15s ease, filter 1.15s ease !important;
  }

  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner,
  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner.is-active,
  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner:not(.is-active) {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .bywyou-fan-banner-slider.bywyou-card-fade .bywyou-fan-banner.is-active {
    position: absolute !important;
    inset: 0 !important;
  }

  .bywyou-community-chart-section .bywyou-top-chart {
    contain: layout paint;
  }
}
