/* ==========================================================================
   Flash Media Mob — Style System
   Theme: "Electric Flash & Midnight Streetwear"
   ========================================================================== */

:root {
  --color-bg: #09090b;
  --color-surface: #141418;
  --color-surface-hover: #1c1c22;
  --color-surface-elevated: #23232b;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-glow: rgba(204, 255, 0, 0.25);
  --color-flash: #ffffff;
  --color-accent: #ccff00; /* Laser Volt / Neon Lime */
  --color-accent-hover: #b8e600;
  --color-accent-2: #ff3b30; /* Hot Coral / Infrared */
  --color-accent-3: #00f0ff; /* Electric Cyan */
  --color-text: #f4f4f5;
  --color-text-muted: #8e8e93;
  --color-text-subtle: #52525b;

  --font-display: 'Manrope', sans-serif;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --shadow-neon: 0 0 25px rgba(204, 255, 0, 0.35);
  --shadow-coral: 0 0 25px rgba(255, 59, 48, 0.35);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(204, 255, 0, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(255, 59, 48, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Noise overlay */
.bg-noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.025;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Flash Strobe Layer */
#camera-flash {
  position: fixed;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.05s ease-out;
}
#camera-flash.flash-active {
  opacity: 0.95;
  transition: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: #23232b;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Typography Helpers */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h4, h5, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
}

.font-mono {
  font-family: var(--font-mono);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
  transform: rotate(-3deg);
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.4);
  transition: var(--transition-fast);
}

.logo-brand:hover .logo-symbol {
  transform: rotate(6deg) scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-flash);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta-desktop {
  display: inline-flex !important;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-cta-mobile {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-accent {
  background: var(--color-accent);
  color: #000000;
  box-shadow: var(--shadow-neon);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(204, 255, 0, 0.55);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-flash);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-surface-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--color-accent-2);
  color: #ffffff;
  box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
  background: #e6352b;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 59, 48, 0.6);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-icon:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.mobile-toggle {
  display: none !important;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  color: var(--color-accent);
}

.mobile-menu {
  display: none !important;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px 28px;
  background: rgba(14, 14, 18, 0.98);
  border-bottom: 2px solid var(--color-accent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95);
  animation: slideDownMenu 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(204, 255, 0, 0.1);
  border-color: rgba(204, 255, 0, 0.3);
  color: var(--color-accent);
  transform: translateX(4px);
}

.mobile-nav-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--color-border);
  margin: 6px 0;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Community Proof Avatar Stack */
.community-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  object-fit: cover;
  margin-left: -10px;
}

.avatar-img:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-bg);
  margin-left: -10px;
}

.community-proof-text {
  display: flex;
  flex-direction: column;
  font-size: 0.825rem;
  line-height: 1.25;
}

.community-proof-text strong {
  color: var(--color-flash);
  font-family: var(--font-heading);
}

.community-proof-text span {
  color: var(--color-text-muted);
}

/* Rule Card Photography */
.rule-card-img-wrap {
  width: 100%;
  height: 130px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  border: 1px solid var(--color-border);
}

.rule-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rule-card:hover .rule-card-img {
  transform: scale(1.08);
}

/* Ticket Image Banner */
.ticket-banner {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}

.ticket-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.drop-ticket-wrapper:hover .ticket-banner-img {
  transform: scale(1.04);
}

.ticket-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 24, 0.95) 0%, rgba(20, 20, 24, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px 18px;
}

/* Host Story Spotlight Card */
.host-story-wrapper {
  margin-top: 72px;
  background: linear-gradient(145deg, #16161c, #0d0d10);
  border: 1px solid rgba(204, 255, 0, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 30px rgba(204,255,0,0.1);
}

.host-story-img-col {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.host-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-story-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.host-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--color-flash);
  margin: 16px 0 20px;
  border-left: 3px solid var(--color-accent);
  padding-left: 18px;
  font-style: italic;
}

/* Badges & Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.pill-glow {
  background: rgba(204, 255, 0, 0.08);
  border-color: rgba(204, 255, 0, 0.3);
  color: var(--color-accent);
}

.pill-coral {
  background: rgba(255, 59, 48, 0.1);
  border-color: rgba(255, 59, 48, 0.3);
  color: var(--color-accent-2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  animation: pulse-ring 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* HERO SECTION */
.hero {
  padding-top: 160px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  text-transform: uppercase;
  margin: 20px 0 24px;
  color: var(--color-flash);
  line-height: 0.98;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-coral-gradient {
  background: linear-gradient(135deg, #ffffff 40%, var(--color-accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subhead {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Countdown HUD */
.countdown-hud {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-card);
}

.hud-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-timer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timer-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.timer-unit {
  font-size: 0.65rem;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  margin-top: 4px;
  font-family: var(--font-mono);
}

.timer-colon {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-subtle);
  margin-bottom: 12px;
}

/* Hero Showcase Card / 3D Deck */
.hero-card-container {
  position: relative;
  perspective: 1200px;
}

.hero-main-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), var(--shadow-border-glow);
  transition: transform 0.4s ease;
}

.hero-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-card-img {
  transform: scale(1.04);
}

.hero-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 10%, transparent 100%);
  z-index: 2;
}

.hero-card-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-flash);
}

.hero-card-caption {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Floating Card Deck Accent */
.floating-gift-card {
  position: absolute;
  bottom: -30px;
  right: -24px;
  width: 240px;
  background: linear-gradient(135deg, #18181f, #0f0f13);
  border: 1px solid rgba(204, 255, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--shadow-neon);
  transform: rotate(8deg);
  z-index: 5;
  transition: var(--transition-smooth);
}

.floating-gift-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.card-inner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.card-inner-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.card-inner-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Stats Ticker Strip */
.stats-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(20, 20, 24, 0.5);
  padding: 24px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--color-border);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-flash);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  color: var(--color-flash);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* HOW IT WORKS / 4 RULES */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rule-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.rule-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-glow);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(204, 255, 0, 0.15);
}

.rule-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.rule-card:hover .rule-number {
  color: var(--color-accent);
}

.rule-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.rule-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-flash);
}

.rule-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* PERK ENGINE & INTERACTIVE GIFT CARD DECK */
.perks-section {
  background: linear-gradient(to bottom, transparent, rgba(20, 20, 24, 0.5), transparent);
}

.perks-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.perks-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.perk-card-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.perk-card-item:hover {
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateX(8px);
}

.perk-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: rgba(204, 255, 0, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk-item-info h4 {
  font-size: 1.1rem;
  color: var(--color-flash);
  margin-bottom: 6px;
}

.perk-item-info p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
}

/* 3D Interactive Card Fan */
.card-stack-viewport {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.fan-card {
  position: absolute;
  width: 320px;
  height: 195px;
  border-radius: 14px;
  padding: 20px;
  background: #141418;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.fan-card-1 {
  background: linear-gradient(135deg, #1f1d1d, #0d0c0c);
  transform: translateY(0px) rotate(-14deg);
  z-index: 1;
}
.fan-card-2 {
  background: linear-gradient(135deg, #1b211a, #0b1109);
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateY(-8px) rotate(-7deg);
  z-index: 2;
}
.fan-card-3 {
  background: linear-gradient(135deg, #241414, #120909);
  border-color: rgba(255, 59, 48, 0.4);
  transform: translateY(-16px) rotate(0deg);
  z-index: 3;
}
.fan-card-4 {
  background: linear-gradient(135deg, #131d24, #080f14);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-8px) rotate(7deg);
  z-index: 4;
}
.fan-card-5 {
  background: linear-gradient(135deg, #241e12, #140f06);
  border-color: rgba(204, 255, 0, 0.5);
  transform: translateY(0px) rotate(14deg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(204, 255, 0, 0.25);
  z-index: 5;
}

.card-stack-viewport:hover .fan-card-1 { transform: translateX(-160px) rotate(-22deg); }
.card-stack-viewport:hover .fan-card-2 { transform: translateX(-80px) rotate(-11deg); }
.card-stack-viewport:hover .fan-card-3 { transform: translateY(-30px) rotate(0deg); }
.card-stack-viewport:hover .fan-card-4 { transform: translateX(80px) rotate(11deg); }
.card-stack-viewport:hover .fan-card-5 { transform: translateX(160px) rotate(22deg); }

.fan-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fan-card-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-flash);
}
.fan-card-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-accent);
  background: rgba(204, 255, 0, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}
.fan-card-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-flash);
  line-height: 1;
}
.fan-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* NEXT DROP (VIP EVENT TICKET) */
.drop-ticket-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(204, 255, 0, 0.1);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  position: relative;
}

.drop-ticket-wrapper::before,
.drop-ticket-wrapper::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--color-bg);
  border-radius: 50%;
  z-index: 10;
}
.drop-ticket-wrapper::before {
  top: -16px;
  right: calc(41.66% - 16px);
  border-bottom: 1px solid var(--color-border);
}
.drop-ticket-wrapper::after {
  bottom: -16px;
  right: calc(41.66% - 16px);
  border-top: 1px solid var(--color-border);
}

.ticket-main {
  padding: 40px;
  border-right: 2px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ticket-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ticket-title {
  font-size: 2rem;
  color: var(--color-flash);
  margin-bottom: 12px;
}

.ticket-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.ticket-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.detail-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.detail-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-flash);
}

.ticket-capacity-wrap {
  margin-bottom: 12px;
}

.capacity-text {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 84%; /* 42 / 50 */
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  border-radius: var(--radius-full);
  transition: width 1s ease-in-out;
}

.ticket-side {
  padding: 40px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.ticket-qr-box {
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ticket-qr-svg {
  width: 100%;
  height: 100%;
}

.ticket-side-code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.ticket-side-notice {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* MEDIA VAULT (GALLERY & REELS) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-accent);
  color: var(--color-flash);
}

.filter-tab.active {
  background: var(--color-accent);
  color: #000000;
  box-shadow: var(--shadow-neon);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.gallery-top-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-card-content h4 {
  font-size: 1.2rem;
  color: var(--color-flash);
  margin-bottom: 6px;
}

.gallery-card-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.gallery-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-accent);
}

/* SIGN-UP & VIP MOB PASS SECTION */
.signup-section {
  background: radial-gradient(circle at 50% 50%, rgba(204, 255, 0, 0.06) 0%, transparent 70%);
}

.signup-box-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-flash);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.25);
  background: rgba(0, 0, 0, 0.6);
}

.form-input::placeholder {
  color: var(--color-text-subtle);
}

/* VIP Generated Pass State */
.vip-pass-display {
  display: none;
  animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.vip-card-badge-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(145deg, #18181f, #0f0f13);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-neon), 0 30px 60px rgba(0, 0, 0, 0.9);
}

.vip-badge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.vip-user-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-flash);
  margin-bottom: 4px;
}

.vip-user-id {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* B2B RESTAURANT PARTNER SECTION */
.partner-section {
  background: #0d0d10;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.partner-card-box {
  background: linear-gradient(135deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 12, 0.95));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.partner-stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.partner-stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--color-text);
}

.partner-stat-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(204, 255, 0, 0.15);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* FOOTER */
.footer {
  background: #060608;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 16px 0 24px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 1rem;
  color: var(--color-flash);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-subtle);
}

/* MODALS */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: 100%;
  max-width: 600px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-border-glow);
}

.modal-backdrop.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-surface-hover);
  color: var(--color-accent);
}

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  background: rgba(20, 20, 24, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 340px;
}

.toast.show {
  transform: translateX(0);
}

.toast-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.toast-content {
  font-size: 0.85rem;
  line-height: 1.35;
}

.toast-time {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  font-family: var(--font-mono);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .floating-gift-card {
    right: 12px;
    bottom: -20px;
  }
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .perks-split {
    grid-template-columns: 1fr;
  }
  .drop-ticket-wrapper {
    grid-template-columns: 1fr;
  }
  .ticket-main {
    border-right: none;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
  }
  .drop-ticket-wrapper::before,
  .drop-ticket-wrapper::after {
    display: none;
  }
  .partner-card-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    height: 64px;
  }
  .logo-brand {
    font-size: 1.05rem;
    gap: 8px;
  }
  .logo-symbol {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-cta-desktop {
    display: none !important;
  }
  .nav-cta-mobile {
    display: inline-flex !important;
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
  }
  .mobile-menu.open {
    display: flex !important;
  }
  .nav-links {
    display: none !important;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-full {
    grid-column: span 1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .signup-box-wrapper {
    padding: 28px 20px;
  }
  .community-proof {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-md);
  }
  .host-story-wrapper {
    grid-template-columns: 1fr;
  }
  .host-story-content {
    padding: 28px 20px;
  }
  .host-story-img-col {
    min-height: 240px;
  }
}
