/* ═══════════════════════════════════════════════════
   THE BLUE WAVE — style.css
   RayNoize / Mandela Records 2026
═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:        #04080f;
  --deep:        #060d1c;
  --blue-dark:   #08132b;
  --blue:        #0f2555;
  --wave:        #1456c8;
  --bright:      #1e72f0;
  --cyan:        #38a8ff;
  --cwflag-blue: #002B7F;
  --yellow:      #f5c518;
  --gold:        #d4a017;
  --gold-light:  #ffe066;
  --white:       #ffffff;
  --off-white:   #dce8f8;
  --gray:        #7a93bb;
  --gray-dark:   #3a4d6a;
  --red-accent:  #e02020;

  --card:        rgba(12,24,56,0.6);
  --card-border: rgba(30,114,240,0.18);
  --glass:       rgba(14,28,68,0.55);
  --glass-border:rgba(56,168,255,0.15);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(20,86,200,0.35);
  --t:           0.28s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Copy protection — light deterrent layer */
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
}
/* Allow selection/copy where needed */
input, textarea, select,
.allow-copy,
a[href^="mailto:"],
.copy-url,
.copy-toast,
code, pre {
  user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}
img { max-width: 100%; display: block; -webkit-user-drag: none; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--wave); border-radius: 3px; }
::selection { background: var(--wave); color: #fff; }

/* ── WAVE BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 15% 15%, rgba(20,86,200,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 85%, rgba(30,114,240,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(245,197,24,0.03) 0%, transparent 60%),
    linear-gradient(175deg, var(--deep) 0%, var(--navy) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── ANIMATED WAVES ── */
.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}
.wave-svg { width: 200%; animation: waveScroll 18s linear infinite; }
.wave-svg-slow { width: 200%; animation: waveScroll 28s linear infinite reverse; opacity: 0.5; }
@keyframes waveScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FLAG STRIPE ── */
.flag-stripe {
  height: 3px;
  background: linear-gradient(90deg,
    var(--cwflag-blue) 0%, var(--cwflag-blue) 40%,
    var(--yellow) 40%, var(--yellow) 60%,
    var(--cwflag-blue) 60%, var(--cwflag-blue) 100%);
}
.flag-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--wave), var(--yellow), transparent);
  opacity: 0.5;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.01em; font-weight: 800; }
h1 { font-size: clamp(2rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--off-white); max-width: 72ch; }
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cyan);
}
.accent { color: var(--yellow); }
.muted { color: var(--gray); }

/* ── LAYOUT ── */
.container { width: min(1200px, 92%); margin-inline: auto; position: relative; z-index: 1; }
section { padding: 5.5rem 0; position: relative; overflow: hidden; }
.section-alt { background: rgba(8,19,43,0.7); }
.section-blue { background: linear-gradient(180deg, rgba(20,86,200,0.06) 0%, transparent 100%); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,340px),1fr)); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr)); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,200px),1fr)); gap: 1.5rem; }
.flex-c { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.flex-b { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.section-head { margin-bottom: 3.5rem; }
.section-head p { margin-top: 0.75rem; color: var(--gray); }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: var(--t);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
  line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.btn-primary { background: var(--wave); color: #fff; }
.btn-primary:hover { background: var(--bright); transform: translateY(-2px); box-shadow: 0 10px 35px rgba(30,114,240,0.4); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid var(--wave); }
.btn-secondary:hover { background: var(--wave); transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--navy); font-weight: 800; }
.btn-yellow:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 35px rgba(245,197,24,0.35); }
.btn-ghost { background: rgba(255,255,255,0.07); color: #fff; border: 1px solid var(--glass-border); }
.btn-ghost:hover { background: rgba(255,255,255,0.13); border-color: var(--cyan); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-icon { width: 22px; height: 22px; flex-shrink: 0; }
.btn-icon img { width: 100%; height: 100%; object-fit: contain; }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wave), transparent);
  opacity: 0;
  transition: var(--t);
}
.card:hover { border-color: rgba(30,114,240,0.4); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.card:hover::before { opacity: 1; }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: var(--t);
}
header.scrolled {
  background: rgba(4,8,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.logo-sub {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.main-nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,0.07); }
.main-nav a.active { color: var(--yellow); }
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.lang-sw {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 3px;
  border: 1px solid var(--glass-border);
}
.lang-sw button {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  transition: var(--t);
  letter-spacing: 0.06em;
}
.lang-sw button.active, .lang-sw button:hover { background: var(--wave); color: #fff; }
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--glass-border);
  color: #fff;
  padding: 0.5rem;
  border-radius: 6px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: var(--t);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(4,8,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 199;
}
.mobile-menu a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: var(--t);
  border: 1px solid transparent;
}
.mobile-menu a:hover { color: #fff; border-color: var(--glass-border); background: rgba(255,255,255,0.05); }
.mobile-menu .lang-sw { margin-top: 1rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 140% 90% at 50% 70%, rgba(20,86,200,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(245,197,24,0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(4,8,15,0.2) 0%, rgba(4,8,15,0.8) 100%);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(20,86,200,0.15);
  border: 1px solid rgba(20,86,200,0.3);
  border-radius: 50px;
  padding: 0.4rem 1.1rem 0.4rem 0.6rem;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero-eyebrow-dot {
  width: 40px;
  height: 26px;
  border-radius: 3px;
  overflow: visible;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-eyebrow-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1px;
}
/* Curaçao flag utility classes */
.curacao-flag-icon {
  display: inline-block;
  width: 40px;
  height: 26px;
  border-radius: 3px;
  overflow: visible;
  object-fit: contain;
  vertical-align: middle;
}
.curacao-flag-round {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  vertical-align: middle;
  background: #002B7F;
}
.curacao-flag-round img,
.curacao-flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .line-yellow { color: var(--yellow); display: block; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--off-white);
  max-width: 54ch;
  margin-bottom: 0.75rem;
}
.hero-body { font-size: 0.95rem; color: var(--gray); max-width: 50ch; margin-bottom: 2rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stat-num { font-size: 1.6rem; font-weight: 900; color: var(--yellow); display: block; line-height: 1; }
.hero-stat-label { font-size: 0.7rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* ALBUM COVER VISUAL */
.hero-visual {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}
.album-cover-wrap {
  width: 320px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), var(--shadow-glow);
  animation: coverFloat 6s ease-in-out infinite;
}
@keyframes coverFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.album-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--wave) 50%, var(--blue) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.album-cover-ph-title {
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 1.5rem;
  line-height: 1.3;
}
.album-cover-ph-sub {
  font-size: 0.65rem;
  color: var(--yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.album-wave-deco {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  opacity: 0.3;
}
.hero-visual-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(245,197,24,0.4);
  white-space: nowrap;
}
.hero-visual-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(30,114,240,0.2);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}

/* ── STAT STRIP ── */
.stat-strip {
  background: rgba(8,19,43,0.8);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}
.stat-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  transition: var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(20,86,200,0.08); }
.stat-n { font-size: 1.8rem; font-weight: 900; color: var(--yellow); display: block; line-height: 1; }
.stat-l { font-size: 0.68rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }

/* ── INVITATION CARDS ── */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,200px),1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.inv-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--t);
}
.inv-card:hover { border-color: rgba(30,114,240,0.4); transform: translateY(-3px); }
.inv-icon {
  width: 40px;
  height: 40px;
  background: rgba(20,86,200,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.inv-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.15rem; }
.inv-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.4; }

/* ── PLATFORM CARDS ── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,220px),1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.platform-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,114,240,0.05), transparent);
  opacity: 0;
  transition: var(--t);
}
.platform-card:hover { border-color: rgba(30,114,240,0.5); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.platform-card:hover::before { opacity: 1; }
.platform-card.disabled { opacity: 0.45; pointer-events: none; cursor: default; }
.platform-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.platform-icon img { width: 100%; height: 100%; object-fit: contain; }
.platform-info { flex: 1; min-width: 0; }
.platform-name { display: block; font-weight: 700; font-size: 0.92rem; }
.platform-cta { font-size: 0.73rem; color: var(--gray); font-weight: 500; }
.platform-soon { font-size: 0.62rem; background: rgba(255,255,255,0.08); border-radius: 4px; padding: 1px 6px; color: var(--gray); margin-left: auto; flex-shrink: 0; }
.platform-arrow { color: var(--gray); font-size: 0.8rem; margin-left: auto; transition: var(--t); }
.platform-card:hover .platform-arrow { color: var(--cyan); transform: translateX(3px); }

/* Smart link style (big cards) */
.smart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,300px),1fr));
  gap: 1rem;
}
.smart-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.smart-card::after {
  content: '→';
  position: absolute;
  right: 1.5rem;
  color: var(--gray);
  font-size: 1.1rem;
  transition: var(--t);
}
.smart-card:hover { border-color: rgba(30,114,240,0.5); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.smart-card:hover::after { color: var(--cyan); transform: translateX(4px); }
.smart-card .platform-icon { width: 48px; height: 48px; }
.smart-card-name { font-size: 1.05rem; font-weight: 800; display: block; }
.smart-card-sub { font-size: 0.8rem; color: var(--gray); }

/* ── FEATURED RELEASE CARDS ── */
.release-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
}
.release-card:hover { border-color: rgba(30,114,240,0.4); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.release-artwork {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.release-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t);
}
.release-card:hover .release-artwork img { transform: scale(1.04); }
.release-artwork-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.release-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,8,15,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.release-body { padding: 1.5rem; }
.release-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}
.release-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.25rem; line-height: 1.2; }
.release-sub { font-size: 0.78rem; color: var(--yellow); margin-bottom: 0.75rem; font-style: italic; }
.release-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.55; margin-bottom: 1.25rem; }
.release-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ── TRACKLIST ── */
.track-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--t);
  cursor: pointer;
}
.track-item:hover { background: var(--card); border-color: var(--card-border); }
.track-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-dark);
  text-align: center;
  font-variant-numeric: tabular-nums;
  transition: var(--t);
}
.track-item:hover .track-num { color: var(--yellow); }
.track-title { font-weight: 700; font-size: 0.97rem; margin-bottom: 0.25rem; transition: var(--t); }
.track-item:hover .track-title { color: var(--yellow); }
.track-sub { font-size: 0.78rem; color: var(--cyan); margin-bottom: 0.3rem; font-style: italic; }
.track-meta { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.35rem; }
.track-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.tag-lang { background: rgba(20,86,200,0.25); color: var(--cyan); }
.tag-mood { background: rgba(245,197,24,0.1); color: var(--yellow); }
.tag-feat { background: rgba(56,168,255,0.12); color: #fff; border: 1px solid rgba(56,168,255,0.2); }
.track-btn {
  opacity: 0;
  transition: var(--t);
  text-decoration: none;
}
.track-item:hover .track-btn { opacity: 1; }

/* ── EMBED ── */
.embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(20,40,90,0.3);
  border: 1px solid var(--card-border);
  margin-bottom: 1.5rem;
}
.embed-wrap iframe { display: block; width: 100%; border: none; }

/* ── WE ARE 26 ── */
.we26-hero-block {
  background: linear-gradient(135deg, rgba(20,86,200,0.18) 0%, rgba(8,19,43,0.9) 100%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.we26-bg-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(14rem, 28vw, 22rem);
  font-weight: 900;
  color: rgba(20,86,200,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.we26-num {
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 0 0 80px rgba(245,197,24,0.3), 0 0 30px rgba(245,197,24,0.5);
  display: block;
  position: relative;
  z-index: 1;
}
.we26-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ── PRESS KIT ── */
.press-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--glass-border); }
.press-section:last-child { border-bottom: none; }
.press-body {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.75;
  white-space: pre-wrap;
  max-width: 80ch;
}
.facts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,220px),1fr)); gap: 1rem; }
.fact-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.fact-key { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.3rem; }
.fact-val { font-size: 0.9rem; color: #fff; font-weight: 600; line-height: 1.4; }

/* ── DOWNLOADS ── */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,240px),1fr)); gap: 1rem; }
.dl-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--t);
}
.dl-card:hover { border-color: var(--wave); background: rgba(20,86,200,0.12); transform: translateY(-2px); }
.dl-icon {
  width: 40px;
  height: 40px;
  background: rgba(20,86,200,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── MATCH STRIP ── */
.match-list { display: flex; flex-direction: column; gap: 0.75rem; }
.match-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(20,86,200,0.08);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: var(--t);
}
.match-item:hover { border-color: rgba(20,86,200,0.3); background: rgba(20,86,200,0.13); }
.match-date { font-size: 0.75rem; color: var(--gray); white-space: nowrap; }
.match-teams { font-weight: 700; color: #fff; }
.match-venue { font-size: 0.8rem; color: var(--cyan); margin-left: auto; }

/* ── CONTACT ── */
.contact-wrap { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--off-white); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  transition: var(--t);
  font-family: inherit;
  appearance: auto;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-dark); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--wave);
  background: rgba(20,86,200,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--deep); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-notice {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--wave);
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.25rem;
}

/* ── DISCLAIMER BOX ── */
.disclaimer {
  border: 1px solid rgba(20,86,200,0.25);
  background: rgba(20,86,200,0.07);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.55;
  margin-top: 2rem;
}
.disclaimer strong { color: var(--cyan); display: block; margin-bottom: 0.25rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── COPY LINK ── */
.copy-btn-wrap { position: relative; display: inline-flex; align-items: center; gap: 0.75rem; }
.copy-toast {
  display: none;
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wave);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
}
.copy-toast::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--wave);
}
.copy-toast.show { display: block; animation: fadeUp .4s ease; }

/* ── SOCIAL LINKS ── */
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  transition: var(--t);
}
.social-btn:hover { border-color: var(--wave); background: rgba(20,86,200,0.15); transform: translateY(-2px); }
.social-icon-sm { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-icon-sm img { width: 100%; height: 100%; object-fit: contain; }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--glass-border);
  padding: 4.5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}
.footer-flag { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cwflag-blue), var(--yellow), var(--cwflag-blue)); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand p { font-size: 0.87rem; color: var(--gray); max-width: 28ch; margin-top: 0.75rem; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.87rem;
  margin-bottom: 0.6rem;
  transition: var(--t);
}
.footer-col a:hover { color: #fff; }
.footer-col a:focus-visible { outline: 2px solid var(--cyan); border-radius: 3px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-soc-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--t);
}
.footer-soc-btn img { width: 18px; height: 18px; object-fit: contain; }
.footer-soc-btn:hover { background: var(--wave); border-color: var(--wave); transform: translateY(-2px); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--glass-border); }
.footer-bottom p { font-size: 0.78rem; color: var(--gray); max-width: none; }

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── DIVIDER ── */
.wave-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wave), var(--yellow), var(--wave), transparent);
  border: none;
  margin: 0;
  opacity: 0.3;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MINI PLAYER STRIP ── */
.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(6,13,28,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: var(--t);
}
.mini-player.show { transform: translateY(0); }
.mini-player-info { display: flex; align-items: center; gap: 0.75rem; }
.mini-player-album { width: 40px; height: 40px; border-radius: 6px; background: var(--wave); flex-shrink: 0; }
.mini-player-text .title { font-size: 0.85rem; font-weight: 700; }
.mini-player-text .sub { font-size: 0.72rem; color: var(--gray); }
.mini-player-close { background: none; border: none; color: var(--gray); font-size: 1.3rem; cursor: pointer; padding: 0.25rem; transition: var(--t); }
.mini-player-close:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 0; }
  .hero-visual { display: none; }
  section { padding: 3.5rem 0; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap { padding: 1.75rem; }
  .we26-hero-block { padding: 3rem 1.5rem; }
  .track-item { grid-template-columns: 36px 1fr; }
  .track-btn { display: none; }
}
@media (max-width: 480px) {
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--glass-border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--glass-border); }
}

/* ══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(7, 20, 40, 0.97);
  border-top: 1px solid rgba(56, 168, 255, 0.2);
  z-index: 9999;
  padding: 1.1rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  backdrop-filter: blur(10px);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.82rem; color: var(--gray); flex: 1; margin: 0; min-width: 240px; line-height: 1.5; }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap; }
.footer-cookie-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}
.footer-cookie-btn:hover { color: var(--cyan); }

/* ══════════════════════════════════════════════════════
   EMBED PLACEHOLDERS (consent-gated)
══════════════════════════════════════════════════════ */
.embed-consent-wrap { margin-bottom: 1.5rem; }
.embed-placeholder {
  background: rgba(20, 86, 200, 0.07);
  border: 1px solid rgba(56, 168, 255, 0.15);
  border-radius: 12px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}
.embed-ph-inner {
  text-align: center;
  max-width: 380px;
}
.embed-ph-inner img { margin-bottom: 1rem; opacity: 0.7; }
.embed-ph-inner p { color: var(--off-white); font-weight: 600; margin: 0 0 0.25rem; }
.embed-ph-note { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* ══════════════════════════════════════════════════════
   COACH TRIBUTE CARD
══════════════════════════════════════════════════════ */
.coach-section { position: relative; }
.coach-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  flex-wrap: wrap;
}
.coach-visual {
  flex-shrink: 0;
  position: relative;
}
.coach-visual img {
  border-radius: 10px;
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.coach-photo-note {
  font-size: 0.7rem;
  color: var(--gray-dark);
  margin-top: 0.4rem;
  font-style: italic;
}
.coach-body { flex: 1; min-width: 240px; }
.coach-sub { color: var(--cyan); font-size: 0.92rem; margin: 0.25rem 0 1rem; }
.coach-quote {
  border-left: 3px solid var(--wave);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--off-white);
  font-style: italic;
}
.coach-tracks {
  background: rgba(20, 86, 200, 0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}
.disclaimer-sm {
  font-size: 0.75rem;
  color: var(--gray-dark);
  line-height: 1.5;
  border-left: 2px solid var(--glass-border);
  padding-left: 0.75rem;
}
@media (max-width: 600px) {
  .coach-card { flex-direction: column; }
  .coach-visual img { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════
   SHARE BUTTONS
══════════════════════════════════════════════════════ */
.share-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--t);
  font-family: inherit;
  letter-spacing: 0.01em;
}
.share-wa  { background: #25d366; color: #fff; }
.share-wa:hover  { background: #1ebe5d; }
.share-fb  { background: #1877f2; color: #fff; }
.share-fb:hover  { background: #0f6cd4; }
.share-x   { background: #000; color: #fff; border: 1px solid #333; }
.share-x:hover   { background: #111; }
.share-li  { background: #0a66c2; color: #fff; }
.share-li:hover  { background: #0958a8; }
.share-copy { background: var(--glass); color: var(--off-white); border: 1px solid var(--glass-border); }
.share-copy:hover { border-color: var(--cyan); color: var(--cyan); }
.copy-toast-global {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--wave);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9000;
  white-space: nowrap;
}
.copy-toast-global.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════════════
   QR CODE SECTION
══════════════════════════════════════════════════════ */
.qr-section { margin-top: 2rem; }
.qr-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  justify-content: flex-start;
}
.qr-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.qr-card img { border-radius: 6px; border: 3px solid #fff; display: block; }
.qr-cap { font-size: 0.8rem; color: var(--gray); }
.qr-url { font-size: 0.78rem; color: var(--cyan); font-weight: 600; letter-spacing: 0.01em; }

/* ══════════════════════════════════════════════════════
   EPK SNAPSHOT
══════════════════════════════════════════════════════ */
.epk-snapshot {
  background: rgba(20, 86, 200, 0.06);
  border: 1px solid rgba(56, 168, 255, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════════════════
   PRESS ANGLE BLOCK
══════════════════════════════════════════════════════ */
.press-angle-block {
  background: rgba(245, 197, 24, 0.04);
  border-left: 3px solid var(--yellow);
  padding-left: 1.5rem;
}
.press-angle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.press-angle-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.93rem;
  color: var(--off-white);
  line-height: 1.5;
}
.press-angle-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   DJ / RADIO SECTION
══════════════════════════════════════════════════════ */
.dj-radio-section { border-top: 1px solid var(--glass-border); padding-top: 2rem; }

/* ══════════════════════════════════════════════════════
   DOWNLOAD CARDS — REQUEST STYLE
══════════════════════════════════════════════════════ */
.dl-request {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  cursor: default;
}
.dl-request .dl-icon {
  color: var(--gray);
}
.dl-request:hover { border-color: rgba(56, 168, 255, 0.3); }

/* ══════════════════════════════════════════════════════
   INV CARD — SVG ICONS (no emoji)
══════════════════════════════════════════════════════ */
.inv-icon-svg {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(20, 86, 200, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.inv-card { display: flex; align-items: center; gap: 0.9rem; }

/* ══════════════════════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════════════════════ */
#page-privacy h3 { color: var(--yellow); margin-bottom: 0.5rem; }

/* ══════════════════════════════════════════════════════
   PHOTO FALLBACK ICON
══════════════════════════════════════════════════════ */
.photo-fallback-icon {
  position: relative;
  z-index: 0;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.has-photo .photo-fallback-icon {
  display: none;
}

/* ══════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wave);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(20, 86, 200, 0.5);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background 0.2s, bottom 0.25s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--bright); }
.back-to-top:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* Shift up when sticky elements are visible */
body.has-mini-player .back-to-top            { bottom: 6rem; }
body.has-cookie-banner .back-to-top          { bottom: 8rem; }
body.has-mini-player.has-cookie-banner .back-to-top { bottom: 11rem; }

@media (max-width: 768px) {
  .back-to-top {
    right: 1rem;
    bottom: 1.5rem;
    width: 40px;
    height: 40px;
  }
  body.has-mini-player .back-to-top            { bottom: 6.5rem; }
  body.has-cookie-banner .back-to-top          { bottom: 9rem; }
  body.has-mini-player.has-cookie-banner .back-to-top { bottom: 12rem; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .share-row { gap: 0.5rem; }
  .share-btn span { display: none; }
  .share-btn { padding: 0.65rem; }
  .qr-row { justify-content: center; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .coach-card { padding: 1.25rem; }
}
