/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0d0b1f;
  --bg2: #15123a;
  --pink: #ff2e88;
  --cyan: #00e5ff;
  --yellow: #ffe600;
  --purple: #9b5cff;
  --ink: #f5f3ff;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 20% 10%, #2a1b5e 0%, var(--bg) 55%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

/* ===== EMOJI RAIN ===== */
#emoji-rain { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.falling { position: absolute; top: -50px; font-size: 1.6rem; animation: fall linear forwards; opacity: .7; }
@keyframes fall { to { transform: translateY(110vh) rotate(360deg); } }

/* ===== NAV ===== */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 6vw; position: sticky; top: 0; z-index: 50;
  background: rgba(13,11,31,.65); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-logo { font-family: 'Bebas Neue'; font-size: 1.7rem; letter-spacing: 1px; }
.nav-logo span { color: var(--pink); }
.nav-links { display: flex; gap: 22px; font-weight: 600; font-size: .95rem; }
.nav-links a { opacity: .8; transition: .2s; }
.nav-links a:hover { opacity: 1; color: var(--cyan); }

/* ===== HERO ===== */
.hero { position: relative; z-index: 1; text-align: center; padding-bottom: 0; }
.hero-inner { padding: 5vh 6vw 6vh; }
.kicker {
  font-family: 'Bebas Neue'; letter-spacing: 4px; color: var(--yellow);
  font-size: 1.1rem; margin-bottom: 8px;
}
.hero-title {
  font-family: 'Bebas Neue';
  font-size: clamp(4rem, 16vw, 11rem);
  line-height: .85; letter-spacing: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 30px rgba(255,46,136,.45));
  animation: wobble 6s ease-in-out infinite;
}
.hero-title .outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
  background: none;
}
@keyframes wobble { 0%,100%{transform:rotate(-1deg)} 50%{transform:rotate(1deg)} }
.hero-sub { font-family:'Permanent Marker'; font-size: clamp(1.1rem,3.5vw,1.8rem); color: var(--cyan); margin: 14px 0 30px; }

.hero-photo-wrap { position: relative; display: inline-block; margin: 10px 0 26px; }
.hero-photo {
  width: clamp(220px, 50vw, 340px); aspect-ratio: 1; object-fit: cover;
  border-radius: 50%; border: 6px solid var(--yellow);
  box-shadow: 0 0 0 10px rgba(255,46,136,.25), 0 20px 60px rgba(0,0,0,.6);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-photo.missing, .gallery-card img.missing {
  background: repeating-linear-gradient(45deg,#241b4d,#241b4d 12px,#1a1340 12px,#1a1340 24px);
  display: flex;
}
.goat-badge {
  position: absolute; bottom: 6px; right: -10px; transform: rotate(-8deg);
  background: var(--yellow); color: #111; font-family:'Bebas Neue'; letter-spacing:1px;
  padding: 8px 14px; border-radius: 10px; font-size: 1rem; box-shadow: 0 6px 18px rgba(0,0,0,.4);
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Bebas Neue'; letter-spacing: 1.5px; font-size: 1.3rem;
  background: var(--pink); color: #fff; border: none; cursor: pointer;
  padding: 14px 30px; border-radius: 14px; transition: transform .12s, box-shadow .2s;
  box-shadow: 0 8px 0 #b21560;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #b21560; }
.btn-mega {
  font-size: 1.9rem; padding: 18px 44px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  box-shadow: 0 10px 0 #5a1aa3; animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 10px 0 #5a1aa3, 0 0 0 0 rgba(255,46,136,.5)} 50%{box-shadow:0 10px 0 #5a1aa3, 0 0 0 18px rgba(255,46,136,0)} }
.hype-count { margin-top: 14px; opacity: .8; font-weight: 600; }
#hype-num { color: var(--yellow); font-size: 1.2rem; }

/* ===== TICKER ===== */
.ticker { overflow: hidden; background: var(--yellow); color: #111; padding: 10px 0; transform: rotate(-1.5deg) scale(1.04); margin: 30px 0; }
.ticker-track { display: inline-flex; white-space: nowrap; font-family:'Bebas Neue'; letter-spacing: 2px; font-size: 1.4rem; animation: scroll 22s linear infinite; }
.ticker-track span { padding: 0 30px; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { position: relative; z-index: 1; padding: 8vh 6vw; max-width: 1100px; margin: 0 auto; text-align: center; }
.section-alt { background: rgba(255,255,255,.03); max-width: none; border-block: 1px solid rgba(255,255,255,.06); }
.section-title {
  font-family: 'Bebas Neue'; font-size: clamp(2.4rem, 7vw, 4.5rem); letter-spacing: 2px;
  color: var(--ink); margin-bottom: 6px;
  text-shadow: 3px 3px 0 var(--pink);
}
.section-note { opacity: .65; margin-bottom: 36px; font-style: italic; }

/* ===== GALLERY ===== */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.gallery-card {
  position: relative; border-radius: 18px; overflow: hidden; cursor: pointer;
  background: var(--bg2); border: 2px solid rgba(255,255,255,.08);
  transition: transform .2s, box-shadow .2s; aspect-ratio: 3/4;
}
.gallery-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 20px 40px rgba(255,46,136,.3); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  font-family:'Permanent Marker'; font-size: 1.05rem; text-align: left;
}

/* ===== FACT ===== */
.fact-box { background: var(--bg2); border: 3px dashed var(--cyan); border-radius: 20px; padding: 40px 30px; max-width: 640px; margin: 0 auto; }
.fact-text { font-size: 1.35rem; font-weight: 600; min-height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; line-height: 1.4; }

/* ===== RATE ===== */
.rate-box { max-width: 560px; margin: 0 auto; }
.rate-slider { width: 100%; height: 14px; -webkit-appearance: none; appearance: none; background: linear-gradient(90deg,var(--pink),var(--yellow)); border-radius: 10px; outline: none; }
.rate-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 34px; height: 34px; border-radius: 50%; background: #fff; cursor: pointer; box-shadow: 0 0 0 4px var(--pink); }
.rate-slider::-moz-range-thumb { width: 34px; height: 34px; border-radius: 50%; background:#fff; border:none; box-shadow:0 0 0 4px var(--pink); cursor:pointer; }
.rate-readout { font-family:'Bebas Neue'; font-size: 4rem; color: var(--yellow); margin: 20px 0 6px; }
.rate-comment { font-family:'Permanent Marker'; font-size: 1.2rem; color: var(--cyan); min-height: 30px; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.stat-num { font-family:'Bebas Neue'; font-size: clamp(3rem,9vw,5rem); color: var(--cyan); line-height: 1; }
.stat-label { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: .8; font-size: .9rem; margin-top: 6px; }

/* ===== QUOTE ===== */
.quote-section { max-width: 760px; }
#quote { font-family:'Permanent Marker'; font-size: clamp(1.4rem,4vw,2.2rem); line-height: 1.4; color: var(--ink); }
.quote-section cite { display: block; margin-top: 20px; color: var(--pink); font-style: normal; font-weight: 700; }

/* ===== FOOTER ===== */
.footer { text-align: center; padding: 8vh 6vw 6vh; position: relative; z-index: 1; opacity: .85; }
.footer-big { font-family:'Bebas Neue'; font-size: clamp(2rem,8vw,4rem); background: linear-gradient(90deg,var(--cyan),var(--pink)); -webkit-background-clip:text; background-clip:text; color:transparent; margin-bottom: 14px; }
.footer p { margin: 6px 0; }
.footer-mini { font-size: .85rem; opacity: .6; margin-top: 16px; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; z-index: 100; flex-direction: column; padding: 20px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 78vh; border-radius: 14px; border: 4px solid var(--yellow); }
.lightbox p { font-family:'Permanent Marker'; font-size: 1.4rem; margin-top: 18px; color: var(--yellow); text-align: center; }

/* ===== TINDER CARD ===== */
.tinder-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; padding: 2vh 6vw 1vh; }
.tinder-card {
  width: min(380px, 92vw); background: #1b1740; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
  position: relative; transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s;
}
.tinder-card.fly-left  { transform: translateX(-160%) rotate(-22deg); opacity: 0; }
.tinder-card.fly-right { transform: translateX(160%) rotate(22deg); opacity: 0; }
.tinder-card.snapback  { animation: snapback .5s ease; }
@keyframes snapback { 0%{transform:translateX(-40%) rotate(-8deg)} 60%{transform:translateX(8%) rotate(2deg)} 100%{transform:none} }

.tcard-photo { position: relative; aspect-ratio: 4/5; background: #14102f; }
.tcard-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tcard-photo img.missing { background: repeating-linear-gradient(45deg,#241b4d,#241b4d 12px,#1a1340 12px,#1a1340 24px); }
.verified {
  position: absolute; top: 14px; left: 14px; background: rgba(0,180,120,.92); color: #fff;
  font-weight: 800; font-size: .72rem; padding: 6px 10px; border-radius: 20px; letter-spacing: .5px;
  backdrop-filter: blur(4px);
}
.tcard-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue'; font-size: 3.4rem; letter-spacing: 3px; opacity: 0;
  border: 0 solid; border-radius: 0; pointer-events: none; transition: opacity .15s;
}
.tcard-overlay.show-like { opacity: 1; color: #2bd47a; text-shadow: 0 0 20px #2bd47a; }
.tcard-overlay.show-nope { opacity: 1; color: #ff3b5c; text-shadow: 0 0 20px #ff3b5c; }

.tcard-body { padding: 18px 20px 8px; text-align: left; }
.tcard-name { font-size: 1.5rem; font-weight: 800; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.tcard-name > span:first-of-type { font-weight: 400; opacity: .8; }
.online { font-size: .7rem; color: #2bd47a; font-weight: 600; }
.tcard-dist { color: var(--cyan); font-size: .9rem; margin: 4px 0 12px; }
.tcard-bio { font-size: .98rem; line-height: 1.5; opacity: .92; }
.tcard-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 4px; }
.tcard-tags span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 6px 11px; border-radius: 20px; font-size: .82rem; font-weight: 600; }

.tcard-actions { display: flex; justify-content: center; gap: 18px; padding: 18px 0 24px; }
.swipe-btn {
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer; font-size: 1.6rem;
  background: #2a2456; color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.4); transition: transform .12s;
  display: grid; place-items: center;
}
.swipe-btn:hover { transform: scale(1.1); }
.swipe-btn:active { transform: scale(.92); }
.swipe-btn.nope { color: #ff3b5c; }
.swipe-btn.superlike { color: var(--cyan); width: 50px; height: 50px; font-size: 1.3rem; align-self: center; }
.swipe-btn.like { color: #2bd47a; }
.swipe-btn.nope.runaway { transition: transform .25s ease; }
.swipe-hint { margin-top: 6px; font-family: 'Permanent Marker'; color: var(--yellow); font-size: 1.05rem; min-height: 28px; text-align: center; }

/* ===== GREEN FLAGS ===== */
.flags-grid { display: grid; gap: 12px; max-width: 720px; margin: 0 auto; text-align: left; }
.flag { display: flex; gap: 12px; align-items: center; background: rgba(43,212,122,.1); border: 1px solid rgba(43,212,122,.3); padding: 14px 18px; border-radius: 14px; font-weight: 600; font-size: 1.02rem; }
.flag span { font-size: 1.3rem; flex-shrink: 0; }
.flag.red { background: rgba(255,59,92,.1); border-color: rgba(255,59,92,.35); }

/* ===== SHARE TOAST ===== */
.share-toast { margin-top: 16px; font-family: 'Permanent Marker'; color: var(--yellow); font-size: 1.05rem; min-height: 26px; }

/* ===== IT'S A MATCH MODAL ===== */
.match-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: radial-gradient(circle at 50% 40%, rgba(255,46,136,.35), rgba(13,11,31,.96));
  backdrop-filter: blur(6px);
}
.match-modal.open { display: flex; animation: fadein .25s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.match-inner { text-align: center; max-width: 460px; width: 100%; animation: pop .4s cubic-bezier(.2,1.4,.4,1); }
@keyframes pop { 0% { transform: scale(.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.match-title {
  font-family: 'Bebas Neue'; font-size: clamp(3rem, 12vw, 5.5rem); letter-spacing: 2px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 24px rgba(255,46,136,.6));
}
.match-sub { font-size: 1.1rem; margin: 6px 0 28px; line-height: 1.5; }
.match-sub small, .match-you small { opacity: .6; font-size: .8em; }
.match-faces { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 30px; }
.match-faces img, .match-you {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--yellow); box-shadow: 0 0 30px rgba(255,230,0,.4);
}
.match-you {
  display: grid; place-content: center; font-family: 'Bebas Neue'; font-size: 1.6rem; line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--cyan)); border-color: var(--cyan);
}
.match-heart { font-size: 2.2rem; animation: float 2s ease-in-out infinite; }
.match-modal .btn { margin-bottom: 14px; }
.match-close { display: block; margin: 0 auto; background: none; border: none; color: var(--cyan); cursor: pointer; font-size: .95rem; text-decoration: underline; opacity: .85; }
.match-close:hover { opacity: 1; }

@media (max-width: 600px) { .nav-links { display: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } html { scroll-behavior: auto; } }


/* ---- fan name form ---- */
.fan-form { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; align-items:center; margin-top:28px; }
.fan-input {
  padding:14px 20px; border-radius:999px; border:2px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.06); color:#fff; font:inherit; font-size:1rem;
  outline:none; min-width:200px; text-align:center;
}
.fan-input::placeholder { color:rgba(255,255,255,.45); }
.fan-input:focus { border-color:#ff2e88; background:rgba(255,46,136,.08); }
