
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #f2f2f2;
  line-height: 1.6;
}
a { color: #ff3b3b; text-decoration: none; }

.age-gate {
  position: fixed; top: 0; left: 0; right: 0;
  background: #000; color: #fff; text-align: center;
  padding: 8px; font-size: 14px; z-index: 1000;
}

.hero {
  height: 70vh;
  background: url("assets/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: 28px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
}
.hero-content { position: relative; z-index: 2; padding: 0 18px; max-width: 900px; }

.avatar {
  width: 112px; height: 112px; border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,59,59,0.85);
  box-shadow: 0 0 24px rgba(0,0,0,0.55);
  margin: 0 auto 10px;
  display: block;
}

.name-row { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.hero h1 { font-size: 64px; letter-spacing: 4px; }

/* Verified badge (Instagram-like, without platform logos) */
.verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: #1da1f2; color: #fff;
  font-size: 14px; font-weight: 900;
  box-shadow: 0 0 10px rgba(29,161,242,0.6);
  transform: translateY(2px);
}

.tagline { margin: 8px 0 6px; opacity: 0.95; }
.official-note { font-size: 13px; opacity: 0.85; margin-bottom: 12px; }

/* Counters */
.counters {
  display: flex; gap: 18px; justify-content: center;
  margin-bottom: 18px; flex-wrap: wrap;
}
.counter { text-align: center; opacity: 0.95; min-width: 92px; }
.counter strong { display: block; font-size: 18px; }
.counter span { font-size: 12px; opacity: 0.85; }

.hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta {
  display: inline-block;
  padding: 14px 28px;
  background: #ff3b3b;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
}
.ghost {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  color: #fff;
  opacity: 0.95;
}

.hero-contact {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.85;
}
.hero-contact a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.35); }
.hero-contact .dot { margin: 0 6px; opacity: 0.7; }

.container { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
section { margin-bottom: 60px; }

h2 { margin-bottom: 16px; border-left: 4px solid #ff3b3b; padding-left: 10px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

/* Previews: blur via CSS */
.blur-img {
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #222;
  background: linear-gradient(135deg, #333, #111);
  position: relative;
}
.blur-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(10px);
  transform: scale(1.08);
  opacity: 0.95;
}
.blur-img.fallback::after {
  content: "Locked Preview";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; opacity: 0.8;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

.locked-note { margin-top: 10px; opacity: 0.8; font-size: 14px; }
.mini-note { margin-top: 8px; opacity: 0.75; font-size: 13px; }

/* Recent posts */
.recent-list { list-style: none; display: grid; gap: 10px; }
.recent-list li {
  padding: 12px 14px;
  border: 1px solid #222;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
}
.pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255,59,59,0.18);
  border: 1px solid rgba(255,59,59,0.4);
  margin-right: 8px;
}
.time { opacity: 0.75; font-size: 13px; }

.video-wrapper { position: relative; max-width: 800px; }
.video-wrapper video { width: 100%; border-radius: 6px; filter: blur(6px); }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);
  font-size: 22px; font-weight: bold;
  z-index: 2;
}

/* Plans */
.subscribe .plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.plan {
  border: 1px solid #333;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}
.plan.featured {
  border-color: #ff3b3b;
  box-shadow: 0 0 20px rgba(255,59,59,0.2);
}
.price { font-size: 28px; margin: 12px 0; }
.plan button {
  padding: 10px 20px;
  border: none;
  background: #ff3b3b;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}
.disclaimer { margin-top: 12px; font-size: 14px; opacity: 0.8; }

.footer {
  border-top: 1px solid #222;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
.footer nav a { margin: 0 8px; opacity: 0.9; }
