/* ============================================================
   VTRO SOUND – LANDING PAGE STYLES
   ============================================================ */

/* ---- Kayak Sans Font Face ---- */
@font-face {
  font-family: 'Kayak Sans';
  src: url('kayak-sans/Kayak-Sans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kayak Sans';
  src: url('kayak-sans/Kayak-Sans-Regular-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Kayak Sans';
  src: url('kayak-sans/Kayak-Sans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kayak Sans';
  src: url('kayak-sans/Kayak Sans Light (Italic).otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Kayak Sans';
  src: url('kayak-sans/Kayak Sans Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kayak Sans';
  src: url('kayak-sans/Kayak-Sans-Bold-Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---- Reset & Variables ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #e91e8c;
  --pink-dim: rgba(233, 30, 140, 0.18);
  --pink-glow: rgba(233, 30, 140, 0.35);
  --yellow: #f5c518;
  --yellow-dim: rgba(245, 197, 24, 0.15);
  --bg: #080810;
  --bg2: #0d0d1a;
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
  --font: 'Kayak Sans', system-ui, sans-serif;
  --font-display: 'Kayak Sans', system-ui, sans-serif;
  --max-w: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Background image on fixed pseudo-element - avoids
   overflow-x:hidden + background-attachment:fixed clipping bug */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('image/bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
}

/* Dark overlay so text stays readable over the background image */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 16, 0.55);
  pointer-events: none;
  z-index: -1;
}

/* Ensure all direct children of body stack above the overlay */
body>* {
  position: relative;
  z-index: 1;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-yellow {
  color: var(--yellow);
}

.text-pink {
  color: var(--pink);
}

/* Hero 'Sound' gradient */
.text-gradient-hero {
  background: linear-gradient(90deg, #FFD000 0%, #FF0099 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ---- Image Placeholders ---- */
.img-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px dashed rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- Section Images ---- */
.hero-img-wrap {
  position: relative;
  z-index: 1;
}

.hero-img {
  width: 360px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.section-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.stats-full-img {
  grid-column: 1 / -1;
  width: 100%;
  border-radius: var(--radius-lg);
}

.events-full-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  object-fit: contain;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #e91e8c 0%, #c0157a 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(233, 30, 140, 0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 30, 140, 0.55);
}

.btn-primary.btn-lg {
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
}

.btn-primary.btn-sm {
  font-size: 0.80rem;
  padding: 0.45rem 1.1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline.btn-lg {
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-ghost:hover {
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--pink);
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Active nav link */
.nav-links a.nav-active {
  color: #FFD000;
  font-weight: 600;
}

/* Sign Up button */
.btn-signup {
  display: inline-flex;
  align-items: center;
  background: radial-gradient(circle at 60% 40%, #FFDF0D 0%, #FF0099 55%, transparent 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  border: 1.5px solid #FFD000;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 223, 13, 0.35);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: linear-gradient(90deg, #FFD000 0%, #DC0022 100%);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 2rem;
  background: rgba(8, 8, 16, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: #fff;
}

.mobile-menu .btn-ghost,
.mobile-menu .btn-signup {
  width: 100%;
  max-width: 280px;
  justify-content: center;
  margin-top: 0.5rem;
}

.mobile-menu.open {
  display: flex;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(ellipse at center, rgba(233, 30, 140, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 520px;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex-shrink: 0;
  position: relative;
}

.hero-img-placeholder {
  width: 360px;
  height: 420px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(233, 30, 140, 0.25) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.hero-scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}

.section-eyebrow.text-pink {
  color: var(--pink);
}

/* Hero CTA button – custom gradient */
.btn-hero {
  background: linear-gradient(135deg, #FF0099 0%, #FF0F00 50%, #FFD000 100%);
  box-shadow: 0 4px 20px rgba(255, 0, 153, 0.4);
}

.btn-hero:hover {
  box-shadow: 0 8px 30px rgba(255, 0, 153, 0.6);
}

/* Explore More – yellow border */
.btn-outline-yellow {
  border-color: #FFD000;
  color: #FFD000;
}

.btn-outline-yellow:hover {
  border-color: #FFD000;
  background: rgba(255, 208, 0, 0.08);
  color: #FFD000;
}

/* Gradient text eyebrow */
.eyebrow-gradient {
  background: linear-gradient(90deg, #FFD000 0%, #FF336D 50%, #FFD000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.eyebrow-gradient-2 {
  background: linear-gradient(90deg, #FFD000 0%, #FF004C 50%, #FF0099 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Join Now button */
.btn-join-now {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #FF0099 0%, #FF0F00 50%, #FFD000 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 0, 153, 0.4);
  margin-top: 1.5rem;
  white-space: nowrap;
}

.btn-join-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 0, 153, 0.6);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
  color: #fff;
}

.section-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-width: 500px;
}

/* ============================================================
   SECTION 2 – BROWSE SHOWCASES
   ============================================================ */
.section-browse {
  background: transparent;
}

.section-glow-left {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(233, 30, 140, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.section-browse-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.browse-content .section-body {
  margin-bottom: 0.5rem;
}

.browse-content .btn-primary {
  margin-top: 1.5rem;
}

.browse-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  overflow: hidden;
}

.browse-mockup .section-img {
  max-height: 400px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 0 0 auto;
}

.mockup-phone {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.mockup-phone .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.mockup-back {
  width: 200px;
  height: 380px;
  left: 30px;
  bottom: 0;
  transform: rotate(-6deg);
  background: #1a1a2e;
  border: 2px solid rgba(233, 30, 140, 0.3);
  z-index: 1;
}

.mockup-front {
  width: 210px;
  height: 400px;
  right: 30px;
  bottom: 0;
  transform: rotate(4deg);
  background: #1a1a2e;
  border: 2px solid rgba(233, 30, 140, 0.5);
  z-index: 2;
}

.mockup-glow-pink {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  background: radial-gradient(ellipse, rgba(233, 30, 140, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   SECTION 3 – JOIN EVERY EVENT
   ============================================================ */
.section-join {
  background: transparent;
}

.section-join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.join-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.mockup-single {
  width: 220px;
  height: 440px;
  background: #12122a;
  border: 2px solid rgba(233, 30, 140, 0.4);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(233, 30, 140, 0.2), 0 30px 70px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background: #080810;
  border-radius: 10px;
  z-index: 3;
}

.mockup-single .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.join-dots {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dot {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.dot-lg {
  width: 24px;
  height: 24px;
}

.dot-md {
  width: 18px;
  height: 18px;
  background: var(--pink-dim);
  border-color: rgba(233, 30, 140, 0.4);
}

.dot-sm {
  width: 12px;
  height: 12px;
}

.join-content {
  padding-left: 1rem;
}

.join-content .section-body {
  max-width: 440px;
}

/* ============================================================
   SECTION 4 – WIN PRIZES
   ============================================================ */
.section-prizes {
  background: transparent;
}

.section-prizes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mockup-tablet {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.tablet-screen {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(233, 30, 140, 0.4);
  background: #12122a;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.tablet-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(233, 30, 140, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.prizes-content {
  padding-left: 1rem;
}

.prizes-content .section-body {
  max-width: 440px;
}

/* ============================================================
   SECTION 5 – STATS
   ============================================================ */
.section-stats {
  background: transparent;
  padding-bottom: 7rem;
}

.stats-glow-center {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245, 197, 24, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.stats-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.stats-header .section-title {
  max-width: 600px;
  margin: 0 auto 1rem;
}

.stats-header .section-body {
  max-width: 500px;
  margin: 0 auto;
}

.stats-mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Chart card */
.stats-chart-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(8px);
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.chart-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot.dot-pink {
  background: var(--pink);
}

.legend-dot.dot-yellow {
  background: var(--yellow);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  height: 150px;
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  border-radius: 5px 5px 0 0;
  transition: height 0.6s ease;
  min-height: 4px;
}

.bar-pink {
  background: linear-gradient(to top, #e91e8c, rgba(233, 30, 140, 0.5));
}

.bar-yellow {
  background: linear-gradient(to top, #f5c518, rgba(245, 197, 24, 0.5));
}

.bar-label {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.35rem;
  white-space: nowrap;
}

/* Stats list card */
.stats-list-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  backdrop-filter: blur(8px);
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stat-info {
  flex: 1;
  min-width: 0;
}

.stat-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.stat-score {
  text-align: right;
  min-width: 100px;
}

.score-val {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.score-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.score-fill-yellow {
  background: var(--yellow);
}

/* ============================================================
   SECTION 6 – EVENTS
   ============================================================ */
.section-events {
  background: transparent;
  padding-bottom: 7rem;
}

.section-events .section-title {
  margin-bottom: 0.75rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.event-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(233, 30, 140, 0.15);
}

.event-img {
  width: 100%;
  height: 160px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}

.event-info {
  padding: 1.1rem;
}

.event-genre {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.45rem;
}

.event-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  font-family: var(--font);
}

.event-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-prize {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--yellow);
}

/* ============================================================
   FOOTER – 4 COLUMN
   ============================================================ */
.footer {
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

/* Col shared */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Col 1 brand */
.footer-brand .logo {
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Col titles */
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

/* Col 2 links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.87rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

/* Col 3 contact */
.footer-contact-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: 0.25rem;
}

.footer-email:hover {
  color: #fff;
}

/* Col 4 newsletter */
.footer-newsletter-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.5rem;
  margin-top: 0.25rem;
}

.footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font);
  font-size: 0.87rem;
  padding: 0.25rem 0;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Gradient circle send/arrow button */
.footer-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD000 0%, #FF0099 100%);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(255, 0, 153, 0.4);
}

.footer-arrow-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 22px rgba(255, 0, 153, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet wide (≤ 1100px) ---- */
@media (max-width: 1100px) {

  .section-browse-inner,
  .section-prizes-inner {
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ---- Tablet (≤ 860px) ---- */
@media (max-width: 860px) {

  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding-top: 5rem;
    gap: 2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin: 0 auto 1.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Section 2 */
  .section-browse-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .browse-content {
    text-align: center;
  }

  .browse-content .section-body {
    max-width: 100%;
  }

  .browse-content .btn-join-now {
    margin: 1.5rem auto 0;
  }

  .browse-mockup {
    justify-content: center;
  }

  .browse-mockup .section-img {
    max-height: 320px;
    margin: 0 auto;
  }

  /* Section 3 */
  .section-join-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .join-content {
    text-align: center;
    padding-left: 0;
  }

  .join-content .section-body {
    max-width: 100%;
  }

  .join-mockup {
    max-height: 300px;
  }

  .join-mockup .section-img {
    max-height: 280px;
    margin: 0 auto;
  }

  /* Section 4 */
  .section-prizes-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prizes-content {
    text-align: center;
    padding-left: 0;
  }

  .prizes-content .section-body {
    max-width: 100%;
  }

  .prizes-mockup .section-img {
    max-height: 280px;
    margin: 0 auto;
  }

  /* Stats header */
  .stats-header .section-title,
  .stats-header .section-body {
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ---- Mobile (≤ 640px) ---- */
@media (max-width: 640px) {

  /* Nav */
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile menu links active color */
  .mobile-menu a.nav-active {
    color: #FFD000;
  }

  /* Hero */
  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-img {
    max-width: 100%;
  }

  /* Sections padding */
  .section {
    padding: 3.5rem 0;
  }

  /* Images scale full width */
  .section-img,
  .browse-mockup .section-img,
  .join-mockup .section-img,
  .prizes-mockup .section-img {
    max-height: none;
    width: 100%;
    border-radius: var(--radius);
  }

  .stats-full-img {
    border-radius: var(--radius);
  }

  .events-full-img {
    border-radius: var(--radius);
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* Container padding */
  .container {
    padding: 0 1.25rem;
  }
}

/* ---- Small mobile (≤ 420px) ---- */
@media (max-width: 420px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn-hero,
  .btn-outline-yellow,
  .btn-join-now,
  .btn-signup {
    width: 100%;
    justify-content: center;
  }

  .nav-inner {
    padding: 0.9rem 1.25rem;
  }

  .footer-newsletter-form {
    gap: 0.5rem;
  }
}

/* ============================================================
   ANIMATIONS / SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}