/* ===================================================
   Bubble Tickets — Stylesheet (Premium edition)
   =================================================== */

:root {
  --pink: #fd3b3c;        /* primary red */
  --purple: #d11f2f;      /* deep red (gradient companion) */
  --deep: #8c0d22;        /* darkest red */
  --gold: #D49A2A;        /* subtle warm accent */
  --bg: #fffaf3;          /* warm near-white background */
  --ink: #2A1A18;
  --muted: #7c6f63;
  --white: #ffffff;       /* card surface */
  --border: #f1e4db;      /* soft warm border */

  --grad-brand: linear-gradient(135deg, #fd3b3c 0%, #d11f2f 100%);
  /* clean, light hero with a faint red blush */
  --grad-hero: linear-gradient(165deg, #fffaf3 0%, #fff2ec 45%, #ffe7e0 100%);
  /* red → gold → deep red, used for fine title accents */
  --grad-title: linear-gradient(95deg, #fd3b3c 0%, #D49A2A 50%, #d11f2f 100%);
  /* dramatic red band for feature sections */
  --grad-band: linear-gradient(150deg, #fd3b3c 0%, #d11f2f 55%, #8c0d22 100%);

  --radius: 20px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 20px rgba(94, 26, 62, 0.08);
  --shadow-md: 0 10px 34px rgba(94, 26, 62, 0.14);
  --shadow-lg: 0 22px 60px rgba(94, 26, 62, 0.24);

  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image: radial-gradient(rgba(253, 59, 60, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="zh"] body { font-family: 'Noto Sans SC', 'Inter', 'Microsoft YaHei', sans-serif; }

img { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

/* shared noise texture overlay */
.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================================================
   Intro loader
   =================================================== */
.loader {
  position: fixed; inset: 0; z-index: 300;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  background: var(--bg);
  animation: loaderOut .7s ease 1.5s forwards;
}
.loader-logo { height: 64px; width: auto; border-radius: 12px; animation: loaderPop .6s cubic-bezier(.2,.8,.2,1.2) both; }
.loader-ring {
  width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid rgba(253, 59, 60, 0.2); border-top-color: var(--pink);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderPop { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: scale(1); } }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .5s ease; }

/* ===================================================
   Announcement bar
   =================================================== */
.announce {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--grad-brand); color: #fff;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 7px 44px 7px 16px; text-align: center;
  transition: transform .4s ease;
}
.announce.hide { transform: translateY(-100%); }
.announce-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; cursor: pointer;
  font-size: 0.9rem; line-height: 1; opacity: 0.75; transition: opacity .2s ease;
}
.announce-close:hover { opacity: 1; }

/* ===================================================
   Navbar
   =================================================== */
.navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, top .4s ease;
}
.navbar.scrolled, .navbar.no-announce { top: 0; }
.navbar.scrolled {
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(94, 26, 62, 0.1);
  padding: 10px 0;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo {
  height: 58px; width: auto; max-width: 240px; object-fit: contain;
  border-radius: 12px; flex-shrink: 0; transition: height .3s ease;
}
.navbar.scrolled .brand-logo { height: 46px; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  color: var(--ink); transition: color .2s ease, opacity .2s ease;
}
.nav-links a:hover { opacity: 0.6; color: var(--pink); }
.nav-cta {
  background: var(--grad-brand); color: #fff !important;
  padding: 9px 20px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(253, 59, 60, 0.4);
}
.nav-cta:hover { opacity: 1 !important; transform: translateY(-1px); }

/* language toggle */
.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 999px;
  overflow: hidden; background: rgba(255,255,255,0.6); cursor: pointer;
  font-family: inherit; padding: 0;
}
.lang-toggle span {
  padding: 6px 12px; font-size: 0.82rem; font-weight: 700;
  color: var(--muted); transition: background .2s ease, color .2s ease;
}
.lang-toggle span.active { background: var(--grad-brand); color: #fff !important; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--grad-hero);
  overflow: hidden; padding: 130px 24px 90px;
}
/* concert backdrop — kept as a faint warm band at the base, fading up into the cream.
   If the image fails to load, the gradient above remains — graceful fallback. */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?auto=format&fit=crop&w=1920&q=80");
  background-size: cover; background-position: center;
  opacity: 0.16; mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 62%);
  mask-image: linear-gradient(to top, #000 0%, transparent 62%);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.16); } }

/* stage spotlight beams */
.spotlights { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.beam {
  position: absolute; top: -30%; left: 50%;
  width: 40vw; height: 150vh;
  background: linear-gradient(to bottom, rgba(212, 154, 42, 0.22), rgba(212, 154, 42, 0));
  filter: blur(30px); transform-origin: top center;
}
.beam-l { transform: translateX(-120%) rotate(18deg); animation: sway1 9s ease-in-out infinite; }
.beam-r { transform: translateX(20%) rotate(-18deg); animation: sway2 11s ease-in-out infinite; }
@keyframes sway1 { 0%,100% { transform: translateX(-120%) rotate(14deg);} 50% { transform: translateX(-120%) rotate(24deg);} }
@keyframes sway2 { 0%,100% { transform: translateX(20%) rotate(-14deg);} 50% { transform: translateX(20%) rotate(-24deg);} }

/* orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.32; animation: float 14s ease-in-out infinite; }
.orb-1 { width: 460px; height: 460px; background: #ff9b8f; top: -90px; left: -70px; }
.orb-2 { width: 380px; height: 380px; background: #ffc7a0; bottom: -110px; right: -50px; animation-delay: -4s; }
.orb-3 { width: 320px; height: 320px; background: #ff8f8f; top: 40%; left: 55%; opacity: 0.24; animation-delay: -8s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(30px,-30px) scale(1.08);} }

/* particles — soft warm motes drifting upward */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; background: #fd3b3c; border-radius: 50%; opacity: 0; animation: rise linear infinite; box-shadow: 0 0 6px rgba(253, 59, 60, 0.5); }
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.45; } 90% { opacity: 0.25; }
  100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

.hero-content { position: relative; z-index: 3; max-width: 880px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px; color: var(--pink); font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge svg path:first-child { fill: var(--pink); }
.hero-badge svg path:last-child { fill: #fff; }

/* giant gradient title */
.hero-title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(3.4rem, 13vw, 7.5rem); line-height: 1.02;
  margin-top: 22px; letter-spacing: -0.01em;
  filter: drop-shadow(0 8px 26px rgba(253, 59, 60, 0.22));
}
.hero-title .ltr {
  display: inline-block; color: var(--pink);
  opacity: 0; transform: translateY(40px);
  animation: letterIn .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .ltr.space { width: 0.3em; }
@keyframes letterIn { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: clamp(0.95rem, 2.6vw, 1.35rem); color: var(--muted);
  margin-top: 18px; letter-spacing: 0.26em; text-transform: uppercase;
}

/* frosted highlight card */
.hero-glass {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 30px; padding: 18px 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 20px; box-shadow: var(--shadow-md);
}
.glass-icon { font-size: 2.2rem; }
.glass-num .stat-num {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 2.4rem; line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.glass-label { color: var(--muted); font-size: 0.9rem; font-weight: 600; text-align: left; }
.glass-spark { font-size: 1.4rem; animation: twinkle 2.4s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.4; transform: scale(0.8);} }

.hero-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  position: relative; overflow: hidden;
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 1rem;
  padding: 16px 38px; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary {
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 10px 30px rgba(253, 59, 60, 0.4);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 10px 28px rgba(253,59,60,0.35); }
  50% { box-shadow: 0 12px 40px rgba(253,59,60,0.6); }
}
.btn-primary:hover { transform: translateY(-3px) scale(1.05); }
.btn-ghost { background: #fff; color: var(--pink); border: 1.5px solid var(--pink); }
.btn-ghost:hover { background: var(--pink); color: #fff; transform: translateY(-3px); }

/* ripple */
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,0.5); animation: rippleAnim .6s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(3); opacity: 0; } }

.hero-flags { margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero-flags img { height: 22px; width: auto; border-radius: 3px; box-shadow: 0 2px 8px rgba(94,26,62,0.18); transition: transform .2s ease; }
.hero-flags img:hover { transform: translateY(-3px) scale(1.1); }

/* scroll cue */
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(209,31,47,0.45); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--pink); border-radius: 2px; animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0);} 40% { opacity: 1;} 80% { opacity: 0; transform: translateY(12px);} 100% { opacity: 0; } }

.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 130px; background: linear-gradient(to top, var(--bg), transparent); z-index: 2; }

/* ===================================================
   Stats
   =================================================== */
.stats { padding: 72px 0; margin-top: -20px; position: relative; z-index: 4; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 20px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-brand); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-num {
  display: inline-block;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1.1;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-num.pop { animation: numPop .4s cubic-bezier(.2,.8,.2,1.4); }
@keyframes numPop { 0% { transform: scale(1);} 50% { transform: scale(1.14);} 100% { transform: scale(1);} }
.stat-label { margin-top: 6px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }

/* ===================================================
   Sections
   =================================================== */
.section { position: relative; padding: 90px 0; }
.section-alt { background: linear-gradient(180deg, #ffffff 0%, #fff0ea 100%); }
.section-dark {
  background: var(--grad-band);
  overflow: hidden;
  border-radius: 48px;
  box-shadow: 0 30px 80px rgba(94, 26, 62, 0.22);
  margin: 18px 0;
}
@media (max-width: 560px) { .section-dark { border-radius: 32px; } }

.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; font-size: 0.8rem;
  color: var(--purple); margin-bottom: 10px;
}
/* decorative flanking lines, adapt to the eyebrow's text color */
.eyebrow::before, .eyebrow::after { content: ""; width: 30px; height: 2px; border-radius: 2px; opacity: 0.55; }
.eyebrow::before { background: linear-gradient(90deg, transparent, currentColor); }
.eyebrow::after  { background: linear-gradient(90deg, currentColor, transparent); }

/* editorial section numbers (injected by JS, sit above each eyebrow) */
.sec-no {
  display: block; text-align: center;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.18em; color: var(--pink);
  opacity: 0.55; margin-bottom: 6px;
}
.section-dark .sec-no { color: #ffd9a0; opacity: 0.8; }
.eyebrow-light { color: #ffd9a0; position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 8px; }
.section-title {
  font-family: 'Poppins', sans-serif; text-align: center; font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.7rem); letter-spacing: -0.02em; line-height: 1.15;
  color: var(--pink); position: relative; z-index: 2;
}
.section-title.title-light { color: #fff; }
.section-title::after { content: ""; display: block; width: 68px; height: 4px; margin: 16px auto 0; border-radius: 999px; background: var(--grad-brand); }
.section-title.title-light::after { background: linear-gradient(95deg, #ffd9a0, #fff, #ffd9a0); }
.section-lead { text-align: center; color: var(--muted); max-width: 620px; margin: 16px auto 0; font-size: 1.08rem; position: relative; z-index: 2; }
.section-dark .section-lead { color: rgba(255,255,255,0.78); }

/* ===================================================
   Trending Artists
   =================================================== */
.artist-scroll { margin-top: 46px; overflow-x: auto; padding: 10px 0 24px; -webkit-overflow-scrolling: touch; }
.artist-scroll::-webkit-scrollbar { height: 8px; }
.artist-scroll::-webkit-scrollbar-thumb { background: rgba(209,31,47,0.25); border-radius: 999px; }
.artist-row { display: flex; gap: 22px; padding: 0 24px; width: max-content; margin: 0 auto; }
.artist-card {
  flex: 0 0 auto; width: 180px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  text-decoration: none; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 18px; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease; transform-style: preserve-3d;
}
.artist-card:hover { box-shadow: var(--shadow-lg); }
.artist-ava {
  width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: 0 10px 26px rgba(0,0,0,0.18); margin-bottom: 14px;
}
.artist-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.artist-tag { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }

/* ===================================================
   Why (dark glass)
   =================================================== */
.why-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 2; }
.glass-card {
  position: relative; padding: 32px 24px; border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.28); text-align: center;
  transition: box-shadow .25s ease; transform-style: preserve-3d; overflow: hidden;
}
/* gradient ring on top edge */
.glass-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(255,217,160,0.9), rgba(255,255,255,0.2)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.6; }
.glass-card:hover { box-shadow: 0 26px 60px rgba(0,0,0,0.3); }
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; font-size: 1.8rem;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06), 0 0 30px rgba(253,59,60,0.4);
  margin-bottom: 16px;
}
.glass-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.18rem; color: #fff; margin-bottom: 8px; }
.glass-card p { color: rgba(255,255,255,0.78); font-size: 0.94rem; }

/* ===================================================
   Features (About)
   =================================================== */
.feature-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon { width: 58px; height: 58px; border-radius: 16px; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(253,59,60,0.3); }
.feature-icon svg { width: 30px; height: 30px; fill: #fff; }
.feature-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.25rem; margin: 20px 0 8px; color: var(--pink); }
.feature-card p { color: var(--muted); }

.pay-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.03em; color: var(--purple); background: rgba(209,31,47,0.07); border: 1px solid rgba(209,31,47,0.16); padding: 5px 11px; border-radius: 999px; }

/* ===================================================
   How It Works
   =================================================== */
.steps { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.4rem; box-shadow: 0 8px 20px rgba(209,31,47,0.32); margin-bottom: 16px; }
.step h3 { font-family: 'Poppins', sans-serif; font-size: 1.12rem; margin-bottom: 8px; color: var(--pink); }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ===================================================
   Live Stats
   =================================================== */
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ffe3a0; box-shadow: 0 0 10px #ffd9a0; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1;} 50% { opacity: 0.3;} }
.live-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.live-card {
  text-align: center; padding: 40px 24px; border-radius: var(--radius);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.live-num {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2.6rem, 6vw, 3.8rem); line-height: 1;
  background: linear-gradient(135deg, #ffe9c2, #ffd9a0);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transition: transform .3s ease;
}
.live-num.tick { transform: scale(1.12); }
.live-label { margin-top: 12px; color: rgba(255,255,255,0.82); font-weight: 500; }

/* ===================================================
   Wall of Love (masonry)
   =================================================== */
.masonry { margin-top: 48px; columns: 3; column-gap: 22px; }
.love-card {
  break-inside: avoid; margin-bottom: 22px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.love-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.love-card blockquote { margin: 12px 0 16px; font-size: 1rem; color: var(--ink); font-style: italic; }
.love-card figcaption { display: flex; align-items: center; gap: 11px; }
.love-card figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.love-card figcaption b { font-weight: 700; font-size: 0.95rem; }
.love-card figcaption i { font-style: normal; font-size: 0.82rem; color: var(--muted); }
.avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, var(--c1), var(--c2)); }
.testi-note { text-align: center; margin-top: 24px; color: var(--muted); font-size: 0.88rem; font-style: italic; }

/* ===================================================
   Contact / CTA
   =================================================== */
.cta-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cta-card {
  display: flex; flex-direction: column; align-items: flex-start; text-decoration: none;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, border-color .25s ease; transform-style: preserve-3d;
}
.cta-card:hover { box-shadow: var(--shadow-lg); border-color: var(--pink); }
.cta-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.cta-icon svg { width: 30px; height: 30px; fill: #fff; }
.ic-wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.ic-tg { background: linear-gradient(135deg, #2AABEE, #229ED9); }
.ic-fb { background: linear-gradient(135deg, #1877F2, #0a5dc2); }
.ic-x  { background: linear-gradient(135deg, #1a1a1a, #444); }
.cta-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.16rem; color: var(--pink); }
.cta-card p { color: var(--muted); font-size: 0.94rem; margin-top: 4px; }
.cta-link { margin-top: 16px; font-weight: 700; color: var(--pink); font-size: 0.95rem; }

/* ===================================================
   FAQ
   =================================================== */
.faq { margin-top: 44px; display: flex; flex-direction: column; gap: 14px; }
.faq details { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 4px 24px; box-shadow: var(--shadow-sm); transition: border-color .2s ease; }
.faq details[open] { border-color: var(--pink); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--pink); transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 20px; color: var(--muted); }
.faq strong { color: var(--ink); }

/* ===================================================
   Footer
   =================================================== */
.footer { background: #1a0a14; color: rgba(255,255,255,0.78); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.brand-logo-footer { height: 54px; border-radius: 12px; }
.footer-brand p { margin-top: 14px; font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.94rem; margin-bottom: 10px; transition: color .2s ease; }
.footer-col a:hover { color: #fd3b3c; }
.trust-badge { display: block; margin-bottom: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.warning { border: 1px solid rgba(212,154,42,0.4); background: rgba(212,154,42,0.1); border-radius: 14px; padding: 16px 22px; font-size: 0.92rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.warning strong { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 0.86rem; color: rgba(255,255,255,0.55); }
.footer-bottom .privacy { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom .privacy:hover { color: #fd3b3c; }

/* ===================================================
   Marquee
   =================================================== */
.marquee-band { background: linear-gradient(180deg, #ffffff 0%, #fff0ea 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
.marquee-title { text-align: center; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; color: var(--muted); margin-bottom: 16px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; white-space: nowrap; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.85; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ===================================================
   Ticket-tear divider (brand motif)
   =================================================== */
.ticket-divider {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  max-width: 980px; margin: 0 auto; padding: 8px 40px;
}
.ticket-divider::before, .ticket-divider::after {
  content: ""; flex: 1; height: 0;
  border-top: 1.5px dashed rgba(253, 59, 60, 0.35);
}
.td-mark {
  flex: 0 0 auto; width: 12px; height: 12px; border-radius: 2px;
  background: var(--grad-brand); transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(253, 59, 60, 0.08);
}

/* ===================================================
   Back to top
   =================================================== */
.to-top {
  position: fixed; right: 22px; bottom: 90px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff; color: var(--pink);
  cursor: pointer; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease, color .2s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.to-top svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 560px) { .to-top { right: 16px; bottom: 84px; } }

/* ===================================================
   Newsletter
   =================================================== */
.newsletter { padding: 30px 0 70px; }
.newsletter-card {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px;
  background: var(--grad-band);
  border-radius: var(--radius-lg); padding: 42px 44px;
  box-shadow: 0 24px 60px rgba(94, 26, 62, 0.28);
}
.newsletter-card::after {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,154,42,0.45), transparent 70%);
  pointer-events: none;
}
.newsletter-text { position: relative; z-index: 2; }
.newsletter-text h3 { font-family: 'Poppins', sans-serif; font-size: clamp(1.3rem, 3vw, 1.7rem); color: #fff; }
.newsletter-text p { color: rgba(255,255,255,0.82); margin-top: 6px; max-width: 420px; }
.newsletter-form { position: relative; z-index: 2; display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1 1 220px; min-width: 0;
  padding: 14px 18px; border-radius: 999px; border: none;
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  background: #fff; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.newsletter-form input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.newsletter-form button {
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--pink); background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.25); }
.newsletter-done { position: relative; z-index: 2; width: 100%; color: #fff; font-weight: 700; text-align: center; }
@media (max-width: 700px) {
  .newsletter-card { flex-direction: column; align-items: stretch; text-align: center; padding: 34px 26px; }
  .newsletter-text p { max-width: none; }
  .newsletter-form { justify-content: center; }
}

/* ===================================================
   Scroll progress bar
   =================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0;
  background: var(--grad-title);
  box-shadow: 0 0 10px rgba(253, 59, 60, 0.6);
  transition: width .08s linear;
}

/* ===================================================
   Trending carousel arrows
   =================================================== */
.artist-wrap { position: relative; margin-top: 46px; }
.artist-wrap .artist-scroll { margin-top: 0; }
.artist-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  color: var(--pink); font-size: 1.7rem; line-height: 1; font-weight: 700;
  cursor: pointer; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.artist-nav:hover { transform: translateY(-50%) scale(1.1); box-shadow: var(--shadow-lg); }
.artist-nav.prev { left: 6px; }
.artist-nav.next { right: 6px; }
.artist-nav span { pointer-events: none; }
@media (max-width: 768px) { .artist-nav { display: none; } }

/* ===================================================
   Floating WhatsApp CTA
   =================================================== */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  display: inline-flex; align-items: center; gap: 0;
  height: 58px; padding: 0 17px; border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.5);
  opacity: 0; transform: translateY(20px) scale(0.9); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, gap .25s ease, padding .25s ease;
}
.float-wa.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-wa svg { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
.float-wa-label { max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0; transition: max-width .25s ease, opacity .25s ease; }
.float-wa:hover { gap: 9px; }
.float-wa:hover .float-wa-label { max-width: 140px; opacity: 1; }
.float-wa::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }
@media (max-width: 560px) { .float-wa { right: 16px; bottom: 16px; } }

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .steps, .cta-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 20px 80px; }
  .hero-sub { letter-spacing: 0.18em; }
  .live-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats-grid, .feature-grid, .steps, .cta-grid, .why-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-glass { flex-direction: column; gap: 8px; text-align: center; }
  .glass-label { text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .orb, .particle, .beam, .marquee-track, .btn-primary, .glass-spark, .live-dot, .scroll-cue span, .hero-bg, .float-wa::before { animation: none !important; }
  .hero-title .ltr { opacity: 1; transform: none; animation: none; }
  html { scroll-behavior: auto; }
}
