/* ==========================================================================
   VARAMMA EVENTS — Design System
   Dark · Neon Lime · Futuristic · Premium
   ========================================================================== */

:root {
  --bg: #050505;
  --bg-2: #0d0d0d;
  --card: #151515;
  --card-2: #191919;
  --lime: #b7ff2a;
  --lime-soft: #d4ff75;
  --white: #f5f5f5;
  --muted: #8a8a8a;
  --muted-2: #5f5f5f;
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.07);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --container: 1280px;
  --font-heading: "Space Grotesk", "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-lime: 0 0 0 1px rgba(183, 255, 42, 0.35), 0 10px 40px rgba(183, 255, 42, 0.18);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input { font-family: inherit; }

::selection { background: var(--lime); color: #0a0a0a; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #262626; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Layout helpers --------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 8px 16px;
  border: 1px solid rgba(183, 255, 42, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(183, 255, 42, 0.06);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(183, 255, 42, 0.9); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
.text-lime { color: var(--lime); }
.text-muted { color: var(--muted); }
.lead { font-size: 18px; color: var(--muted); margin-top: 18px; }

.section-note { text-align: center; margin-top: 40px; }

/* ---------- Background fx ---------------------------------------- */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 30%, transparent 75%);
}
.grid-bg.full { mask-image: none; -webkit-mask-image: none; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}
.glow-lime { background: radial-gradient(circle, rgba(183, 255, 42, 0.35), transparent 70%); }

/* ---------- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--lime);
  color: #0a0a0a;
  box-shadow: 0 0 0 rgba(183, 255, 42, 0);
}
.btn-primary:hover {
  background: var(--lime-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(183, 255, 42, 0.5);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-lime-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s var(--ease);
}
.btn-lime-text:hover { gap: 14px; }

.link-muted {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.25s;
}
.link-muted:hover { color: var(--white); }

/* ---------- Header ----------------------------------------------- */
.header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 16px;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 10px 20px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.header.is-scrolled .header-inner {
  background: rgba(8, 8, 8, 0.85);
  border-color: var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.logo-mark {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(183, 255, 42, 0.16), rgba(183, 255, 42, 0.04));
  border: 1px solid rgba(183, 255, 42, 0.4);
  box-shadow: 0 0 24px rgba(183, 255, 42, 0.15);
  flex: none;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.logo-name span { color: var(--lime); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.25s, background 0.25s;
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.nav a.active { color: var(--lime); background: rgba(183, 255, 42, 0.08); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.icon-btn:hover { color: var(--lime); background: rgba(183, 255, 42, 0.08); border-color: rgba(183, 255, 42, 0.3); }
.icon-btn svg { width: 20px; height: 20px; }

.header-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.25s;
}
.header-link:hover { color: var(--lime); }

.header .btn { padding: 11px 22px; font-size: 14px; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  place-items: center;
  color: var(--white);
}
.hamburger.live { display: grid; }
.hamburger svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  padding: 110px 24px 40px;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-105%);
  transition: transform 0.5s var(--ease);
  display: none;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a .chev { color: var(--lime); }
.mobile-menu .mm-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

@media (max-width: 992px) {
  .nav { display: none; }
  .hamburger { display: grid; }
  .mobile-menu { display: block; }
  .header-link, .header .btn-register { display: none; }
}

/* ---------- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 90px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 28px 0 24px;
}
.hero h1 .hl { color: var(--lime); }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 1px rgba(245, 245, 245, 0.35); }

.hero p.sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
}

.hero-search {
  margin: 36px 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 20px;
  background: rgba(21, 21, 21, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  max-width: 640px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-search:focus-within {
  border-color: rgba(183, 255, 42, 0.55);
  box-shadow: 0 0 0 4px rgba(183, 255, 42, 0.12), 0 0 40px rgba(183, 255, 42, 0.12);
}
.hero-search svg { width: 20px; height: 20px; color: var(--lime); flex: none; }
.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  min-width: 0;
}
.hero-search input::placeholder { color: var(--muted-2); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta .hm { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; }
.hero-meta .hm svg { width: 20px; height: 20px; color: var(--lime); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.hero-figure { position: relative; aspect-ratio: 4 / 5; }
.hero-figure .backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 30% 0%, rgba(183,255,42,0.16), transparent 55%),
    radial-gradient(140% 120% at 85% 100%, rgba(100,120,255,0.12), transparent 60%),
    linear-gradient(160deg, #1a1a1a, #0a0a0a 60%);
}
.hero-figure .backdrop::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 78%);
}
.hero-orbit { position: absolute; inset: 12%; }
.hero-orbit::before {
  content: "";
  position: absolute; inset: 0;
  border: 1px dashed rgba(183, 255, 42, 0.35);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  top: 8%; left: 18%;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-orbitrings { position: absolute; inset: 0; }
.hero-orbitrings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(183, 255, 42, 0.16);
  animation: spin 60s linear infinite;
}
.hero-orbitrings span:nth-child(1) { inset: 6%; }
.hero-orbitrings span:nth-child(2) { inset: 20%; animation-direction: reverse; animation-duration: 36s; border-color: rgba(255,255,255,0.08); }

.hero-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero-stage svg { width: 58%; height: 58%; opacity: 0.95; filter: drop-shadow(0 0 30px rgba(183,255,42,0.35)); }

.hero-stage-label {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* Floating glass cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: floaty 5.5s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card .fc-ic {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(183, 255, 42, 0.12);
  border: 1px solid rgba(183, 255, 42, 0.3);
  color: var(--lime);
  flex: none;
}
.float-card .fc-ic svg { width: 20px; height: 20px; }
.float-card .fc-t { font-weight: 600; font-size: 15px; color: var(--white); }
.float-card .fc-s { font-size: 12px; color: var(--muted); }
.float-card.fc-a { top: 7%; left: -40px; }
.float-card.fc-b { bottom: 12%; right: -32px; animation-delay: 1.4s; }

/* ---------- Stats cards ------------------------------------------ */
.stats { padding-top: 8px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  position: relative;
  padding: 34px 30px;
  background: linear-gradient(170deg, var(--card), rgba(21,21,21,0.5));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 255, 42, 0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(183,255,42,0.06);
}
.stat-card .sc-corner {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-heading);
  font-size: 30px;
  color: rgba(183, 255, 42, 0.22);
  font-weight: 700;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value .plus { color: var(--lime); }
.stat-label { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--white); margin-top: 12px; }
.stat-desc { font-size: 13.5px; color: var(--muted); margin-top: 6px; max-width: 230px; }

/* ---------- Featured promo --------------------------------------- */
.featured {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.featured h2 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 20px 0 22px;
}
.featured h2 .hl { color: var(--lime); }
.featured-cta { margin-top: 34px; }

.featured-media { position: relative; }
.featured-label {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--lime);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 30px rgba(183,255,42,0.5);
}
.featured-figure {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  background: linear-gradient(200deg, #1d1d1d, #0a0a0a);
}
.featured-figure::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 60% at 80% 12%, rgba(183,255,42,0.2), transparent 55%),
    radial-gradient(120% 100% at 10% 100%, rgba(180,180,120,0.06), transparent 60%);
}
.featured-figure::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 40% 40%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 40%, #000, transparent 75%);
}
.featured-figure .ff-art { position: absolute; inset: 0; display: grid; place-items: center; }
.featured-figure .ff-art svg { width: 64%; height: 64%; filter: grayscale(35%) contrast(1.05); }

.featured-pills { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.featured-pills span {
  font-size: 12px;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.03);
}

/* ---------- Events grid ------------------------------------------ */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-chip {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.25s var(--ease);
  background: rgba(255,255,255,0.02);
}
.filter-chip:hover { color: var(--white); border-color: var(--border); }
.filter-chip.active {
  color: #0a0a0a;
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(183,255,42,0.3);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.event-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(175deg, var(--card), rgba(21,21,21,0.6));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183, 255, 42, 0.3);
  box-shadow: var(--shadow-card);
}
.event-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101010;
}
.event-media .em-art {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease);
}
.event-card:hover .event-media .em-art { transform: scale(1.07); }
.event-media .em-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.75), transparent 55%);
}
.badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: rgba(5, 5, 5, 0.72);
  color: var(--lime);
  border: 1px solid rgba(183, 255, 42, 0.4);
  backdrop-filter: blur(8px);
}
.event-meta-row {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(245, 245, 245, 0.85);
}
.event-meta-row span { display: inline-flex; align-items: center; gap: 6px; }
.event-meta-row svg { width: 15px; height: 15px; color: var(--lime); }
.event-body { display: flex; flex-direction: column; padding: 22px 22px 24px; flex: 1; }
.event-title { font-family: var(--font-heading); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; transition: color 0.25s; }
.event-card:hover .event-title { color: var(--lime); }
.event-desc { font-size: 14px; color: var(--muted); margin-top: 10px; flex: 1; }
.event-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.event-price { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--white); }
.event-price.free { color: var(--lime); }
.event-price small { font-size: 11px; color: var(--muted); font-weight: 500; display: block; }

/* Art variants for generated cover visuals */
.em-art { display: block; }
.art { position: relative; width: 100%; height: 100%; }
.art .layers {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 18% 16%, rgba(183,255,42,0.22), transparent 55%),
    radial-gradient(80% 80% at 85% 90%, rgba(90,120,255,0.16), transparent 55%),
    linear-gradient(150deg, #1c1c1c, #0c0c0c 70%);
  transition: filter 0.5s;
}
.art .gridline {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 20%, #000, transparent 82%);
}
.art .shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(183,255,42,0.4);
}
.art .shape.s1 { width: 60%; padding-bottom: 60%; top: -18%; left: -10%; border-color: rgba(255,255,255,0.08); }
.art .shape.s2 { width: 40%; padding-bottom: 40%; bottom: -12%; right: -6%; border-color: rgba(183,255,42,0.35); }
.art .dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 16px var(--lime); }
.art .dot.d1 { top: 22%; right: 16%; }
.art .dot.d2 { bottom: 20%; left: 22%; width: 8px; height: 8px; opacity: 0.8; }
.art .bar {
  position: absolute;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(183,255,42,0.15), rgba(183,255,42,0.9));
}
.art .bar.b1 { width: 42%; bottom: 26%; left: 20%; }
.art .bar.b2 { width: 24%; bottom: 18%; left: 36%; opacity: 0.6; }

/* Art color variants */
.art.v2 .layers { background: radial-gradient(85% 70% at 82% 14%, rgba(183,255,42,0.2), transparent 55%), radial-gradient(90% 80% at 12% 88%, rgba(120,150,255,0.18), transparent 55%), linear-gradient(150deg, #1c1c1c, #0c0c0c 70%); }
.art.v3 .layers { background: radial-gradient(90% 80% at 18% 86%, rgba(183,255,42,0.2), transparent 55%), radial-gradient(80% 70% at 86% 18%, rgba(255,140,90,0.14), transparent 55%), linear-gradient(150deg, #1c1c1c, #0c0c0c 70%); }
.art.v4 .layers { background: radial-gradient(90% 60% at 50% 0%, rgba(183,255,42,0.22), transparent 55%), radial-gradient(100% 100% at 100% 100%, rgba(140,180,255,0.12), transparent 60%), linear-gradient(150deg, #1c1c1c, #0c0c0c 70%); }
.art.v5 .layers { background: radial-gradient(80% 70% at 20% 20%, rgba(200,255,120,0.14), transparent 55%), radial-gradient(100% 80% at 80% 80%, rgba(255,110,180,0.12), transparent 55%), linear-gradient(150deg, #1c1c1c, #0c0c0c 70%); }
.art.v6 .layers { background: radial-gradient(90% 70% at 70% 20%, rgba(183,255,42,0.2), transparent 55%), radial-gradient(90% 90% at 20% 90%, rgba(255,200,90,0.12), transparent 55%), linear-gradient(150deg, #1c1c1c, #0c0c0c 70%); }
.art.v1 .shape.s1 { border-color: rgba(255,255,255,0.1); animation: spin 50s linear infinite; }
.art.v2 .shape.s1 { border-color: rgba(120,150,255,0.3); }
.art.v3 .shape.s1 { border-color: rgba(255,140,90,0.28); }
.art.v4 .shape.s1 { border-color: rgba(140,180,255,0.3); }
.art.v5 .shape.s1 { border-color: rgba(255,110,180,0.28); }
.art.v6 .shape.s1 { border-color: rgba(255,200,90,0.3); }
.art.v1 .shape.s2 { border-color: rgba(183,255,42,0.4); }
.art.v4 .shape.s2 { border-color: rgba(140,180,255,0.4); }
.art.v5 .shape.s2 { border-color: rgba(255,110,180,0.35); }
.art.v6 .shape.s2 { border-color: rgba(255,200,90,0.4); }

/* Skeletons */
.skeleton-card {
  background: linear-gradient(175deg, var(--card), rgba(21,21,21,0.6));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.skel-media { aspect-ratio: 16/9; background: #121212; }
.skel-line {
  height: 14px;
  margin: 18px 22px 0;
  border-radius: 8px;
  background: #1c1c1c;
}
.skel-line.short { width: 55%; }
.skel-line.tiny { width: 38%; margin-top: 12px; }
.skel-media, .skel-line { position: relative; overflow: hidden; }
.skel-media::after, .skel-line::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }

/* ---------- Categories ------------------------------------------- */
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); border-color: rgba(183,255,42,0.6); }
.cat-card .art { position: absolute; inset: 0; transition: transform 0.6s var(--ease), filter 0.4s; }
.cat-card:hover .art { transform: scale(1.06); }
.cat-card .art .layers { filter: saturate(0.7); }
.cat-card .cc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.92), rgba(5,5,5,0.15) 65%);
}
.cat-card .cc-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cat-card .cc-title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.cat-card .cc-count { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cat-card .cc-arrow {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  transition: all 0.35s var(--ease);
  flex: none;
}
.cat-card:hover .cc-arrow { background: var(--lime); color: #0a0a0a; border-color: var(--lime); box-shadow: 0 0 24px rgba(183,255,42,0.4); }
.cat-card .cc-arrow svg { width: 20px; height: 20px; }

/* ---------- How it works ----------------------------------------- */
.works { background: var(--bg-2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.works-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,255,42,0.4), transparent);
}
.work-step { text-align: center; padding: 0 10px; }
.work-num {
  position: relative;
  width: 88px; height: 88px;
  margin: 0 auto 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(183,255,42,0.06);
  border: 1px solid rgba(183,255,42,0.35);
  box-shadow: 0 0 0 10px rgba(183,255,42,0.03);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--lime);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.work-step:hover .work-num { transform: translateY(-6px) scale(1.05); box-shadow: 0 0 0 12px rgba(183,255,42,0.05), 0 0 40px rgba(183,255,42,0.25); }
.work-step h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.work-step p { color: var(--muted); font-size: 14.5px; margin-top: 10px; max-width: 300px; margin-inline: auto; }

/* ---------- Organizer CTA ---------------------------------------- */
.org-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 76px 72px;
}
.org-wrap .art { position: absolute; inset: 0; }
.org-wrap .art .layers { background: radial-gradient(80% 90% at 90% 10%, rgba(183,255,42,0.24), transparent 55%), linear-gradient(150deg, #171717, #080808); }
.org-gridway { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.org-wrap h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 16px;
}
.org-wrap h2 .hl { color: var(--lime); }
.org-wrap p { color: var(--muted); font-size: 16px; max-width: 520px; }
.org-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.org-right { display: grid; gap: 16px; }
.org-chip {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(5,5,5,0.5);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.org-chip:hover { border-color: rgba(183,255,42,0.4); transform: translateX(6px); }
.org-chip .oc-ic { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(183,255,42,0.1); border: 1px solid rgba(183,255,42,0.3); color: var(--lime); }
.org-chip .oc-ic svg { width: 21px; height: 21px; }
.org-chip b { font-family: var(--font-heading); font-size: 16px; display: block; }
.org-chip span { font-size: 13px; color: var(--muted); }

/* ---------- Testimonials ----------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  padding: 30px;
  background: linear-gradient(175deg, var(--card), rgba(21,21,21,0.55));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(183,255,42,0.3); }
.testi-quote { position: relative; color: var(--white); font-size: 16px; line-height: 1.65; }
.testi-quote::before { content: "“"; font-family: var(--font-heading); font-size: 56px; line-height: 1; color: var(--lime); display: block; height: 34px; }
.testi-stars { display: flex; gap: 4px; color: var(--lime); }
.testi-stars svg { width: 17px; height: 17px; }
.testi-who { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-soft); }
.testi-avatar {
  width: 46px; height: 46px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(183,255,42,0.2), rgba(21,21,21,0.4));
  border: 1px solid rgba(183,255,42,0.35);
  color: var(--lime);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}
.testi-who b { display: block; font-family: var(--font-heading); font-size: 15px; }
.testi-who span { font-size: 13px; color: var(--muted); }

/* ---------- Newsletter ------------------------------------------- */
.nl-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(183,255,42,0.18);
  background: linear-gradient(140deg, rgba(183,255,42,0.08), rgba(21,21,21,0.9) 45%), var(--card);
  padding: 70px 64px;
  text-align: center;
}
.nl-wrap .artgrid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 80%);
}
.nl-wrap h2 { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.03em; position: relative; z-index: 1; }
.nl-wrap p { color: var(--muted); margin-top: 12px; position: relative; z-index: 1; }
.nl-form {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 32px auto 0;
  display: flex;
  gap: 10px;
  padding: 8px 8px 8px 20px;
  background: rgba(5,5,5,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nl-form:focus-within { border-color: rgba(183,255,42,0.6); box-shadow: 0 0 0 4px rgba(183,255,42,0.12); }
.nl-form input { flex: 1; background: transparent; border: none; outline: none; color: var(--white); font-size: 14.5px; min-width: 0; }
.nl-form input::placeholder { color: var(--muted-2); }
.nl-note { font-size: 12px; color: var(--muted-2); margin-top: 14px; position: relative; z-index: 1; }

/* ---------- Footer ----------------------------------------------- */
.footer { border-top: 1px solid var(--border-soft); background: var(--bg-2); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer .logo { margin-right: 0; }
.footer-tag { font-family: var(--font-heading); font-size: 13px; font-weight: 500; color: var(--white); margin-top: 16px; }
.footer-desc { font-size: 14px; color: var(--muted); margin-top: 10px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { color: #0a0a0a; background: var(--lime); border-color: var(--lime); transform: translateY(-3px); box-shadow: 0 0 20px rgba(183,255,42,0.3); }
.footer-social svg { width: 18px; height: 18px; }
.footer h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: var(--lime); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); list-style: none; }
.footer-contact li + li { margin-top: 14px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--lime); flex: none; margin-top: 3px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--muted-2);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--muted-2); transition: color 0.25s; }
.footer-legal a:hover { color: var(--lime); }

/* ---------- Back to top ------------------------------------------ */
.btt {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 90;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(21,21,21,0.8);
  border: 1px solid var(--border);
  color: var(--lime);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
}
.btt.show { opacity: 1; pointer-events: auto; transform: none; }
.btt:hover { border-color: var(--lime); box-shadow: 0 0 24px rgba(183,255,42,0.35); }
.btt svg { width: 19px; height: 19px; }

/* ==========================================================================
   EVENT DETAIL PAGE
   ========================================================================== */
.detail-hero { position: relative; padding: calc(var(--header-h) + 64px) 0 64px; overflow: hidden; }
.detail-cover {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21 / 10;
  background: #101010;
}
.detail-cover .art { transition: transform 0.8s var(--ease); }
.detail-cover:hover .art { transform: scale(1.04); }
.detail-cover .dc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9), rgba(5,5,5,0.1) 70%);
}
.detail-cover .dc-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dcr-title { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin-top: 14px; max-width: 760px; }
.dcr-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.dcr-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(245,245,245,0.9);
  padding: 7px 14px;
  background: rgba(5,5,5,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}
.dcr-meta svg { width: 15px; height: 15px; color: var(--lime); }

.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; padding-bottom: 110px; }
.detail-main { min-width: 0; }
.detail-section { margin-top: 54px; }
.detail-section:first-of-type { margin-top: 0; }
.detail-section h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-section h2::before { content: ""; width: 8px; height: 24px; border-radius: 4px; background: var(--lime); box-shadow: 0 0 14px rgba(183,255,42,0.6); }
.detail-section p.body { color: var(--muted); font-size: 16px; line-height: 1.75; }

.about-grid { display: flex; flex-direction: column; gap: 20px; }
.attendee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.speaker {
  display: flex; align-items: center; gap: 16px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: linear-gradient(170deg, var(--card), transparent);
  transition: border-color 0.3s;
}
.speaker:hover { border-color: rgba(183,255,42,0.35); }
.speaker .sp-av {
  width: 54px; height: 54px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(183,255,42,0.18), rgba(21,21,21,0.5));
  border: 1px solid rgba(183,255,42,0.3);
  color: var(--lime);
  font-family: var(--font-heading);
  font-weight: 700;
}
.speaker b { font-family: var(--font-heading); display: block; font-size: 15px; }
.speaker span { font-size: 12.5px; color: var(--muted); }

.agenda { display: grid; gap: 12px; }
.agenda-item {
  display: flex; gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.agenda-item:hover { border-color: rgba(183,255,42,0.3); transform: translateX(6px); }
.agenda-time {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--lime);
  min-width: 74px;
  padding-top: 3px;
}
.agenda-item b { display: block; font-size: 15.5px; }
.agenda-item span { font-size: 13.5px; color: var(--muted); }

/* Sticky register card */
.ticket-card {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(175deg, var(--card), rgba(13,13,13,0.9));
  box-shadow: var(--shadow-card);
}
.ticket-price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ticket-price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.ticket-price.free { color: var(--lime); }
.ticket-perks { list-style: none; margin: 20px 0; display: grid; gap: 12px; }
.ticket-perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.ticket-perks svg { width: 18px; height: 18px; color: var(--lime); flex: none; }
.ticket-actions { display: grid; gap: 10px; margin-top: 24px; }
.ticket-sec { border-top: 1px solid var(--border-soft); margin-top: 20px; padding-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ticket-sec .btn { width: 100%; }
.org-mini { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border-soft); }
.org-mini .sp-av { width: 50px; height: 50px; flex: none; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700; color: var(--lime); border-radius: 14px; background: rgba(183,255,42,0.08); border: 1px solid rgba(183,255,42,0.3); }
.org-mini b { display: block; font-family: var(--font-heading); font-size: 15px; }
.org-mini span { font-size: 12.5px; color: var(--muted); }

/* Ticket type rows */
.ticket-rows { display: grid; gap: 10px; }
.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.ticket-row b { font-size: 14.5px; display: block; }
.ticket-row span { font-size: 12.5px; color: var(--muted); }
.ticket-row .tr-price { color: var(--white); font-weight: 600; font-family: var(--font-heading); white-space: nowrap; }
.radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--muted-2);
  flex: none;
  position: relative;
  transition: border-color 0.25s;
}
.ticket-row.selected { border-color: rgba(183,255,42,0.5); background: rgba(183,255,42,0.05); }
.ticket-row.selected .radio { border-color: var(--lime); box-shadow: 0 0 12px rgba(183,255,42,0.4); }
.ticket-row.selected .radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--lime); }

.detail-organized { display: flex; flex-flow: row; gap: 10px; flex-wrap: wrap; }
.detail-organized .btn { white-space: normal; }

/* Breadcrumb */
.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  margin-bottom: 28px;
}
.crumbs a { color: var(--muted); transition: color 0.25s; }
.crumbs a:hover { color: var(--lime); }
.crumbs svg { width: 14px; height: 14px; color: var(--muted-2); }

/* Empty state for filters */
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--muted); border: 1px dashed var(--border); border-radius: var(--radius); }
.empty-state .btn { margin-top: 20px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1120px) {
  .hero-grid, .featured-grid { gap: 40px; }
  .float-card.fc-a { left: -10px; }
  .float-card.fc-b { right: -10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
  .section { padding: 84px 0; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; gap: 48px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; gap: 48px; }
  .works-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .ticket-card { position: static; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .org-wrap { padding: 56px 40px; }
  .nl-wrap { padding: 56px 36px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 68px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 10px; margin-right: -18px; padding-right: 18px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter-chip { flex: none; }
  .hero-search, .nl-form { flex-wrap: wrap; border-radius: 18px; }
  .hero-search .btn, .nl-form .btn { width: 100%; }
  .organizer-slider { overflow-x: auto; }
  .detail-cover .dc-content { padding: 22px; }
  .attendee-grid { grid-template-columns: 1fr; }
  .org-wrap { padding: 44px 24px; }
  .nl-wrap { padding: 46px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; align-items: center;}
  .float-card { padding: 10px 14px; }
  .float-card .fc-ic { width: 36px; height: 36px; }
  .float-card .fc-s { display: none; }
  .float-card.fc-a { left: 6px; top: 4%; }
  .float-card.fc-b { right: 6px; bottom: 8%; }
  .hero h1 { font-size: clamp(40px, 11vw, 58px); }
}

/* Selection of safe font stack when webfonts blocked */
@media (max-width: 360px) {
  .logo-name { font-size: 15px; }
}