/* ===== Post Traumatic Stress Cat ($PTSCAT) — Netflix-style ===== */

:root {
  --bg: #0b0b0f;
  --bg-2: #141419;
  --card: #1b1b22;
  --red: #e50914;
  --red-2: #ff3b3b;
  --orange: #c9722e;   /* muted burnt orange */
  --orange-2: #b5641f; /* darker hover */
  --purple: #b98cff;
  --purple-2: #a06bff;
  --teal: #35e0c0;
  --gold: #d4af37;
  --text: #f5f5f7;
  --muted: #a7a7b0;
  --border: #2a2a33;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Bahnschrift", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
.pad { max-width: 1100px; margin: 0 auto; padding: 60px 24px; }
.center { text-align: center; }
.accent { color: var(--red-2); }
.accent-orange { color: var(--orange); }

/* ===== MARQUEE ===== */
.marquee {
  background: #000;
  overflow: hidden; white-space: nowrap; padding: 8px 0;
  position: sticky; top: 0; z-index: 50;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 18px;
  animation: scroll 28s linear infinite;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
}
.marquee-track span { color: var(--teal); }
.marquee-track .dot { color: #555; }
.badge-live {
  background: var(--red); color: #fff !important; padding: 3px 10px;
  border-radius: 4px; font-size: 11px;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== NAV ===== */
nav {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 24px; width: 100%;
  position: sticky; top: 0; z-index: 50;
  background: rgba(22, 22, 24, 0.55); /* dark grey, see-through */
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.brand { font-weight: 800; letter-spacing: 1px; font-size: 20px; display: flex; align-items: center; gap: 9px; }
.brand span { color: var(--red-2); }
.brand-logo {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  object-position: 50% 15%; border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-weight: 600; font-size: 14px;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--orange); color: #fff !important; padding: 9px 18px;
  border-radius: 6px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--orange-2); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; margin-top: -72px; display: flex; align-items: center; overflow: hidden; }

/* Crossfading background slideshow */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
/* Full-bleed background — fills the whole frame, no black.
   Cat sits on the RIGHT (its natural spot); framing keeps the cat in view. */
/* Full-bleed background — fills the whole frame, no black */
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center bottom;
  opacity: 0; transition: opacity .8s ease-in-out;
  transform: scale(1);
}
.slide.active { opacity: 1; }

/* Dark overlay so the text stays legible over the photos */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(75% 65% at 50% 40%, rgba(0,0,0,0), rgba(0,0,0,.28) 85%),
    linear-gradient(to top, var(--bg) 2%, rgba(11,11,15,.10) 35%, rgba(11,11,15,.18) 100%);
}

.hero-inner {
  position: relative; z-index: 5; max-width: none; margin: 0;
  padding: 110px 24px 70px 28px; width: 100%;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; justify-content: flex-start; }
.hb {
  background: rgba(0,0,0,.55); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 6px; font-size: 13px; color: #e6e6e6;
}
.hb b { color: var(--red-2); margin-right: 4px; }

.hero-art {
  width: auto; height: 340px; max-width: 92%; object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.8)) drop-shadow(0 0 50px rgba(229,9,20,.3));
  margin: 0 auto 8px; display: block;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.logo {
  font-family: "Luckiest Guy", "Bahnschrift", system-ui, sans-serif;
  font-size: clamp(60px, 15vw, 150px); font-weight: 400; line-height: .9;
  letter-spacing: 1px; color: #fff;
  -webkit-text-stroke: 6px #000; paint-order: stroke fill;
  transform: skewX(-8deg) rotate(-2deg);
  /* stacked black copies = chunky 3D graffiti extrude */
  text-shadow:
    3px 3px 0 #000,
    5px 5px 0 #000,
    7px 7px 0 #000,
    9px 9px 0 #000,
    11px 12px 0 #000,
    12px 16px 22px rgba(0,0,0,.55);
}
.logo span { color: var(--orange); -webkit-text-stroke: 6px #000; }

.meta-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-start;
  margin: 24px 0 14px; font-size: 15px; color: #d4d4d8; font-weight: 600;
}
.match { color: var(--teal); font-weight: 800; }
.pill { border: 1px solid #666; padding: 1px 8px; border-radius: 4px; font-size: 12px; }

.hero-title { font-size: clamp(24px, 4vw, 36px); font-weight: 800; }
.hero-desc { max-width: 560px; color: #d8d8dc; font-size: 17px; margin: 12px 0 28px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.btn {
  padding: 14px 30px; border-radius: 40px; font-weight: 800; font-size: 16px;
  text-decoration: none; cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-play { background: var(--orange); color: #fff; }
.btn-play:hover { background: var(--orange-2); }
.btn-info { background: #fff; color: #111; }
.btn-info:hover { background: #e6e6e6; }
.btn:hover { transform: translateY(-2px); }

.hero-glow {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 6;
  background: linear-gradient(90deg, transparent, var(--orange), #e59a4f, var(--orange), transparent);
  box-shadow: 0 0 30px 5px rgba(201,114,46,.75), 0 0 60px 8px rgba(201,114,46,.4);
}

/* ===== ROW SECTION (episodes) ===== */
.row-section { max-width: 1200px; margin: 0 auto; padding: 60px 24px; position: relative; }
.ghost-title {
  position: absolute; top: 20px; left: 24px; font-size: clamp(60px,12vw,130px);
  font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.06);
  letter-spacing: 6px; pointer-events: none; user-select: none; z-index: 0;
}
.row-title { font-size: clamp(28px, 5vw, 42px); font-weight: 900; position: relative; z-index: 1; }
.row-tag {
  display: inline-block; margin-top: 8px; padding: 4px 14px; border-radius: 999px;
  border: 1px solid var(--purple); color: var(--purple); font-size: 13px; font-weight: 700;
  position: relative; z-index: 1;
}

.carousel-wrap { position: relative; margin-top: 26px; }
.carousel {
  display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth;
  padding: 6px 2px 18px; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.ep { flex: 0 0 300px; min-width: 0; }
.ep-thumb {
  position: relative; height: 190px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(140deg, var(--g1), var(--g2));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: transform .2s, box-shadow .2s;
}
.ep:hover .ep-thumb { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0,0,0,.5); }
.ep-emoji { font-size: 64px; filter: drop-shadow(0 6px 12px rgba(0,0,0,.5)); }
.ep-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.ep-num {
  position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.7);
  padding: 6px 10px; border-radius: 8px; font-size: 11px; text-align: center; line-height: 1.1;
}
.ep-num b { display: block; font-size: 18px; }
.ep-time {
  position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,.75);
  padding: 3px 8px; border-radius: 5px; font-size: 12px; font-weight: 700;
}
.ep h3 { margin: 14px 0 4px; font-size: 19px; }
.ep p { color: var(--muted); font-size: 14px; text-align: center; margin-top: 16px; }

.car-btn {
  position: absolute; top: 70px; z-index: 3; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid var(--border); background: rgba(0,0,0,.7);
  color: #fff; font-size: 26px; cursor: pointer; transition: background .2s;
}
.car-btn:hover { background: var(--red); }
.car-btn.prev { left: -8px; }
.car-btn.next { right: -8px; }

/* ===== TOKENOMICS ===== */
.sub { text-align: center; color: var(--muted); max-width: 620px; margin: 8px auto 36px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 26px; text-align: center; }
.stat .num { font-size: 30px; font-weight: 900; color: var(--red-2); }
.stat .lbl { color: var(--muted); margin-top: 6px; font-size: 14px; }

/* ===== SCRATCH ===== */
.scratch-wrap {
  position: relative; width: 600px; max-width: 100%; height: 300px; margin: 0 auto;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
}
.scratch-prize {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: radial-gradient(circle at 50% 40%, #201a10, #0d0b07);
}
.prize-emoji { font-size: 64px; }
.prize-text { font-size: 30px; font-weight: 900; color: var(--gold); letter-spacing: 2px; }
.prize-sub { color: var(--muted); }
#scratch { position: absolute; inset: 0; z-index: 2; cursor: grab; touch-action: none; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.step .n {
  display: inline-flex; width: 38px; height: 38px; border-radius: 10px;
  background: var(--orange); color: #fff; font-weight: 800;
  align-items: center; justify-content: center; margin-bottom: 12px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

.contract {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  justify-content: space-between; flex-wrap: wrap; max-width: 640px; margin: 30px auto 0;
}
.contract code { color: #fff; font-size: 14px; word-break: break-all; }
.copy { background: var(--orange); border: none; color: #fff; font-weight: 800; padding: 8px 16px; border-radius: 8px; cursor: pointer; }
.copy:hover { background: var(--orange-2); }

/* ===== FOOTER ===== */
footer { text-align: center; padding: 60px 24px 44px; border-top: 1px solid var(--border); margin-top: 40px; }
.socials { display: flex; gap: 14px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.socials a {
  color: var(--text); text-decoration: none; font-weight: 700;
  border: 1px solid var(--border); padding: 10px 20px; border-radius: 10px;
  transition: border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.socials a:hover { border-color: var(--orange); color: var(--orange); }
.tg-icon { width: 17px; height: 17px; fill: currentColor; }
.disclaimer { color: #6a6a72; font-size: 13px; max-width: 620px; margin: 18px auto 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .ep { flex: 0 0 260px; }
  .car-btn { display: none; }
}
