* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink: #ff0080;
  --pink-glow: rgba(255, 0, 128, 0.55);
  --red: #ff2d2d;
  --bg: #000;
  --panel: #0a0a0a;
  --border: #262626;
  --text: #fff;
  --muted: #9ca3af;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

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

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo .mark {
  width: 34px; height: 34px;
  background: var(--pink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: #fff;
}
.logo .name { font-weight: 800; font-size: 16px; letter-spacing: .3px; }
.logo .name small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; letter-spacing: .5px; }
.nav-links { display: flex; gap: 16px; }
.nav-links a { color: var(--muted); font-size: 13px; font-weight: 600; }
.nav-links a:hover { color: #fff; }
.nav-links .hot { color: var(--pink); }

/* ===== Hero / age gate ===== */
.hero { text-align: center; padding: 36px 20px 12px; }
.hero h1 {
  font-size: 30px; font-weight: 800; letter-spacing: .5px; color: var(--pink);
  margin-bottom: 6px;
}
.hero .sub { color: var(--muted); font-size: 15px; max-width: 420px; margin: 0 auto; }
.hero img {
  width: min(280px, 80vw); border-radius: 12px; margin: 20px auto 8px; display: block;
  animation: imgPulse 2.2s ease-in-out infinite;
}
@keyframes imgPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}
.scarcity {
  color: var(--red); font-weight: 700; font-size: 14px; margin-top: 6px;
}

/* ===== CTA ===== */
.cta { padding: 8px 20px 12px; }
.btn {
  display: block; width: 100%; max-width: 380px; margin: 0 auto;
  background: var(--pink); color: #fff; font-weight: 800; letter-spacing: .5px;
  border: 0; border-radius: 8px; padding: 18px 24px; font-size: 18px;
  text-align: center;
  box-shadow: 0 0 20px var(--pink-glow);
  animation: pulse 1.2s ease-in-out infinite;
}
.btn:hover { background: #ff2d9e; color: #fff; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ===== Comments ===== */
.comments { padding: 24px 20px 40px; }
.comments .wrap { max-width: 560px; margin: 0 auto; }
.comments h2 { font-size: 16px; font-weight: 700; color: var(--muted); margin-bottom: 16px; }
.comment { display: flex; gap: 12px; margin-bottom: 18px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff;
  overflow: hidden;
}
.comment .body { flex: 1; }
.comment .who { font-weight: 700; font-size: 14px; }
.comment .who .time { color: var(--muted); font-weight: 500; font-size: 12px; }
.comment p { color: #d1d5db; font-size: 14px; margin-top: 2px; }
.comment .meta { color: var(--muted); font-size: 12px; margin-top: 4px; }
.comment .meta .like { color: var(--pink); font-weight: 700; }
.reply { margin-left: 52px; }

/* ===== Comments ===== */
.avatar img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover; display: block;
}

/* ===== Sticky bottom bar ===== */
.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(0,0,0,0.94);
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform .25s ease;
}
.stickybar.show { transform: translateY(0); }
.stickybar .btn { margin: 0 auto; padding: 15px 20px; font-size: 17px; max-width: none; }

body { padding-bottom: 0; }

/* ===== Footer ===== */
footer { padding: 24px 20px 96px; text-align: center; }
footer p { color: #4b5563; font-size: 11px; max-width: 720px; margin: 0 auto; line-height: 1.6; }
