/* ============================================
   MELANINKUSH — GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --bg-primary:    #060608;
  --bg-secondary:  #0F0A14;
  --bg-card:       #13101A;
  --gold-primary:  #D4A017;
  --gold-light:    #F0C040;
  --rose-gold:     #C0737A;
  --lilac:         #A78BD4;
  --lilac-glow:    #C9A8FF;
  --cocoa:         #5C3317;
  --warm-white:    #F2EDE8;
  --text-muted:    #9A8FA0;
  --nav-height:    72px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background: var(--bg-primary);
  color: var(--warm-white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width:100%; display:block; }
button { cursor: pointer; font-family: inherit; border:none; }
ul { list-style: none; }

/* ---- CUSTOM CURSOR ---- */
.mk-cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s ease, background 0.2s ease;
  mix-blend-mode: difference;
}
.mk-cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid var(--lilac-glow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: left 0.14s ease, top 0.14s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}
.mk-cursor.hovered { transform: translate(-50%,-50%) scale(2); }
.mk-cursor-ring.hovered { width: 56px; height: 56px; opacity: 1; border-color: var(--gold-light); }

/* ---- LOADING SCREEN ---- */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.loading-letters {
  display: flex;
  gap: 0.05em;
}
.loading-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: letterIn 0.4s ease forwards;
  /* prevent right-edge clip on final letter */
  padding-right: 0.05em;
  display: inline-block;
}
.loading-bar-container {
  width: 240px; height: 2px;
  background: rgba(212,160,23,0.2);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.3s ease 1.5s forwards;
}
.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  width: 0%;
  animation: loadFill 0.7s ease 1.6s forwards;
}
#loading-screen.fade-out {
  animation: fadeOut 0.5s ease forwards;
}
@keyframes letterIn {
  to { opacity:1; transform:translateY(0); }
}
@keyframes loadFill {
  to { width: 100%; }
}
@keyframes fadeOut {
  to { opacity:0; visibility:hidden; }
}

/* ---- PAGE FADE IN ---- */
body { animation: pageFadeIn 0.5s ease both; }
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(6,6,8,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,160,23,0.1);
  z-index: 9000;
  transition: border-color 0.3s ease, background 0.3s ease;
}
#navbar.scrolled {
  background: rgba(6,6,8,0.95);
  border-bottom-color: rgba(212,160,23,0.4);
  box-shadow: 0 0 30px rgba(212,160,23,0.08);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--rose-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerBg 4s ease infinite;
  transition: filter 0.3s ease;
}
.nav-logo:hover { filter: drop-shadow(0 0 12px rgba(212,160,23,0.8)); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-primary) !important;
  padding: 8px 20px;
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(212,160,23,0.3);
  transition: box-shadow 0.3s ease, transform 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 0 30px rgba(212,160,23,0.7) !important; transform: scale(1.04); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  z-index: 9001;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
#mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6,6,8,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  gap: 0;
  z-index: 9000;
  overflow-y: auto;
  overflow-x: hidden;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--warm-white);
  border-bottom: 1px solid rgba(212,160,23,0.1);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  opacity: 1;
}
#mobile-menu a:hover,
#mobile-menu a:active { color: var(--gold-light); background: rgba(212,160,23,0.07); }
#mobile-menu .mobile-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-primary) !important;
  font-weight: 900;
  border-radius: 4px;
  width: calc(100% - 4rem);
  padding: 1rem 2rem;
  border-bottom: none !important;
  opacity: 1 !important;
  box-shadow: 0 0 30px rgba(212,160,23,0.4);
}

/* Scroll lock when menu open — unlock when closed */
body.menu-open { overflow: hidden; }
/* body scroll restored on menu close via JS classList.remove */

/* ---- GRADIENT TEXT UTILITY ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--rose-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerBg 4s ease infinite;
  /* Padding prevents webkit from clipping the final letter's right edge */
  padding-right: 0.08em;
  /* Ensure the box extends far enough for the background to paint */
  display: inline-block;
}
@keyframes shimmerBg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* GLITCH EFFECT */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glitch::before {
  animation: glitchA 0.3s ease;
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
  transform: translateX(-3px);
  opacity: 0;
}
.glitch::after {
  animation: glitchB 0.3s ease 0.05s;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  transform: translateX(3px);
  opacity: 0;
  filter: hue-rotate(60deg);
}
.glitch.glitching::before { opacity: 1; }
.glitch.glitching::after { opacity: 1; }
@keyframes glitchA {
  0%,100% { clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%); transform: translateX(0); }
  20% { clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); transform: translateX(-4px); }
  40% { clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%); transform: translateX(3px); }
  60% { clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%); transform: translateX(-2px); }
  80% { clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%); transform: translateX(4px); }
}
@keyframes glitchB {
  0%,100% { clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); transform: translateX(0); }
  25% { clip-path: polygon(0 40%, 100% 40%, 100% 55%, 0 55%); transform: translateX(3px); }
  50% { clip-path: polygon(0 75%, 100% 75%, 100% 90%, 0 90%); transform: translateX(-3px); }
  75% { clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%); transform: translateX(2px); }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 20px rgba(212,160,23,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(212,160,23,0.7);
  filter: brightness(1.1);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold-primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 4px;
  border: 1.5px solid var(--gold-primary);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  transition: left 0.4s ease;
  z-index: 0;
}
.btn-secondary span { position: relative; z-index: 1; }
.btn-secondary:hover { color: var(--bg-primary); box-shadow: 0 0 30px rgba(212,160,23,0.5); transform: scale(1.03); }
.btn-secondary:hover::before { left: 0; }

/* ---- GLASSMORPHISM CARDS ---- */
.glass-card {
  background: rgba(19,16,26,0.6);
  border: 1px solid rgba(212,160,23,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.glass-card:hover {
  border-color: rgba(212,160,23,0.7);
  box-shadow: 0 8px 40px rgba(212,160,23,0.2), 0 0 0 1px rgba(212,160,23,0.1);
  transform: translateY(-4px);
}

/* ---- AVATAR PLACEHOLDER ---- */
.avatar-img-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #1A0F2E, #2D1B0E, #1A0F2E);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  gap: 10px;
}
.avatar-img-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.12), transparent);
  animation: shimmerSweep 2.5s ease infinite;
}
@keyframes shimmerSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}
.avatar-img-placeholder .ph-icon { font-size: 2.5rem; }
.avatar-img-placeholder .ph-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: 0 16px;
}

/* ---- SECTION LABELS ---- */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid rgba(212,160,23,0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
}
.section-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}
.divider-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--rose-gold));
  margin: 18px 0;
  border-radius: 1px;
}

/* ---- BADGE PILLS ---- */
.badge {
  display: inline-flex; align-items: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.badge-gold { background: rgba(212,160,23,0.15); color: var(--gold-light); border: 1px solid rgba(212,160,23,0.4); }
.badge-lilac { background: rgba(167,139,212,0.15); color: var(--lilac-glow); border: 1px solid rgba(167,139,212,0.4); }
.badge-rose { background: rgba(192,115,122,0.15); color: var(--rose-gold); border: 1px solid rgba(192,115,122,0.4); }
.badge-muted { background: rgba(154,143,160,0.1); color: var(--text-muted); border: 1px solid rgba(154,143,160,0.3); }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.15s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.45s; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding-top: var(--nav-height);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-left: 8%;
  padding-right: 8%;
  position: relative;
  overflow: hidden;
}
.page-hero.center { justify-content: center; text-align: center; flex-direction: column; }
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  /* right padding prevents letter-spacing from clipping last char */
  padding-right: 0.08em;
}

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212,160,23,0.1);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
}
.marquee-track span { margin: 0 24px; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- FOOTER ---- */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212,160,23,0.25);
  padding: 60px 8% 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.footer-social-btn:hover { border-color: var(--gold-primary); color: var(--gold-light); }
.footer-links-col h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.footer-links-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}
.footer-links-col a:hover { color: var(--warm-white); }
.footer-watermark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: rgba(212,160,23,0.07);
  line-height: 1.1;
  text-align: right;
  user-select: none;
}
.footer-bottom {
  border-top: 1px solid rgba(212,160,23,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ---- FORM STYLES ---- */
.form-wrapper {
  background: rgba(19,16,26,0.8);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px;
  padding: 48px;
  backdrop-filter: blur(10px);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(6,6,8,0.7);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 6px;
  padding: 13px 18px;
  color: var(--warm-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group select option { background: #1a1020; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit {
  width: 100%;
  padding: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(212,160,23,0.4);
  transition: all 0.3s ease;
  margin-top: 12px;
}
.btn-submit:hover { box-shadow: 0 0 50px rgba(212,160,23,0.7); transform: translateY(-2px); }

/* Radio/Toggle Buttons */
.toggle-group { display: flex; gap: 10px; flex-wrap: wrap; }
.toggle-btn {
  padding: 10px 22px;
  border: 1.5px solid rgba(212,160,23,0.3);
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.toggle-btn.active, .toggle-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(212,160,23,0.1);
}
.toggle-btn.active { background: rgba(212,160,23,0.15); }

/* Upload Zone */
.upload-zone {
  border: 2px dashed rgba(212,160,23,0.3);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.upload-zone:hover { border-color: var(--gold-primary); color: var(--gold-light); background: rgba(212,160,23,0.05); }
.upload-zone .upload-icon { font-size: 2rem; margin-bottom: 8px; display: block; }

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ---- SCROLL INDICATOR ---- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s ease infinite;
  color: var(--gold-primary);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  opacity: 0.7;
}
.scroll-indicator svg { width: 20px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- TILT EFFECT ---- */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes borderGlow {
  0%,100% { box-shadow: 0 0 8px rgba(212,160,23,0.3); }
  50% { box-shadow: 0 0 24px rgba(212,160,23,0.7); }
}
@keyframes gradientSweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulseGold {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,160,23,0); }
}
@keyframes starfieldDrift {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .nav-links { gap: 18px; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-watermark { text-align: left; font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
  .page-hero { padding-left: 5%; padding-right: 5%; }
  .mk-cursor, .mk-cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (max-width: 480px) {
  .page-hero-title { font-size: clamp(3rem, 12vw, 5rem); }
}

/* ---- PRINT ---- */
@media print {
  #navbar, footer, .mk-cursor, .mk-cursor-ring, #loading-screen { display: none !important; }
  body { background: white; color: black; }
}

/* ============================================
   MELANINKUSH — ADDITIONS v2
   Age gate, event bar, events page, pulse dot,
   NSFW badges, countdown, email signup
   ============================================ */

/* ---- EVENT ANNOUNCEMENT BAR ---- */
#event-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  background-size: 200% 100%;
  animation: shimmerBg 3s ease infinite;
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#event-bar .eb-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  letter-spacing: 0.12em;
  color: var(--bg-primary);
  flex: 1;
  text-align: center;
}
#event-bar .eb-btn {
  flex-shrink: 0;
  background: var(--bg-primary);
  color: var(--gold-primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
#event-bar .eb-btn:hover { background: rgba(6,6,8,0.85); }
#event-bar .eb-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--bg-primary);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  padding: 0 4px;
}
body.has-event-bar { padding-top: 38px; }
body.has-event-bar #navbar { top: 38px; }
@media (max-width: 600px) {
  body.has-event-bar { padding-top: 52px; }
  body.has-event-bar #navbar { top: 52px; }
  #event-bar { flex-wrap: wrap; gap: 6px; padding: 6px 4%; }
  #event-bar .eb-text { font-size: 0.65rem; }
}

/* ---- PULSE DOT (Events nav link) ---- */
.nav-pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: #FF4444;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.nav-pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255,68,68,0.4);
  animation: navPulse 2s ease infinite;
}
@keyframes navPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(2); opacity: 0; }
}

/* ---- FOOTER EMAIL SIGNUP ---- */
.footer-email-signup {
  background: rgba(19,16,26,0.6);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 48px;
  max-width: 680px;
}
.footer-email-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding-right: 0.08em;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.footer-email-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-email-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-email-row input {
  flex: 1;
  min-width: 180px;
  background: rgba(6,6,8,0.8);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 4px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.3s ease;
}
.footer-email-row input:focus { border-color: var(--gold-primary); }
.footer-email-row input::placeholder { color: var(--text-muted); }
.footer-email-row button {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.footer-email-row button:hover { box-shadow: 0 0 20px rgba(212,160,23,0.35); transform: translateY(-1px); }
.footer-email-fine {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 10px;
  opacity: 0.7;
}
.footer-nsfw-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(180,30,30,0.2); border: 1px solid rgba(200,50,50,0.4);
  color: #FF6B6B; font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-top: 8px;
}

/* ---- COUNTDOWN TIMER ---- */
.countdown-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0;
}
.countdown-box {
  background: rgba(6,6,8,0.8);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 8px;
  padding: 20px 24px;
  min-width: 80px;
  text-align: center;
}
.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  padding-right: 0.05em;
  line-height: 1;
  display: block;
}
.countdown-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* ---- EVENTS PAGE ---- */
.events-hero {
  min-height: 65vh;
  height: auto;
  display: flex; align-items: center; justify-content: center;
  text-align: center; flex-direction: column;
  padding: calc(var(--nav-height) + 40px) 5% 60px;
  position: relative; overflow: hidden;
}
.events-hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.events-hero-radial {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(92,51,23,0.4) 0%, rgba(6,6,8,0.9) 70%);
  z-index: 1;
}
.events-hero-content { position: relative; z-index: 2; }
.event-next-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.45);
  color: var(--gold-light);
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 20px; margin-bottom: 24px;
  animation: pulseGold 2.5s ease infinite;
}

/* EVENT TICKET CARD */
.event-ticket {
  max-width: 960px; margin: 0 auto;
  background: rgba(15,10,20,0.9);
  border: 1px solid rgba(212,160,23,0.5);
  border-radius: 16px;
  padding: 0;
  position: relative; overflow: hidden;
  animation: borderGlow 3s ease infinite;
}
.event-ticket::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.event-ticket::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.05), transparent);
  animation: shimmerSweep 5s ease infinite;
  pointer-events: none;
}
.ticket-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-light));
}
.ticket-upcoming-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(200,30,30,0.8);
  color: white;
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid rgba(255,80,80,0.4);
}
.ticket-inner { padding: 40px 48px 40px 54px; }
.ticket-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.08em; padding-right: 0.08em;
  margin-bottom: 4px; line-height: 1;
}
.ticket-meta {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  margin-bottom: 28px; margin-top: 8px;
}
.ticket-meta-item {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); display: flex; align-items: center; gap: 6px;
}
.ticket-meta-item strong { color: var(--gold-light); }
.ticket-stats-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 24px;
}
.ticket-stat {
  background: rgba(6,6,8,0.6); border: 1px solid rgba(212,160,23,0.18);
  border-radius: 10px; padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.ticket-stat-icon { font-size: 1.6rem; flex-shrink: 0; }
.ticket-stat-val {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: 0.06em; padding-right: 0.06em; line-height: 1; margin-bottom: 2px;
}
.ticket-stat-lbl { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; }
.ticket-rules {
  background: rgba(6,6,8,0.5); border: 1px solid rgba(212,160,23,0.12);
  border-left: 3px solid rgba(212,160,23,0.6);
  border-radius: 8px; padding: 18px 22px; margin-bottom: 20px;
}
.ticket-rules-title {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-primary); margin-bottom: 10px;
}
.ticket-rules ul { list-style: none; }
.ticket-rules li {
  font-size: 0.85rem; color: var(--text-muted);
  padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.ticket-rules li::before { content: '•'; color: var(--gold-primary); flex-shrink: 0; margin-top: 2px; }
.ticket-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

/* WHAT TO EXPECT SECTION */
.expect-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 50px;
}
.expect-card {
  background: rgba(19,16,26,0.7); border: 1px solid rgba(212,160,23,0.18);
  border-radius: 12px; padding: 32px 24px;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.expect-card:hover {
  border-color: rgba(212,160,23,0.55); transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(212,160,23,0.13);
}
.expect-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.expect-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  letter-spacing: 0.08em; padding-right: 0.08em;
  color: var(--warm-white); margin-bottom: 10px;
}
.expect-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* SQUAD SECTION */
.squad-section {
  padding: 80px 8%; background: #0A0714;
  border-top: 1px solid rgba(212,160,23,0.08);
}
.squad-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 50px;
}
.squad-text { }
.squad-text p {
  font-size: 1.1rem; line-height: 1.8; color: var(--text-muted);
}
.squad-text p strong { color: var(--warm-white); }
.squad-card {
  background: rgba(19,16,26,0.8); border: 1px solid rgba(212,160,23,0.35);
  border-radius: 14px; padding: 36px 32px;
  animation: borderGlow 3s ease infinite;
}
.squad-card-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  letter-spacing: 0.08em; padding-right: 0.08em;
  color: var(--warm-white); margin-bottom: 6px;
}
.squad-card-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
  letter-spacing: 0.05em; padding-right: 0.06em; line-height: 1; margin-bottom: 20px;
}
.squad-features { list-style: none; margin-bottom: 24px; }
.squad-features li {
  font-size: 0.88rem; color: var(--warm-white);
  padding: 7px 0; border-bottom: 1px solid rgba(212,160,23,0.08);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.squad-features li::before { content: '✦'; color: var(--gold-primary); font-size: 0.5rem; flex-shrink: 0; margin-top: 4px; }

/* PAST EVENTS */
.past-events-section { padding: 80px 8%; }
.past-events-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 50px;
}
.past-card {
  background: rgba(19,16,26,0.7); border: 1px solid rgba(212,160,23,0.15);
  border-radius: 12px; overflow: hidden;
  transition: all 0.4s ease;
}
.past-card:hover { border-color: rgba(212,160,23,0.4); transform: translateY(-4px); }
.past-card-img {
  height: 200px; background: rgba(6,6,8,0.6);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 8px; color: var(--text-muted);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid rgba(212,160,23,0.1);
  position: relative;
}
.past-card-img::after {
  content: '📸';
  font-size: 2.5rem; opacity: 0.4;
}
.past-card-body { padding: 20px; }
.past-card-date { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.past-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.08em; padding-right: 0.08em; color: var(--warm-white); margin-bottom: 8px; }
.past-card-count { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }
.sold-out-badge {
  display: inline-block;
  background: rgba(200,30,30,0.2); border: 1px solid rgba(200,50,50,0.4);
  color: #FF6B6B; font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.past-events-note {
  text-align: center; margin-top: 32px;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.9rem; color: rgba(212,160,23,0.5);
}

/* EMAIL NOTIFY SECTION */
.notify-section {
  padding: 80px 8%;
  background: rgba(19,16,26,0.5);
  border-top: 1px solid rgba(212,160,23,0.08);
}
.notify-card {
  max-width: 620px; margin: 0 auto; text-align: center;
}
.notify-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.notify-form input {
  flex: 1; min-width: 200px;
  background: rgba(6,6,8,0.8); border: 1px solid rgba(212,160,23,0.25);
  border-radius: 4px; padding: 12px 18px;
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 0.88rem;
  color: var(--warm-white); outline: none; transition: border-color 0.3s ease;
}
.notify-form input:focus { border-color: var(--gold-primary); }
.notify-form input::placeholder { color: var(--text-muted); }
.notify-form button {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-primary); font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 12px 24px; border: none; border-radius: 4px; cursor: pointer;
  transition: all 0.3s ease; white-space: nowrap;
}
.notify-form button:hover { box-shadow: 0 0 24px rgba(212,160,23,0.4); transform: translateY(-2px); }
.notify-fine { font-size: 0.7rem; color: var(--text-muted); margin-top: 10px; opacity: 0.7; }

/* ---- NSFW OPTIONAL BADGE (site-wide) ---- */
.nsfw-optional-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(140,20,20,0.15); border: 1px solid rgba(200,50,50,0.28);
  color: #FF8080; font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  cursor: default; transition: all 0.3s ease;
}
.nsfw-optional-badge:hover {
  transform: scale(1.05); box-shadow: 0 0 10px rgba(200,50,50,0.22);
}
.nsfw-tooltip {
  position: relative; display: inline-block;
}
.nsfw-tooltip .nsfw-tip-text {
  display: none;
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(15,10,20,0.98); border: 1px solid rgba(200,50,50,0.3);
  color: var(--warm-white); font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: 0.72rem; line-height: 1.5; padding: 10px 14px; border-radius: 6px;
  white-space: nowrap; max-width: 260px; white-space: normal; z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nsfw-tooltip:hover .nsfw-tip-text { display: block; }

/* ---- SHOP PAGE REWORK ---- */
.shop-drops-card {
  max-width: 860px; margin: 50px auto 0;
  background: rgba(19,16,26,0.85); border: 1px solid rgba(212,160,23,0.35);
  border-radius: 16px; padding: 52px; position: relative; overflow: hidden;
  animation: borderGlow 4s ease infinite;
}
.shop-drops-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,160,23,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.shop-drop-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,50,50,0.15); border: 1px solid rgba(200,50,50,0.4);
  color: #FF7070; font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
  animation: pulseGold 2.5s ease infinite;
}
.shop-drop-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem,7vw,6rem);
  letter-spacing: 0.06em; padding-right: 0.08em; line-height: 1;
  text-align: center; margin-bottom: 8px;
}
.shop-drop-nsfw {
  text-align: center; font-size: 0.8rem; color: var(--text-muted);
  font-family: 'Raleway', sans-serif; margin-bottom: 32px;
}
.shop-drop-nsfw strong { color: #FF8A8A; }
.shop-drop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.shop-drop-col-title {
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 12px;
}
.shop-drop-stat { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.06em; padding-right: 0.06em; margin-bottom: 10px; }
.shop-drop-breakdown { list-style: none; }
.shop-drop-breakdown li { font-size: 0.85rem; color: var(--text-muted); padding: 3px 0; display: flex; align-items: center; gap: 8px; }
.shop-drop-breakdown li::before { content: '—'; color: var(--gold-primary); }
.shop-drop-checks { list-style: none; }
.shop-drop-checks li { font-size: 0.88rem; color: var(--warm-white); padding: 7px 0; border-bottom: 1px solid rgba(212,160,23,0.08); display: flex; gap: 8px; line-height: 1.4; }
.shop-drop-checks li::before { content: '✅'; flex-shrink: 0; }
.shop-scarcity { margin-bottom: 28px; }
.scarcity-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; font-family: 'Raleway', sans-serif; }
.scarcity-bar { height: 6px; background: rgba(212,160,23,0.12); border-radius: 3px; overflow: hidden; }
.scarcity-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold-primary), var(--gold-light)); width: 100%; transition: width 1s ease; }

/* RESPONSIVE EVENTS/SHOP */
@media (max-width: 900px) {
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .squad-grid { grid-template-columns: 1fr; }
  .past-events-grid { grid-template-columns: 1fr; max-width: 440px; margin: 50px auto 0; }
  .ticket-stats-row { grid-template-columns: 1fr; }
  .shop-drop-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .expect-grid { grid-template-columns: 1fr; }
  .ticket-inner { padding: 28px 24px 28px 30px; }
  .ticket-ctas { flex-direction: column; }
  .countdown-box { padding: 14px 16px; min-width: 60px; }
}

/* ---- NAV EVENT BADGE ---- */
.nav-event-badge {
  display: none;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.55rem;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -6px;
  flex-shrink: 0;
}

/* ---- COUNTDOWN PASSED ---- */
.countdown-passed {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(212,160,23,0.5);
  text-align: center;
  padding: 16px 0;
}

/* ---- AUDITION EVENT CARD ---- */
.audition-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #C0392B;
  color: white;
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid rgba(255,100,100,0.3);
}
.audition-upcoming-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,165,0,0.12);
  border: 1px solid rgba(255,165,0,0.4);
  color: #FFA500;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  animation: pulseGold 2s ease infinite;
}
.audition-promo-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(212,160,23,0.3);
  margin: 20px 0;
  transition: filter 0.3s ease;
}
.audition-promo-img:hover { filter: brightness(1.06); }

/* ---- RUNWAY PIPELINE CONNECTOR ---- */
.runway-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 36px auto;
  max-width: 800px;
  background: rgba(19,16,26,0.7);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50px;
  padding: 14px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
}
.runway-pipeline::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.04), transparent);
  background-size: 200% 100%;
  animation: shimmerBg 3s ease infinite;
}
.rp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.12em;
  padding-right: 0.12em;
  color: var(--gold-light);
  white-space: nowrap;
}
.rp-step-icon { font-size: 1.2rem; }
.rp-arrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: rgba(212,160,23,0.45);
  margin: 0 20px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .runway-pipeline { flex-direction: column; border-radius: 16px; padding: 18px 24px; gap: 8px; }
  .rp-arrow { transform: rotate(90deg); margin: 4px 0; }
  .rp-step { font-size: 0.85rem; }
}

/* ---- AUDITION CALLOUT (inside march 28 card) ---- */
.audition-callout {
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.3);
  border-left: 3px solid var(--gold-primary);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
}
.audition-callout-title {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-primary); margin-bottom: 6px;
}
.audition-callout a {
  color: var(--gold-light);
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.78rem; text-decoration: underline;
  text-decoration-color: rgba(212,160,23,0.3);
  transition: color 0.2s;
}
.audition-callout a:hover { color: var(--warm-white); }

/* ---- EVENT BAR MARQUEE (dual event) ---- */
#event-bar {
  display: flex !important;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.eb-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.eb-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.9rem);
  letter-spacing: 0.1em;
  color: var(--bg-primary);
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   MEGA UPDATE — NEW GLOBAL COMPONENTS
   ═══════════════════════════════════════════════════ */

/* ── CREATOR'S FAVORITE BADGE ── */
.fave-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-primary);
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  animation: pulseGold 3s ease infinite;
  white-space: nowrap;
}
.fave-star { animation: spin 4s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── HERO PORTRAIT (index) ── */
.hero-split { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; text-align: left; max-width: 1100px; margin: 0 auto; }
.hero-portrait-wrap { position: relative; flex-shrink: 0; }
.hero-portrait-ring {
  width: clamp(220px, 22vw, 340px);
  height: clamp(320px, 38vw, 520px);
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, #D4A017, #F0C040, #C0737A, #D4A017);
  background-size: 300% 300%;
  animation: gradientSweep 5s ease infinite, heroGlow 4s ease infinite;
  position: relative;
  overflow: hidden;
}
@keyframes heroGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(212,160,23,0.3), 0 0 80px rgba(212,160,23,0.1); }
  50% { box-shadow: 0 0 70px rgba(212,160,23,0.55), 0 0 140px rgba(212,160,23,0.2); }
}
.hero-portrait-img {
  width: 100%; height: 100%;
  border-radius: 22px;
  object-fit: contain;
  object-position: center top;
  background: #0A0A0A;
  display: block;
}
.hero-portrait-fave {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
.hero-gold-halo {
  position: absolute; inset: -20px;
  border-radius: 28px;
  background: radial-gradient(ellipse, rgba(212,160,23,0.18) 0%, transparent 70%);
  animation: haloBreath 3s ease infinite;
  pointer-events: none;
}
@keyframes haloBreath {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-portrait-ring { width: 180px; height: 260px; }
}

/* ── SHOWCASE CINEMATIC BANNER ── */
.showcase-banner {
  position: relative; overflow: hidden;
  height: clamp(320px, 40vw, 520px);
  background: #060608;
  display: flex; align-items: center; justify-content: center;
}
.showcase-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
  transition: transform 8s ease;
}
.showcase-banner:hover .showcase-banner-img { transform: scale(1); }
.showcase-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,6,8,0.75) 0%, rgba(6,6,8,0.4) 50%, rgba(6,6,8,0.75) 100%);
}
.showcase-banner-text {
  position: relative; z-index: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 4vw, 3.5rem);
  letter-spacing: 0.15em; padding-right: 0.15em;
  color: var(--warm-white);
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.showcase-banner-text span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.38em;
  color: rgba(212,160,23,0.8);
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ── THUMBNAIL AVATAR MARQUEE ── */
.avatar-marquee {
  padding: 24px 0;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212,160,23,0.08);
  border-bottom: 1px solid rgba(212,160,23,0.08);
}
.avatar-marquee-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.avatar-thumb {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 2px solid rgba(212,160,23,0.3);
  flex-shrink: 0;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.avatar-thumb:hover { border-color: var(--gold-primary); transform: scale(1.12); }

/* ── DISCORD BANNER (contact) ── */
.discord-priority-banner {
  background: rgba(88,101,242,0.08);
  border: 1px solid rgba(88,101,242,0.3);
  border-left: 4px solid #5865F2;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.discord-banner-title {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #7289DA; margin-bottom: 10px;
}
.discord-banner-text {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px;
}
.discord-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #5865F2;
  color: white;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.discord-btn:hover { background: #4752C4; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(88,101,242,0.35); }
.discord-no-discord {
  display: block; margin-top: 10px;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.8rem; color: var(--text-muted);
}

/* ── DISCORD SLIM CALLOUT (commissions) ── */
.discord-slim {
  background: rgba(88,101,242,0.06);
  border: 1px solid rgba(88,101,242,0.25);
  border-left: 3px solid #5865F2;
  border-radius: 8px;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin: 40px 0;
}
.discord-slim-text {
  font-size: 0.88rem; color: var(--text-muted);
}
.discord-slim-text strong { color: var(--warm-white); }
.discord-slim-note {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.75rem; color: rgba(212,160,23,0.45);
  display: block; margin-top: 4px;
}

/* ── PORTFOLIO SHOWCASE DIVIDER BANNERS ── */
.portfolio-showcase-divider {
  position: relative; overflow: hidden;
  height: clamp(120px, 18vw, 220px);
  margin: 40px 0;
  border-radius: 12px;
  border: 1px solid rgba(212,160,23,0.2);
}
.portfolio-showcase-divider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.portfolio-showcase-divider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,6,8,0.7), rgba(6,6,8,0.35), rgba(6,6,8,0.7));
  display: flex; align-items: center; justify-content: center;
}
.portfolio-showcase-divider-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  letter-spacing: 0.2em; padding-right: 0.2em;
  color: var(--warm-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ── ABOUT "WORK THAT SPEAKS" ── */
.work-speaks-section {
  padding: 80px 8%;
  text-align: center;
  background: #0F0A05;
  border-top: 1px solid rgba(212,160,23,0.08);
}
.work-speaks-img-wrap {
  position: relative;
  display: inline-block;
  max-width: 500px;
  margin: 32px auto;
}
.work-speaks-img {
  width: 100%; display: block;
  border-radius: 16px;
  border: 2px solid rgba(212,160,23,0.45);
  box-shadow: 0 0 50px rgba(212,160,23,0.2), 0 0 100px rgba(212,160,23,0.06);
}
.work-speaks-fave { position: absolute; top: -12px; right: -12px; }
.work-speaks-caption {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: var(--gold-light);
  margin-top: 16px;
}

/* ── ABOUT AVATAR COLLAGE STRIP ── */
.avatar-collage-strip {
  padding: 60px 8%;
  text-align: center;
}
.avatar-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.avatar-collage-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: top center;
  border-radius: 10px;
  border: 1px solid rgba(212,160,23,0.2);
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.avatar-collage-img:hover { border-color: var(--gold-primary); transform: scale(1.02); }
.avatar-collage-caption {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.9rem; color: rgba(212,160,23,0.6);
}

/* ── CONTACT PORTRAIT LAYOUT ── */
.contact-with-portrait {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8%;
}
.contact-portrait img {
  width: 100%; border-radius: 16px;
  border: 2px solid rgba(212,160,23,0.35);
  object-fit: cover; object-position: top center;
  box-shadow: 0 0 30px rgba(212,160,23,0.12);
}
.loyalty-visual {
  margin-top: 40px; text-align: center;
  padding: 60px 8%; background: #0A0714;
  border-top: 1px solid rgba(212,160,23,0.08);
}
.loyalty-img {
  width: clamp(200px, 30vw, 360px);
  border-radius: 12px;
  border: 1px solid rgba(212,160,23,0.3);
  box-shadow: 0 0 30px rgba(212,160,23,0.1);
  object-fit: cover; object-position: top center;
}
.loyalty-caption {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: rgba(212,160,23,0.65);
  margin-top: 14px;
}
@media (max-width: 768px) {
  .contact-with-portrait { grid-template-columns: 1fr; gap: 24px; }
  .contact-portrait img { max-width: 240px; margin: 0 auto; display: block; }
}

/* ── PRESS PORTRAIT ── */
.press-hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
}
.press-portrait-wrap { position: relative; flex-shrink: 0; }
.press-portrait-img {
  width: clamp(180px, 22vw, 320px);
  border-radius: 12px;
  object-fit: cover; object-position: top center;
  border: 2px solid rgba(212,160,23,0.4);
  box-shadow: 0 0 40px rgba(212,160,23,0.18);
  display: block;
}
.press-portrait-fave { position: absolute; top: -10px; right: -10px; }
.press-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 60px 8%;
  background: #0A0714;
  border-top: 1px solid rgba(212,160,23,0.08);
}
.press-gallery-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: top center;
  border-radius: 8px;
  filter: brightness(0.9);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.press-gallery-img:hover { filter: brightness(1.1); transform: scale(1.02); }
@media (max-width: 768px) {
  .press-hero-split { grid-template-columns: 1fr; }
  .press-portrait-img { max-width: 200px; margin: 0 auto; }
  .press-gallery-strip { grid-template-columns: 1fr; }
}

/* ── SHOP HERO IMAGE BG ── */
.shop-hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  z-index: 0;
  filter: brightness(0.35);
}
.shop-hero { position: relative; overflow: hidden; }

/* ── SHOP EXCLUSIVE DROP CARDS ── */
.exclusive-drop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.exclusive-drop-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.exclusive-drop-card:hover {
  border-color: rgba(212,160,23,0.6);
  box-shadow: 0 16px 40px rgba(212,160,23,0.18);
  transform: translateY(-6px);
}
.exclusive-drop-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: top center;
  display: block;
  transition: filter 0.3s ease;
}
.exclusive-drop-card:hover .exclusive-drop-img { filter: brightness(1.08); }
.exclusive-drop-body { padding: 18px 20px; }
.exclusive-drop-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.08em;
  color: var(--gold-light); margin-bottom: 4px;
}
.exclusive-drop-label {
  font-size: 0.75rem; color: var(--text-muted);
  font-style: italic; margin-bottom: 12px;
}
.exclusive-drop-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .exclusive-drop-grid { grid-template-columns: 1fr; }
  .avatar-collage-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   GLOBAL SCROLL + OVERFLOW FIXES (v3 patch)
   ═══════════════════════════════════════════════════ */

/* Master scroll — nothing blocks vertical scroll */
html { overflow-y: auto; }
body { overflow-y: auto; min-height: 100vh; height: auto; }

/* All sections scroll freely */
section { height: auto !important; overflow: visible !important; }
section.events-hero, header.events-hero { height: auto; min-height: 60vh; }

/* Particle canvases, decorative overlays — NEVER block scroll/clicks */
canvas,
.particle-overlay,
.hero-overlay,
.events-hero-canvas,
#hero-canvas,
.events-hero-radial,
.hero-radial,
.starfield,
.press-hero-bg,
.shop-shimmer,
.comm-hero::before,
.about-hero::before,
[class*="particles"] {
  pointer-events: none !important;
}

/* Nav stays highest */
#navbar { z-index: 9999 !important; }
#mobile-menu { z-index: 9998 !important; }
#event-bar { z-index: 9000 !important; }

/* ═══════════════════════════════════════════════════
   IMAGE DISPLAY FIXES — SHOW FULL IMAGES
   ═══════════════════════════════════════════════════ */

/* Global safety net */
img { max-width: 100%; height: auto; }

/* Portfolio cards — CONTAIN so full body is always visible */
.avatar-real-img {
  width: 100% !important;
  aspect-ratio: 4 / 5;
  object-fit: contain !important;
  object-position: center top !important;
  background-color: #0A0A0A;
  padding: 4px;
  display: block;
  transition: filter 0.3s ease;
}

/* Duo/couple card — centered contain */
.avatar-card-duo .avatar-real-img {
  aspect-ratio: 3 / 2;
  object-fit: contain !important;
  object-position: center center !important;
  background-color: #0A0A0A;
}

/* Showcase/cinematic banner images — cover is correct (atmospheric) */
.showcase-banner-img,
.portfolio-showcase-divider img,
.past-card-img {
  object-fit: cover !important;
  object-position: center !important;
}

/* About page creator portrait */
.creator-portrait-img {
  width: 100%;
  max-width: 420px;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

/* Favorite picture (Full-body-pic) */
.work-speaks-img {
  width: 100%;
  max-width: 560px;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}

/* Press portrait */
.press-portrait-img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  max-width: 320px;
  display: block;
}

/* Contact portrait */
.contact-portrait img {
  width: 100%;
  max-width: 300px;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 16px;
  display: block;
}

/* Hero portrait ring — full body visible */
.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center top !important;
  background: #0A0A0A;
}

/* Avatar collage strip images */
.avatar-collage-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain !important;
  object-position: center top !important;
  background: #0A0A0A;
  border-radius: 10px;
  border: 1px solid rgba(212,160,23,0.2);
}

/* Avatar thumbnail marquee */
.avatar-thumb {
  width: 80px; height: 80px;
  object-fit: contain !important;
  background: #0A0A0A;
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Featured cards */
.featured-card div > img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center top !important;
  background: #0A0A0A;
}

/* Exclusive drop cards */
.exclusive-drop-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain !important;
  object-position: center top !important;
  background: #0A0A0A;
  display: block;
}

/* Loyalty visual */
.loyalty-img {
  width: clamp(200px, 30vw, 360px);
  height: auto !important;
  object-fit: contain !important;
  border-radius: 12px;
  border: 1px solid rgba(212,160,23,0.3);
  display: block;
  margin: 0 auto;
}

/* Press gallery strip */
.press-gallery-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain !important;
  object-position: center top !important;
  background: #0A0A0A;
  border-radius: 8px;
}

/* Shop hero bg — cover stays */
.shop-hero-bg-img {
  object-fit: cover !important;
  filter: brightness(0.35);
}

/* Audition promo images — contain to show full flyer */
.audition-promo-img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto 20px;
  border-radius: 12px;
  border: 1px solid rgba(212,160,23,0.35);
}

/* ═══════════════════════════════════════════════════
   DEPOSIT WARNING BANNER
   ═══════════════════════════════════════════════════ */
.deposit-warning-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(180,40,40,0.25), rgba(120,20,20,0.35));
  border: 1px solid rgba(220,60,60,0.6);
  border-left: 5px solid #DC3545;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem auto 0;
  max-width: 900px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.deposit-warning-banner strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #FF6B6B;
  margin-bottom: 0.5rem;
}
.deposit-warning-banner p {
  color: var(--warm-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}
.deposit-warning-banner p strong { color: #FF6B6B; font-size: 1em; display: inline; font-family: inherit; letter-spacing: normal; }
.deposit-warning-banner .warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   DEPOSIT CHECKBOX
   ═══════════════════════════════════════════════════ */
.deposit-confirm-check {
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 20px; height: 20px;
  min-width: 20px;
  accent-color: var(--gold-primary);
  margin-top: 3px;
  cursor: pointer;
}
.check-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--warm-white);
}
.check-text strong { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════
   ABOUT PAGE — EXTRA IMAGE SECTIONS
   ═══════════════════════════════════════════════════ */
.about-second-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.about-second-row img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain !important;
  object-position: center top;
  background: #0A0A0A;
  border-radius: 12px;
  border: 1px solid rgba(212,160,23,0.2);
  transition: border-color 0.3s ease;
}
.about-second-row img:hover { border-color: rgba(212,160,23,0.6); }
.portfolio-taste {
  padding: 60px 8%;
  background: #060608;
  border-top: 1px solid rgba(212,160,23,0.08);
  text-align: center;
}
.portfolio-taste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 24px auto;
}
.portfolio-taste-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain !important;
  object-position: center top;
  background: #0A0A0A;
  border-radius: 10px;
  border: 1px solid rgba(212,160,23,0.15);
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.portfolio-taste-grid img:hover { border-color: var(--gold-primary); transform: scale(1.02); }
.portfolio-taste-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(212,160,23,0.55);
  margin-top: 8px;
}
@media (max-width: 640px) {
  .about-second-row { grid-template-columns: 1fr; }
  .portfolio-taste-grid { grid-template-columns: 1fr; }
  .avatar-collage-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   PRESS PAGE — CLEAN SPEC STRUCTURE (v5)
   ═══════════════════════════════════════════════════ */

.page-wrapper {
  overflow: visible;
  height: auto;
  min-height: 100vh;
}

.press-hero {
  min-height: 50vh;
  height: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 5% 3rem;
  position: relative; z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(92,51,23,0.3) 0%, rgba(6,6,8,0.95) 70%);
}

.press-quote-section {
  display: flex; flex-direction: column;
  align-items: center; padding: 3rem 2rem; gap: 1.5rem;
  text-align: center;
  background: rgba(19,16,26,0.6);
  border-top: 1px solid rgba(212,160,23,0.1);
  border-bottom: 1px solid rgba(212,160,23,0.1);
}

.press-portrait-wrap { position: relative; display: inline-block; }

.press-portrait {
  max-width: 320px; width: 100%; height: auto;
  max-height: 440px;
  object-fit: contain;
  object-position: center top;
  border-radius: 16px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 30px rgba(212,160,23,0.3);
  background: #0A0A0A;
  display: block;
}

.press-portrait-wrap .fav-badge {
  position: absolute; top: -10px; right: -10px;
  background: linear-gradient(135deg, #D4A017, #F0C040);
  color: #060608; font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem; letter-spacing: 2px; padding: 5px 12px;
  border-radius: 20px; white-space: nowrap;
}

.press-quote-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.2rem); color: var(--warm-white);
  max-width: 650px; line-height: 1.5;
  border: none; padding: 0; margin: 0;
  quotes: none;
}

.press-quote-attr {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-primary);
}

.press-features {
  padding: 4rem 5%;
  max-width: 1300px; margin: 0 auto;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 2rem;
}

.press-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto; display: flex; flex-direction: column;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.2);
  border-color: rgba(212,160,23,0.5);
}

.video-embed-wrapper {
  position: relative; width: 100%;
  padding-bottom: 56.25%; height: 0;
  overflow: hidden; background: #000;
}

.video-embed-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

.press-card-noVideo .press-card-img-wrapper {
  width: 100%; max-height: 220px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #0A0A0A;
}

.press-card-noVideo .press-card-img-wrapper img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: center top; display: block;
}

.press-card-body {
  padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem;
}

.press-tag {
  display: inline-flex; font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem; letter-spacing: 3px; color: var(--gold-primary);
  background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.3);
  padding: 3px 10px; border-radius: 20px; width: fit-content;
}

.press-card-body h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.08em; color: var(--warm-white);
  margin: 0.25rem 0; line-height: 1.2;
}

.press-card-body p {
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  color: var(--text-muted); line-height: 1.65;
  margin-bottom: 0.75rem; flex: 1;
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-primary); border: 1px solid rgba(212,160,23,0.4);
  border-radius: 6px; padding: 8px 16px;
  text-decoration: none; transition: all 0.3s ease; width: fit-content;
}
.btn-ghost:hover {
  background: rgba(212,160,23,0.1); border-color: var(--gold-primary);
  color: var(--gold-light);
}

.press-gallery {
  padding: 4rem 5%;
  max-width: 1200px; margin: 0 auto; text-align: center;
}

.press-gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2rem;
}

.press-gallery-grid img {
  width: 100%; aspect-ratio: 3 / 4;
  object-fit: contain; object-position: center top;
  background: #0A0A0A; border-radius: 12px;
  border: 1px solid rgba(212,160,23,0.2); display: block;
  transition: border-color 0.3s ease, transform 0.4s ease;
}

.press-gallery-grid img:hover { border-color: rgba(212,160,23,0.6); transform: scale(1.02); }

.press-timeline {
  padding: 4rem 5%;
  max-width: 800px; margin: 0 auto;
}

.timeline {
  position: relative; padding-left: 2rem;
  border-left: 2px solid rgba(212,160,23,0.4);
  display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem;
}

.timeline-item {
  position: relative;
  display: grid; grid-template-columns: 90px 16px 1fr;
  gap: 1rem; align-items: start;
}

.timeline-date {
  font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem;
  letter-spacing: 2px; color: var(--gold-primary); padding-top: 2px;
  white-space: nowrap;
}

.timeline-dot {
  width: 12px; height: 12px; background: var(--gold-primary);
  border-radius: 50%; margin-top: 4px;
  box-shadow: 0 0 10px rgba(212,160,23,0.6); flex-shrink: 0;
  position: relative; left: -2.6rem;
}

.timeline-text {
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--warm-white); line-height: 1.65;
  margin-left: -16px;
}

.press-cta {
  text-align: center; padding: 5rem 2rem;
  background: rgba(212,160,23,0.04);
  border-top: 1px solid rgba(212,160,23,0.12);
}

/* ═══════════════════════════════════════════════════
   ABOUT PAGE — MISSION + RUNWAY IMAGE ADDITIONS
   ═══════════════════════════════════════════════════ */

.mission-image-wrapper {
  width: 100%; max-width: 560px;
  margin: 2rem auto; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(212,160,23,0.3);
}
.mission-image-wrapper img {
  width: 100%; height: auto;
  object-fit: contain; display: block; background: #0A0A0A;
}

.runway-images {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; max-width: 800px; margin: 2rem auto;
}
.runway-img-wrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(212,160,23,0.25); background: #0A0A0A;
}
.runway-img-wrap img {
  width: 100%; height: 280px;
  object-fit: cover; object-position: center top;
  display: block; transition: transform 0.4s ease;
}
.runway-img-wrap:hover img { transform: scale(1.03); }

/* ═══════════════════════════════════════════════════
   FAVORITE PICTURE WRAPPER (THE WORK THAT SPEAKS)
   ═══════════════════════════════════════════════════ */

.favorite-picture-wrapper {
  max-width: 400px; width: 100%;
  margin: 2rem auto; position: relative;
  border-radius: 16px; overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 40px rgba(212,160,23,0.25);
}
.favorite-picture-wrapper img {
  width: 100%; max-height: 520px;
  object-fit: contain; object-position: center top;
  display: block; background: #0A0A0A; padding: 12px;
}
.favorite-picture-wrapper .fav-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, #D4A017, #F0C040);
  color: #060608; font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem; letter-spacing: 1.5px; padding: 4px 12px; border-radius: 20px;
}
.fav-caption {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: var(--lilac-glow);
  text-align: center; margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════
   NETLIFY FORM SUCCESS
   ═══════════════════════════════════════════════════ */

.netlify-success {
  text-align: center; padding: 3rem 2rem;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 16px;
}
.netlify-success .success-icon {
  font-size: 2.5rem; color: var(--gold-primary);
  display: block; margin-bottom: 1rem;
}
.netlify-success h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  letter-spacing: 3px; color: var(--gold-light); margin-bottom: 1rem;
}
.netlify-success p {
  font-family: 'Inter', sans-serif; color: var(--warm-white); line-height: 1.7;
}
.netlify-success a { color: var(--gold-primary); text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .press-grid { grid-template-columns: 1fr; }
  .press-gallery-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 65px 12px 1fr; gap: 0.5rem; }
  .runway-images { grid-template-columns: 1fr; }
  .runway-img-wrap img { height: 220px; }
  .favorite-picture-wrapper { max-width: 300px; }
  .favorite-picture-wrapper img { max-height: 400px; }
}

@media (max-width: 480px) {
  .press-gallery-grid { grid-template-columns: 1fr; }
  .press-gallery-grid img { aspect-ratio: 1 / 1; }
}

/* Countdown wraps on small screens */
.countdown-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

/* No horizontal overflow anywhere */
/* overflow-x: hidden removed — breaks iOS Safari scroll */

/* Portfolio grid responsive */
@media (max-width: 600px) {
  .avatar-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
}
@media (max-width: 380px) {
  .avatar-grid { grid-template-columns: 1fr !important; }
}

/* ── PORTFOLIO PAGE GAP FIX ─────────────────────────── */
/* (hero styles live in portfolio.html inline <style> block) */
.filter-bar {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ── PORTFOLIO GAP BANNER ───────────────────────── */
.portfolio-gap-banner {
  position: relative;
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: block;
}
.portfolio-gap-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.portfolio-gap-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,8,0.3) 0%,
    rgba(6,6,8,0.1) 50%,
    rgba(6,6,8,0.5) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-gap-overlay span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: #F0C040;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
@media (max-width: 768px) {
  .portfolio-gap-banner,
  .portfolio-gap-banner img {
    height: 180px;
    max-height: 180px;
  }
}

/* ════════════════════════════════════════════════════
   TARGETED FIXES — v6
   ════════════════════════════════════════════════════ */

/* ── FIX 2: Custom Chain price tag badge ── */
.card-price-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #F0C040;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 20px;
  padding: 3px 14px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* ── FIX 3: Mobile hamburger — menu drops below navbar bar ── */
@media (max-width: 768px) {
  body.menu-open { overflow: hidden; }

  #mobile-menu {
    top: 60px !important;
    inset: unset !important;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: flex-start !important;
    padding-top: 2rem;
  }

  #mobile-menu a {
    width: 100%;
    text-align: center;
    padding: 1.1rem 2rem;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(212,160,23,0.1);
    display: block;
  }

  .hamburger {
    z-index: 10000;
  }

  .nav-logo {
    z-index: 10000;
  }

  .navbar {
    z-index: 9999;
  }
}

/* ── FIX 4: Mobile hero image — never crop ── */
@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    justify-items: center !important;
    gap: 24px !important;
  }

  .hero-portrait-ring {
    width: 200px !important;
    height: auto !important;
    min-height: 280px !important;
    max-height: none !important;
  }

  .hero-portrait-img {
    object-fit: contain !important;
    object-position: center top !important;
    width: 100% !important;
    height: 100% !important;
  }

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

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ── FIX 5: Contact page gaps ── */
.contact-hero {
  min-height: unset !important;
  height: auto !important;
  padding-top: 5rem !important;
  padding-bottom: 2rem !important;
}

.contact-form-section {
  padding-top: 2rem !important;
  padding-bottom: 3rem !important;
}

.discord-priority-banner {
  margin: 1.5rem auto !important;
  max-width: 700px;
}

.contact-with-portrait {
  gap: 2rem !important;
}

@media (max-width: 768px) {
  .contact-with-portrait {
    flex-direction: column !important;
  }
}

/* ── FIX 5: Site-wide gap prevention ── */
[class*="-hero"]:not(.portfolio-gap-banner) {
  min-height: unset !important;
}

/* Cap section padding site-wide without breaking custom overrides */
@media (max-width: 768px) {
  section:not(.hero) {
    padding-top: clamp(1.5rem, 4vw, 3rem) !important;
    padding-bottom: clamp(1.5rem, 4vw, 3rem) !important;
  }
}

/* ── FIX 3: Mobile hero — never crop image ── */
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: auto !important;
    padding-top: 80px !important;
    padding-bottom: 3rem !important;
    text-align: center !important;
    gap: 2rem !important;
  }

  .hero-portrait-wrap {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .hero-portrait-ring {
    width: 100% !important;
    height: auto !important;
    min-height: 280px !important;
    max-height: none !important;
    border-radius: 20px !important;
  }

  .hero-portrait-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
    max-height: 420px !important;
  }

  .fav-badge {
    font-size: 0.6rem !important;
    padding: 3px 8px !important;
    top: 8px !important;
    right: 8px !important;
  }

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

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline,
  .hero-ctas a {
    width: 100% !important;
    max-width: 260px !important;
    text-align: center !important;
  }
}
