:root{
  --bg:#0d0f13;
  --bg-tint:#12151b;
  --card:#171a22;
  --line:#212735;
  --text:#e9edf5;
  --muted:#95a1b3;
  --accent:#ff2e3a;        /* Primary red */
  --accent-2:#ff6a6f;       /* Secondary red */
  --shadow: 0 10px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  line-height:1.6;
}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:linear-gradient(180deg, rgba(13,15,19,.85), rgba(13,15,19,.55));
  border-bottom:1px solid rgba(255,255,255,.04);
  backdrop-filter:saturate(140%) blur(8px);
}
.container{width:min(1200px,92%);margin:auto}
.nav{display:flex;align-items:center;justify-content:space-between;padding:.9rem 0}
.brand{display:flex;gap:.6rem;align-items:center;font-weight:800;text-decoration:none;color:var(--text);letter-spacing:.2px}
.brand .logo{color:var(--accent);filter:drop-shadow(0 0 8px rgba(255,46,58,.25))}
.menu{display:flex;gap:1.2rem;align-items:center}
.menu a{color:var(--muted);text-decoration:none;font-weight:600}
.menu a:hover{color:var(--text)}
.burger{display:none;background:transparent;border:0;cursor:pointer;position:relative;z-index:100;padding:8px;touch-action:manipulation;-webkit-tap-highlight-color:transparent}
.burger span{display:block;width:22px;height:2px;background:var(--text);margin:4px 0;border-radius:2px;pointer-events:none}

/* Premium Mobile Menu Overlay */
.menu-overlay{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  padding:22px;
  z-index:999;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.menu-overlay.is-open{ display:grid; }

.menu-sheet{
  width:min(420px, 92vw);
  max-height: 90vh;
  border-radius:22px;
  position:relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, rgba(16,18,26,.92), rgba(10,12,18,.92));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
  transform: translateY(10px) scale(.98);
  opacity:0;
  animation: menuPop .18s ease-out forwards;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

@keyframes menuPop{
  to{ transform: translateY(0) scale(1); opacity:1; }
}

.menu-sheet::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:24px;
  background: radial-gradient(600px 220px at 20% 0%, rgba(255,46,58,.35), transparent 60%),
              radial-gradient(600px 220px at 90% 100%, rgba(127,92,255,.35), transparent 60%);
  pointer-events:none;
  z-index:0;
}

.menu-sheet > *{ position:relative; z-index:1; }

.menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px 10px;
}

.menu-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

.menu-heart{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color:var(--accent);
}

.menu-title{ font-size:16px; }

.menu-close{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-size:18px;
  cursor:pointer;
}

.menu-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  padding:12px 16px 14px;
}

.menu-tile{
  text-decoration:none;
  color: rgba(255,255,255,.92);
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.menu-tile:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
}

.menu-tile--featured{
  background: linear-gradient(135deg, rgba(255,46,58,.12), rgba(255,106,111,.08));
  border: 1px solid rgba(255,46,58,.20);
  box-shadow: inset 0 0 20px rgba(255,46,58,.08);
}

.menu-tile--featured:hover{
  background: linear-gradient(135deg, rgba(255,46,58,.18), rgba(255,106,111,.12));
  border-color: rgba(255,46,58,.30);
  box-shadow: inset 0 0 20px rgba(255,46,58,.12), 0 0 16px rgba(255,46,58,.15);
}

.mi{ font-size:18px; display:block; margin-bottom:6px; }
.mt{ font-weight:800; font-size:14px; display:block; }
.ms{ font-size:12px; opacity:.72; display:block; margin-top:2px; }

.menu-actions{
  padding: 0 16px 16px;
  display:grid;
  gap:10px;
}

.menu-hint{
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.55);
  font-size:12px;
  text-align:center;
}

.menu-lock{ overflow:hidden; }

/* PRIVACY SUMMARY */

.privacy-summary {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(225, 29, 72, 0.03));
  border-top: 1px solid rgba(225, 29, 72, 0.2);
  border-bottom: 1px solid rgba(225, 29, 72, 0.2);
  padding: 48px 20px;
}

.privacy-summary-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.privacy-summary-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.privacy-summary-text strong {
  color: #fff;
  font-size: 16px;
}

/* WHY LUVHIVE */

.why-luvhive {
  background: radial-gradient(circle at top, #15171c, #0b0d12);
  padding: 80px 20px;
  color: #eaeaf0;
}

.why-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-subtitle {
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: linear-gradient(180deg, #12141a, #0e1016);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04),
              0 10px 40px rgba(0,0,0,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08),
              0 20px 50px rgba(0,0,0,0.8);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Mood Pulse Special Card */
.why-card--mood {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(255, 111, 174, 0.1));
  border: 1px solid rgba(138, 43, 226, 0.3);
  text-align: center;
  padding: 32px 24px;
}

.why-card--mood h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.why-card--mood p {
  margin-bottom: 8px;
}

.why-card--mood .mood-desc {
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto 12px;
}

.why-card--mood .mood-tagline {
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 20px;
}

.why-card--mood .mood-cta {
  display: inline-block;
  margin-bottom: 12px;
}

.why-card--mood .mood-secondary {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.why-card--mood .mood-secondary:hover {
  color: #ff6fae;
}

/* Mobile polish */
@media (max-width: 480px) {
  .why-title {
    font-size: 28px;
  }
}

/* ===== Confession Roulette: Premium Modal ===== */
#confessionModal {
  position: fixed !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-height: none !important;
  z-index: 9999;
  display: none;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
}
#confessionModal.is-open { display: block !important; }

#confessionModal .lh-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(10px);
}

#confessionModal .lh-sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 520px);
  border-radius: 22px;
  background: rgba(14, 14, 18, 0.78);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  overflow: hidden;
}

#confessionModal .lh-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  z-index: 10;
}

#confessionModal .lh-header {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 18px 12px;
  background: linear-gradient(180deg, rgba(255,60,100,0.10), rgba(0,0,0,0));
}

#confessionModal .lh-title { display: flex; gap: 12px; align-items: center; }
#confessionModal .lh-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,60,100,0.35), rgba(130,80,255,0.28));
  border: 1px solid rgba(255,255,255,0.10);
}

.lh-h1 {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.2px;
}
.lh-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  margin-top: 2px;
}

.lh-timer {
  text-align: right;
  padding-top: 2px;
}
.lh-timer-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.lh-timer-value {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.90);
  margin-top: 2px;
}

.lh-body {
  position: relative;
  padding: 14px 18px 18px;
}

.lh-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 30% 20%, rgba(255,60,100,0.18), transparent 55%),
              radial-gradient(circle at 70% 30%, rgba(120,90,255,0.18), transparent 60%);
  filter: blur(18px);
  pointer-events: none;
}

.lh-confessionCard {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.lh-confessionMeta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 10px;
}
.lh-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(80,255,160,0.85);
  box-shadow: 0 0 18px rgba(80,255,160,0.45);
}

.lh-confessionText {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  min-height: 86px;
  white-space: pre-wrap;
}

.lh-confessionText .cursor {
  display: inline-block;
  width: 10px;
  margin-left: 2px;
  opacity: 0.9;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0.1; } }

.lh-hint {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.lh-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.lh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.lh-btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
}

.lh-btn-primary {
  background: linear-gradient(135deg, rgba(255,60,100,0.95), rgba(120,90,255,0.92));
  color: #fff;
  box-shadow: 0 18px 40px rgba(255,60,100,0.20);
}

.lh-footerNote {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.52);
}

/* Hero */
.hero{
  padding:6.5rem 0 3rem;
  background:
    radial-gradient(700px 350px at 15% -10%, rgba(255,46,58,.15), transparent 60%),
    radial-gradient(600px 300px at 110% 20%, rgba(255,106,111,.15), transparent 60%);
}
.hero-grid{
  display:grid;grid-template-columns:1.15fr .85fr;gap:3rem;align-items:center;
}
.hero-copy h1{
  font-family:'Bebas Neue', system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height:.95;margin:0 0 .8rem;text-transform:uppercase;
}
.hero-copy .stroke{
  -webkit-text-stroke: 1px var(--accent);
  color:transparent;letter-spacing:.5px
}
.hero-copy .accent{color:var(--accent)}
.lead{color:var(--muted);font-size:1.1rem}
.cta{display:flex;gap:.8rem;margin:1.1rem 0 1.4rem}
.hero-bullets{list-style:none;padding:0;margin:0;display:flex;gap:1rem;flex-wrap:wrap;color:var(--muted);font-weight:600}

.phone{
  border:1px solid var(--line);
  background:linear-gradient(180deg,#0f1218,#0b0d12);
  border-radius:24px;padding:14px;box-shadow:var(--shadow)
}
.phone img{width:100%;display:block;border-radius:18px}
.glow{width:220px;height:220px;background:radial-gradient(closest-side, rgba(255,46,58,.35), transparent 70%);
  filter:blur(30px);position:absolute;right:5%;top:15%;pointer-events:none;opacity:.7}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;font-weight:800;text-decoration:none;border-radius:12px;padding:.9rem 1.1rem;color:var(--text);border:1px solid var(--line)}
.btn.small{padding:.55rem .8rem;border-radius:10px;font-size:.92rem}
.btn-primary{background:linear-gradient(180deg,var(--accent),var(--accent-2));border-color:transparent;box-shadow:0 10px 25px rgba(255,46,58,.22)}
.btn-primary:hover{filter:brightness(1.05)}
.ghost{background:transparent}
.ghost:hover{border-color:var(--accent);color:var(--text)}

/* Sections */
.section{padding:4.5rem 0}
.tinted{background:var(--bg-tint)}
.section-head{margin-bottom:1.8rem}
.title{font-family:'Bebas Neue',sans-serif;font-size:2.4rem;letter-spacing:.5px;margin:0}
.title.red{color:var(--accent)}
.muted{color:var(--muted)}
.center{text-align:center}
.mt-lg{margin-top:2rem}

.grid{display:grid;gap:1.3rem}
.two{grid-template-columns:1fr 1fr}
.features-grid{grid-template-columns:repeat(4,1fr)}
.pricing-grid{grid-template-columns:repeat(2,1fr)}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;padding:1.2rem;box-shadow:var(--shadow)
}
.feat .icon{font-size:1.6rem}
.feat h3{margin:.25rem 0 .3rem}
.feat p{color:var(--muted)}

.plan{position:relative}
.plan .price{font-size:2rem;font-weight:800;margin:.2rem 0}
.plan .list{color:var(--muted);padding-left:1rem}
.plan .list li{margin:.25rem 0}
.plan.highlight{border-color:rgba(255,46,58,.35);box-shadow:0 20px 60px rgba(255,46,58,.15)}
.plan .tag{
  position:absolute;top:-12px;left:16px;background:var(--accent);color:white;
  padding:.25rem .6rem;border-radius:6px;font-size:.8rem;font-weight:800
}

/* Steps */
.steps{list-style:none;margin:0;padding:0;display:grid;gap:1rem}
.steps li{display:grid;grid-template-columns:auto 1fr;gap:.9rem;align-items:start}
.badge{
  width:34px;height:34px;border-radius:50%;background:var(--accent);
  display:grid;place-items:center;font-weight:800
}

/* FAQ */
.faq details{
  background:var(--card);border:1px solid var(--line);border-radius:12px;
  padding:.9rem 1rem;margin:.6rem 0
}
.faq summary{cursor:pointer;font-weight:800}
.faq p{color:var(--muted)}

/* Footer */
.site-footer{padding:2.5rem 0;border-top:1px solid var(--line);background:#0b0d12}
.foot-grid{display:flex;gap:1rem;justify-content:space-between;align-items:center;flex-wrap:wrap}
.brand.foot{opacity:.9}
.foot-links a{color:var(--muted);margin-left:1rem;text-decoration:none}
.foot-links a:hover{color:var(--text)}

.foot-socials{
  display:flex;
  gap:16px;
  margin-top:16px;
}
.social-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  color:var(--muted);
  transition:all 0.2s ease;
}
.social-icon:hover{
  background:rgba(255,255,255,0.15);
  color:#fff;
  transform:translateY(-2px);
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;gap:2rem}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .menu{display:none}
  .burger{display:block}
}


/* --- Centered "band" hero like your sample --- */
.hero--band{
  --band: #7f5cff; /* purple band (change if you want red theme later) */
  position: relative;
  padding: 4.5rem 0 0;
  background: var(--band);
  color: #fff;
  overflow: hidden;
}

.hero-center{
  text-align:center;
  max-width: 820px;
  padding: 2rem 0 0;
}

.hero-title{
  font-family:'Bebas Neue',system-ui,sans-serif;
  font-size: clamp(40px, 8.5vw, 72px);
  line-height: .95;
  margin: 0 0 .3rem;
  letter-spacing: .4px;
}

.hero-title .break{ display:block; }

.hero-sub{
  opacity:.92;
  font-size: clamp(16px, 2.8vw, 20px);
  margin:.3rem auto 1.1rem;
}

.hero-cta{
  padding: 1rem 1.4rem;
  font-size: 1.05rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.phone.big{
  width: min(420px, 90%);
  margin: 1.6rem auto 0;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, #0f1218, #0b0d12);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.hero-clouds{
  /* "rounded cloud" bottom edge like the sample */
  height: 90px;
  background: #0d0f13;          /* page bg color */
  mask: radial-gradient(70px 35px at 7% 0, transparent 98%, #000 100%),
        radial-gradient(90px 45px at 28% 0, transparent 98%, #000 100%),
        radial-gradient(70px 35px at 49% 0, transparent 98%, #000 100%),
        radial-gradient(90px 45px at 70% 0, transparent 98%, #000 100%),
        radial-gradient(70px 35px at 91% 0, transparent 98%, #000 100%),
        linear-gradient(#000 0 0);  /* fill */
  -webkit-mask: radial-gradient(70px 35px at 7% 0, transparent 98%, #000 100%),
                radial-gradient(90px 45px at 28% 0, transparent 98%, #000 100%),
                radial-gradient(70px 35px at 49% 0, transparent 98%, #000 100%),
                radial-gradient(90px 45px at 70% 0, transparent 98%, #000 100%),
                radial-gradient(70px 35px at 91% 0, transparent 98%, #000 100%),
                linear-gradient(#000 0 0);
}

/* keep the rest of the site dark after the band */
.hero--band + .section { padding-top: 3rem; }

/* centered phone preview under the CTA */
.hero-phone{
  display:flex;
  justify-content:center;
  margin:24px auto 0;
}
.hero-phone img{
  width:min(420px, 90vw);
  height:auto;
  border-radius:24px;
  box-shadow:0 12px 40px rgba(0,0,0,.25);
}

/* ===== Dark Premium Modal System ===== */
.lh-overlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  z-index: 9998;
}

.lh-modal{
  position:fixed;
  left:50%; top:50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 520px);
  max-height: 84vh;
  overflow:auto;
  border-radius: 18px;
  background: rgba(18,18,22,.92);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  z-index: 9999;
}

.lh-modal__header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 14px 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.lh-modal__title{
  font-weight: 800;
  letter-spacing:.2px;
  color: #fff;
}

.lh-x{
  width:36px; height:36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.lh-modal__body{ padding: 14px; }

.lh-card{
  position: relative;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px;
}

.lh-card__label{
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-bottom: 6px;
}

.lh-card__text{ color:#fff; line-height:1.5; }

.lh-fade{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 44px;
  background: linear-gradient(to bottom, rgba(18,18,22,0), rgba(18,18,22,1));
  border-radius: 0 0 16px 16px;
  pointer-events:none;
}

.lh-row{
  display:flex; gap:10px;
  margin-top: 12px;
}

.lh-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.10);
  color:#fff;
  background: rgba(255,255,255,.06);
  cursor:pointer;
  flex:1;
}

.lh-btn--primary{
  background: linear-gradient(135deg, rgba(255,80,120,1), rgba(110,90,255,1));
  border: 0;
}

.lh-btn--ghost{
  background: rgba(255,255,255,.06);
}

.lh-lock{
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,50,90,.10);
  border: 1px solid rgba(255,50,90,.25);
  color:#fff;
}

.lh-lock__title{ font-weight: 800; margin-bottom: 6px; font-size: 1.1rem; }
.lh-lock__text{ color: rgba(255,255,255,.85); line-height:1.45; margin-bottom: 14px; }

.taprace-leaderboard {
  margin: 16px 0;
  padding: 14px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

.taprace-lb-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.taprace-lb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  margin-bottom: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.taprace-lb-row:last-child {
  margin-bottom: 0;
}

.taprace-lb-gold {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.18), rgba(255, 200, 0, 0.08));
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.taprace-lb-silver {
  background: linear-gradient(90deg, rgba(192, 192, 192, 0.15), rgba(180, 180, 180, 0.06));
  border: 1px solid rgba(192, 192, 192, 0.25);
}

.taprace-lb-bronze {
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.15), rgba(180, 120, 60, 0.06));
  border: 1px solid rgba(205, 127, 50, 0.25);
}

.taprace-lb-rank {
  font-size: 1.3rem;
}

.taprace-lb-time {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.lh-input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color:#fff;
  outline:none;
}

.lh-bigword{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .6px;
  color:#fff;
  margin-bottom: 10px;
}

.lh-muted{ color: rgba(255,255,255,.65); font-size: 13px; }

.lh-modal[hidden], .lh-overlay[hidden]{ display:none !important; }
body.lh-noscroll{ overflow:hidden; }

/* ===== Confession Roulette: FULLSCREEN on Mobile ===== */
@media (max-width: 640px) {
  /* Make the whole modal act like a screen */
  #confessionModal.lh-modal {
    inset: 0 !important;
  }

  /* Turn the sheet into full-screen */
  #confessionModal .lh-sheet {
    position: absolute !important;
    inset: 0 !important;
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Keep header visible */
  #confessionModal .lh-header {
    flex: 0 0 auto;
    padding-top: calc(18px + env(safe-area-inset-top));
  }

  /* Body scrolls, not the whole page */
  #confessionModal .lh-body {
    flex: 1 1 auto;
    overflow: auto;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  /* Make buttons always reachable */
  #confessionModal .lh-actions {
    position: sticky;
    bottom: 0;
    background: rgba(14, 14, 18, 0.92);
    padding: 12px 0 0;
    margin-top: 18px;
  }

  /* Close button safe-area */
  #confessionModal .lh-close {
    top: calc(12px + env(safe-area-inset-top));
    right: 12px;
  }
}

/* ===== Confession Roulette: Premium FULLSCREEN Screen ===== */

#confessionModal .lh-sheet{
  width: min(1100px, 96vw) !important;
  max-width: 1100px !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(255,240,248,0.96), rgba(255,255,255,0.92)) !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55) !important;
}

/* backdrop stays dark-premium */
#confessionModal .lh-backdrop{
  background: rgba(0,0,0,0.65) !important;
  backdrop-filter: blur(14px) !important;
}

#confessionModal .lh-close{
  background: rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(0,0,0,0.18) !important;
  color: rgba(0,0,0,0.85) !important;
}

#confessionModal .lh-cr-header{
  background: linear-gradient(90deg, rgba(255,68,140,0.14), rgba(124,92,255,0.10)) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

#confessionModal .lh-cr-badge{
  background: linear-gradient(135deg, rgba(255,68,140,0.40), rgba(124,92,255,0.30)) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
}

#confessionModal .lh-cr-h1{ color: rgba(10,10,12,0.92) !important; }
#confessionModal .lh-cr-sub{ color: rgba(10,10,12,0.60) !important; }

#confessionModal .lh-cr-timer .lh-timer-label{ color: rgba(10,10,12,0.55) !important; }
#confessionModal .lh-cr-timer .lh-timer-value{ color: rgba(10,10,12,0.92) !important; }

#confessionModal .lh-cr-body{
  position: relative;
  padding: 18px;
}

#confessionModal .lh-cr-glow{
  opacity: 0.55 !important;
  filter: blur(22px) !important;
}

#confessionModal .lh-cr-layout{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

#confessionModal .lh-cr-card{
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.10) !important;
}

#confessionModal .lh-confessionMeta,
#confessionModal .lh-cr-label,
#confessionModal .lh-cr-hint,
#confessionModal .lh-cr-foot{
  color: rgba(10,10,12,0.62) !important;
}

#confessionModal .lh-cr-label{
  font-weight: 800;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .2px;
}

#confessionModal .lh-cr-text{
  color: rgba(10,10,12,0.92) !important;
  font-weight: 800;
  line-height: 1.25;
}

#confessionModal .lh-cr-actions{
  background: transparent !important;
  margin-top: 14px;
  padding-top: 0 !important;
}

#confessionModal .lh-cr-btn{
  border-radius: 18px !important;
  padding: 14px 14px !important;
}

#confessionModal .lh-btn-ghost{
  background: rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  color: rgba(0,0,0,0.82) !important;
}

#confessionModal .lh-btn-primary{
  background: linear-gradient(90deg, #ff3b7f, #6d5bff) !important;
  color: white !important;
  border: none !important;
}

#confessionModal .lh-cr-info{
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

#confessionModal .lh-cr-infoTitle{
  font-size: 16px;
  font-weight: 900;
  color: rgba(10,10,12,0.92);
  margin-bottom: 10px;
}

#confessionModal .lh-cr-bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(10,10,12,0.72);
  line-height: 1.5;
  font-size: 13px;
}

#confessionModal .lh-cr-bullets b{ color: rgba(10,10,12,0.90); }

#confessionModal .lh-cr-rulesTitle{
  margin-top: 12px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(10,10,12,0.92);
}

#confessionModal .lh-cr-rules{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(10,10,12,0.70);
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 10px 12px;
  border-radius: 16px;
}

#confessionModal .lh-cr-cta{
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,68,140,0.12), rgba(124,92,255,0.10));
  border: 1px solid rgba(0,0,0,0.06);
}

#confessionModal .lh-cr-ctaTitle{
  font-weight: 900;
  color: rgba(10,10,12,0.92);
  margin-bottom: 4px;
}

#confessionModal .lh-cr-ctaText{
  color: rgba(10,10,12,0.70);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 10px;
}

#confessionModal .lh-cr-ctaBtn{
  width: 100%;
  text-align: center;
  border-radius: 18px !important;
}

/* Mobile: make it feel like a real screen */
@media (max-width: 640px){
  #confessionModal .lh-sheet{
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    max-width: none !important;
  }
  #confessionModal .lh-cr-layout{
    grid-template-columns: 1fr;
  }
  #confessionModal .lh-cr-info{
    margin-top: 12px;
  }
}

/* Lock background scroll when modal is open */
body.no-scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

/* Confession Roulette should feel like a full screen (mobile) */
@media (max-width: 768px) {
  #confessionModal {
    align-items: stretch;
    justify-content: stretch;
  }

  #confessionModal .lh-sheet {
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    border-radius: 0 !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    padding: 18px 16px 18px 16px;
  }

  #confessionModal .lh-modal-inner {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Back button style */
.lh-close.lh-back{
  width:auto;
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
  letter-spacing:.2px;
}

/* ===========================
   Confession Roulette = Fullscreen view (mobile-first)
   =========================== */

/* lock the page when modal is open */
body.no-scroll {
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
}

/* FULLSCREEN overlay (no half popup) */
#confessionModal.lh-modal {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999 !important;

  display: none;              /* hidden by default */
  align-items: stretch;
  justify-content: stretch;

  background: #ffeaf4;        /* soft pink background */
}

/* when open */
#confessionModal.lh-modal.is-open {
  display: flex !important;
}

/* the "sheet" becomes the full screen container */
#confessionModal .lh-sheet {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;

  border-radius: 0 !important;
  box-shadow: none !important;

  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  padding-bottom: 28px;
}

/* Sticky header so timer never jumps */
#confessionModal .lh-cr-header {
  position: sticky !important;
  top: 0;
  z-index: 2;

  background: #ffeaf4;
  border-bottom: 1px solid rgba(0,0,0,0.06);

  padding-top: env(safe-area-inset-top);
}

/* Timer: fixed width numbers -> no "jump" */
#confessionModal .lh-cr-timer {
  font-variant-numeric: tabular-nums;
  min-width: 118px;          /* prevents layout shift when digits change */
  text-align: right;
  white-space: nowrap;
}

/* Hide custom Back button (use phone back button) */
#confessionModal .lh-back {
  display: none !important;
}

/* Optional: keep close button but make it cleaner */
#confessionModal .lh-close {
  position: sticky;
  top: calc(env(safe-area-inset-top) + 8px);
  margin-left: auto;
  margin-right: 12px;
  z-index: 3;
}

/* Desktop: still full screen but center content nicely */
@media (min-width: 860px) {
  #confessionModal.lh-modal {
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  #confessionModal .lh-sheet {
    max-width: 720px !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 80px rgba(0,0,0,0.35) !important;
    background: #ffeaf4;
  }
}

/* ===== Features Modal Styles ===== */
#featuresModal.lh-modal {
  position: fixed !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  z-index: 9999 !important;

  display: none;
  align-items: stretch;
  justify-content: stretch;

  background: rgba(10, 12, 18, 0.95);
}

/* when open */
#featuresModal.lh-modal.is-open {
  display: flex !important;
}

/* the "sheet" becomes the full screen container */
#featuresModal .lh-sheet {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;

  border-radius: 0 !important;
  box-shadow: none !important;

  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  padding-bottom: 28px;
  background: rgba(10, 12, 18, 0.95);
}

/* Sticky header */
#featuresModal .lh-features-header {
  position: sticky !important;
  top: 0;
  z-index: 2;

  background: rgba(10, 12, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  padding-top: env(safe-area-inset-top);
  padding: 16px 18px 12px;
}

#featuresModal .lh-features-h1 {
  color: rgba(255, 255, 255, 0.95) !important;
}

#featuresModal .lh-features-sub {
  color: rgba(255, 255, 255, 0.62) !important;
}

#featuresModal .lh-features-badge {
  background: linear-gradient(135deg, rgba(255, 255, 100, 0.35), rgba(200, 150, 255, 0.28)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

#featuresModal .lh-features-body {
  position: relative;
  padding: 18px;
}

#featuresModal .lh-features-glow {
  display: none !important;
}

#featuresModal .lh-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

#featuresModal .lh-features-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 16px;
  padding: 16px;
  position: relative;
  z-index: 1;
}

#featuresModal .lh-features-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 8px 0;
  letter-spacing: 0.2px;
}

#featuresModal .lh-features-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  margin: 0;
}

#featuresModal .lh-features-cta {
  background: linear-gradient(135deg, rgba(255, 60, 100, 0.15), rgba(120, 90, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#featuresModal .lh-features-ctaTitle {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

#featuresModal .lh-features-ctaBtn {
  width: 100%;
  border-radius: 18px !important;
  background: linear-gradient(90deg, #ff3b7f, #6d5bff) !important;
  color: white !important;
  border: none !important;
}

/* Mobile: make it feel like a real screen */
@media (max-width: 640px) {
  #featuresModal .lh-sheet {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    max-width: none !important;
  }
  #featuresModal .lh-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop: still full screen but center content nicely */
@media (min-width: 860px) {
  #featuresModal.lh-modal {
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  #featuresModal .lh-sheet {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    max-width: 720px !important;
    width: 100% !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 80px rgba(0, 0, 0, 0.35) !important;
    background: rgba(10, 12, 18, 0.95);
    height: auto !important;
    max-height: 90vh !important;
  }
}

/* ===== Tap Race Modal Styles ===== */
#tapRaceModal.lh-modal {
  position: fixed !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  z-index: 9999 !important;

  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  align-items: stretch;
  justify-content: stretch;

  background: rgba(10, 12, 18, 0.95);
}

#tapRaceModal.lh-modal.is-open {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

#tapRaceModal .lh-backdrop {
  position: absolute;
  inset: 0;
  display: none !important;
}

#tapRaceModal.lh-modal.is-open .lh-backdrop {
  display: block !important;
}

#tapRaceModal .lh-sheet {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;

  border-radius: 0 !important;
  box-shadow: none !important;

  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  padding-bottom: 28px;
  background: rgba(10, 12, 18, 0.95);
}

#tapRaceModal .lh-taprace-header {
  position: sticky !important;
  top: 0;
  z-index: 2;

  background: rgba(10, 12, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  padding-top: env(safe-area-inset-top);
  padding: 16px 18px 12px;
}

#tapRaceModal .lh-taprace-h1 {
  color: rgba(255, 255, 255, 0.95) !important;
}

#tapRaceModal .lh-taprace-sub {
  color: rgba(255, 255, 255, 0.62) !important;
}

#tapRaceModal .lh-taprace-badge {
  background: linear-gradient(135deg, rgba(255, 200, 80, 0.35), rgba(255, 100, 100, 0.28)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

#tapRaceModal .lh-taprace-body {
  position: relative;
  padding: 18px;
}

#tapRaceModal .lh-taprace-glow {
  display: none !important;
}

#tapRaceModal .lh-taprace-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

#tapRaceModal .lh-taprace-cta {
  background: linear-gradient(135deg, rgba(255, 150, 100, 0.15), rgba(255, 100, 150, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#tapRaceModal .lh-taprace-ctaTitle {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

#tapRaceModal .lh-taprace-ctaBtn {
  width: 100%;
  border-radius: 18px !important;
  background: linear-gradient(90deg, #ff6b4a, #ff3b7f) !important;
  color: white !important;
  border: none !important;
}

@media (max-width: 640px) {
  #tapRaceModal .lh-sheet {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    max-width: none !important;
  }
}

@media (min-width: 860px) {
  #tapRaceModal.lh-modal {
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  #tapRaceModal .lh-sheet {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    max-width: 720px !important;
    width: 100% !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 80px rgba(0, 0, 0, 0.35) !important;
    background: rgba(10, 12, 18, 0.95);
    height: auto !important;
    max-height: 90vh !important;
  }
}

/* ========== Stories Modal (Full-screen) ========== */
#storiesModal.lh-modal {
  position: fixed !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  transform: none !important;
  z-index: 9999 !important;
  display: none;
  flex-direction: column;
  background: rgba(10, 12, 18, 0.98);
}

#storiesModal.lh-modal.is-open {
  display: flex !important;
}

#storiesModal .lh-sheet {
  position: absolute !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  transform: none !important;
  border-radius: 0 !important;
  background: linear-gradient(180deg, #0a0c12 0%, #12151f 100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#storiesModal .lh-stories-header {
  position: sticky !important;
  top: 0;
  z-index: 2;
  background: rgba(10, 12, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: env(safe-area-inset-top);
  padding: 16px 18px 12px;
}

#storiesModal .lh-stories-h1 {
  color: rgba(255, 255, 255, 0.95) !important;
}

#storiesModal .lh-stories-sub {
  color: rgba(255, 255, 255, 0.62) !important;
}

#storiesModal .lh-stories-badge {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.35), rgba(150, 100, 255, 0.28)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

#storiesModal .lh-stories-body {
  position: relative;
  padding: 18px;
}

#storiesModal .lh-stories-intro {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

#storiesModal .lh-stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

#storiesModal .lh-stories-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  position: relative;
}

#storiesModal .lh-stories-card-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

#storiesModal .lh-stories-card h3 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

#storiesModal .lh-stories-preview {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

#storiesModal .lh-stories-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
}

#storiesModal .lh-stories-card-locked {
  opacity: 0.7;
  border-style: dashed;
}

#storiesModal .lh-stories-cta {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.15), rgba(150, 100, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}

#storiesModal .lh-stories-ctaTitle {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

#storiesModal .lh-stories-ctaBtn {
  width: 100%;
  border-radius: 18px !important;
  background: linear-gradient(90deg, #6b7aff, #a855f7) !important;
  color: white !important;
  border: none !important;
}

@media (max-width: 640px) {
  #storiesModal .lh-sheet {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    max-width: none !important;
  }
}

@media (min-width: 641px) {
  #storiesModal .lh-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  #storiesModal.lh-modal {
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  #storiesModal .lh-sheet {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    max-width: 720px !important;
    width: 100% !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 80px rgba(0, 0, 0, 0.35) !important;
    background: rgba(10, 12, 18, 0.95);
    height: auto !important;
    max-height: 90vh !important;
  }
}

/* ========== Stories Page (Standalone) ========== */
.stories-page {
  background: linear-gradient(180deg, #0a0c12 0%, #12151f 100%);
  min-height: 100vh;
}

.stories-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.stories-hero {
  text-align: center;
  margin-bottom: 40px;
}

.stories-hero-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.stories-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.stories-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.stories-hero-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.stories-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .stories-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.story-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 24px;
}

.story-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.story-card h2 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.story-preview {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
}

.story-schedule {
  display: block;
  color: #ff6b8a;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}

.story-card-crush {
  background: linear-gradient(135deg, rgba(255, 107, 138, 0.18), rgba(255, 150, 180, 0.08));
  border-color: rgba(255, 107, 138, 0.25);
}

.story-card-crush .story-tag {
  background: rgba(255, 107, 138, 0.25);
  color: #ffb3c6;
}

.story-card-locked {
  opacity: 0.65;
  border-style: dashed;
}

.stories-cta {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.15), rgba(150, 100, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.stories-cta h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 16px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.stories-footer {
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.nav-desktop a.active,
.menu-tile.active {
  color: #ff6b4a !important;
}

/* === HOW IT WORKS PAGE === */

.howitworks-page {
  background: #0d0d0f;
  min-height: 100vh;
}

.how-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.how-hero {
  text-align: center;
  margin-bottom: 48px;
}

.how-hero-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.how-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.how-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.how-step {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
}

.how-step--special {
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.12), rgba(255, 80, 120, 0.08));
  border-color: rgba(255, 107, 74, 0.2);
}

.how-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b4a, #ff4757);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.how-step-content h2 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.how-step-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 14px;
}

.how-step-content code {
  background: rgba(255, 107, 74, 0.2);
  color: #ff9f7a;
  padding: 2px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.9rem;
}

.how-step-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(76, 217, 100, 0.12);
  border: 1px solid rgba(76, 217, 100, 0.25);
  padding: 12px 16px;
  border-radius: 12px;
  color: #7cfc7c;
  font-size: 0.95rem;
  font-weight: 600;
}

.how-step-highlight--alt {
  background: rgba(255, 200, 100, 0.1);
  border-color: rgba(255, 200, 100, 0.25);
  color: #ffd27a;
}

.how-emoji {
  font-size: 1.3rem;
}

.how-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.how-tag {
  background: rgba(100, 150, 255, 0.15);
  border: 1px solid rgba(100, 150, 255, 0.25);
  color: #a0c4ff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.how-features-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.how-features-mini span {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.how-safety {
  background: linear-gradient(135deg, rgba(76, 217, 100, 0.1), rgba(50, 180, 80, 0.06));
  border: 1px solid rgba(76, 217, 100, 0.2);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  margin-bottom: 32px;
}

.how-safety-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.how-safety h3 {
  color: #7cfc7c;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.how-safety p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.how-cta {
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.15), rgba(255, 80, 120, 0.1));
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
}

.how-cta h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.how-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.how-footer {
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .how-step {
    flex-direction: column;
    gap: 14px;
  }
  
  .how-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* === PREMIUM PAGE === */

.premium-page {
  background: #0d0d0f;
  min-height: 100vh;
}

.prem-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.prem-hero {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.prem-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(138, 100, 255, 0.25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.prem-hero-diamond {
  font-size: 5rem;
  position: relative;
  z-index: 1;
  animation: diamondPulse 2s ease-in-out infinite;
}

@keyframes diamondPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(138, 100, 255, 0.6)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 40px rgba(138, 100, 255, 0.9)); }
}

.prem-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  background: linear-gradient(135deg, #fff, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.prem-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.prem-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 700px) {
  .prem-comparison {
    grid-template-columns: 1fr;
  }
}

.prem-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}

.prem-card--premium {
  background: linear-gradient(135deg, rgba(138, 100, 255, 0.15), rgba(100, 80, 200, 0.08));
  border-color: rgba(138, 100, 255, 0.4);
  box-shadow: 0 0 40px rgba(138, 100, 255, 0.2);
}

.prem-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b4a, #ff4757);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prem-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.prem-card-icon {
  font-size: 2rem;
}

.prem-card-header h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.prem-card-price {
  margin-bottom: 20px;
}

.prem-price-main {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.prem-card--premium .prem-price-main {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prem-price-period {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.prem-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.prem-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

.prem-features li:last-child {
  border-bottom: none;
}

.prem-check {
  color: #4cd964;
  font-weight: 800;
}

.prem-x {
  color: rgba(255, 255, 255, 0.3);
}

.prem-star {
  color: #ffd700;
}

.prem-feature-disabled {
  color: rgba(255, 255, 255, 0.4) !important;
}

.prem-feature-highlight {
  color: #fff !important;
  font-weight: 600;
}

.prem-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.prem-btn--free {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prem-btn--free:hover {
  background: rgba(255, 255, 255, 0.15);
}

.prem-btn--premium {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.prem-btn--premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
}

.prem-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 12px;
}

.prem-why {
  margin-bottom: 40px;
}

.prem-why h3 {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.prem-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .prem-why-grid {
    grid-template-columns: 1fr;
  }
}

.prem-why-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.prem-why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.prem-why-item h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.prem-why-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.5;
}

.prem-cta {
  background: linear-gradient(135deg, rgba(138, 100, 255, 0.18), rgba(100, 80, 200, 0.1));
  border: 1px solid rgba(138, 100, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prem-cta-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(138, 100, 255, 0.3), transparent 70%);
  pointer-events: none;
}

.prem-cta h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.prem-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.prem-cta-btn {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa) !important;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  position: relative;
  z-index: 1;
}

.prem-footer {
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ========== RULES PAGE ========== */
.rules-page {
  background: #0d0d0f;
  min-height: 100vh;
}

.rules-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.rules-hero {
  text-align: center;
  margin-bottom: 48px;
}

.rules-hero-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.rules-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.rules-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.rules-hero-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 0.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FAQ PAGE ========== */
.faq-page {
  background: #0d0d0f;
  min-height: 100vh;
}

.faq-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.faq-hero {
  text-align: center;
  margin-bottom: 48px;
}

.faq-hero-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.faq-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.faq-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-cta {
  text-align: center;
  margin-top: 32px;
}

.rules-cta {
  text-align: center;
  margin-top: 32px;
}

.rules-content {
  max-width: 900px;
  margin: 0 auto;
}

.rule-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.rule-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rule-heading.warning-icon::before { content: "⚠️"; }
.rule-heading.lock-icon::before { content: "🔒"; }
.rule-heading.no-icon::before { content: "🚫"; }
.rule-heading.chat-icon::before { content: "💬"; }
.rule-heading.red-circle-icon::before { content: "🔴"; }

.rule-block p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.rule-block p:last-child {
  margin-bottom: 0;
}

.rule-list {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.8);
}

.rule-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }
}

.rule-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.rule-card.do-card {
  border-color: rgba(76, 217, 100, 0.3);
  background: linear-gradient(135deg, rgba(76, 217, 100, 0.08), rgba(76, 217, 100, 0.02));
}

.rule-card.dont-card {
  border-color: rgba(255, 59, 48, 0.3);
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.08), rgba(255, 59, 48, 0.02));
}

.rule-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rule-card-title.green-check::before { content: "✅"; }
.rule-card-title.red-x::before { content: "❌"; }

.rule-numbered {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: rule-counter;
}

.rule-numbered li {
  counter-increment: rule-counter;
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.rule-numbered li::before {
  content: counter(rule-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}

.rule-numbered li:last-child {
  margin-bottom: 0;
}

.warning-block {
  border-color: rgba(255, 204, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 204, 0, 0.03));
}

.consequence-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.consequence-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.consequence-list li:last-child {
  margin-bottom: 0;
}

/* ========== PRIVACY PAGE ========== */
.privacy-page {
  background: #0d0d0f;
  min-height: 100vh;
}

.privacy-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.privacy-hero {
  text-align: center;
  margin-bottom: 48px;
}

.privacy-hero-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.privacy-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.privacy-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.privacy-dates {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 12px;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-intro {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.privacy-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.privacy-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.privacy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0 8px;
}

.privacy-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.privacy-section ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacy-section ul ul {
  margin-top: 8px;
}

.privacy-section a {
  color: var(--accent);
  text-decoration: underline;
}

.privacy-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.privacy-highlight.warning {
  border-left: 3px solid #ff6b6b;
}

.privacy-highlight.safe {
  border-left: 3px solid #4cd964;
}

.privacy-highlight p {
  margin-bottom: 0;
}

.privacy-final {
  text-align: center;
  padding: 32px;
  margin: 32px 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(225, 29, 72, 0.03));
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 16px;
}

.privacy-final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.privacy-final p:last-child {
  margin-bottom: 0;
}

.privacy-cta {
  text-align: center;
  margin-top: 32px;
}

/* ========== FEATURES STANDALONE PAGE ========== */
.features-page {
  background: #0d0d0f;
  min-height: 100vh;
}

.features-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.features-hero {
  text-align: center;
  margin-bottom: 48px;
}

.features-badge {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.features-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.features-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.features-grid-section {
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.features-card {
  background: linear-gradient(180deg, #12141a, #0e1016);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.2), 0 8px 32px rgba(0,0,0,0.4);
}

.features-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.features-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.features-cta-section {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(225, 29, 72, 0.03));
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 16px;
}

.features-cta-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* Features Page Mood Card */
.features-card--mood {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(255, 111, 174, 0.1));
  border: 1px solid rgba(138, 43, 226, 0.3);
  text-align: center;
  padding: 32px 24px;
}

.features-card--mood h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.features-card--mood .mood-desc {
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto 12px;
}

.features-card--mood .mood-tagline {
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 20px;
}

.features-card--mood .mood-cta {
  display: inline-block;
  margin-bottom: 12px;
}

.features-card--mood .mood-secondary {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.features-card--mood .mood-secondary:hover {
  color: #ff6fae;
}

/* ========== TAP RACE STANDALONE PAGE ========== */
.taprace-page {
  background: #0d0d0f;
  min-height: 100vh;
}

.taprace-main {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.taprace-hero {
  text-align: center;
  margin-bottom: 40px;
}

.taprace-hero-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.taprace-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.taprace-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.taprace-content {
  max-width: 500px;
  margin: 0 auto;
}

.taprace-game-card {
  background: linear-gradient(135deg, rgba(255, 200, 80, 0.08), rgba(255, 100, 100, 0.05));
  border: 1px solid rgba(255, 200, 80, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.taprace-game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.taprace-game-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.taprace-game-stats {
  color: #fff;
  font-weight: 600;
}

.taprace-game-body {
  text-align: center;
}

.taprace-word-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.taprace-word {
  font-family: 'Bebas Neue', monospace;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.taprace-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  margin-bottom: 12px;
}

.taprace-input:focus {
  outline: none;
  border-color: var(--accent);
}

.taprace-submit {
  width: 100%;
}

.taprace-msg {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 12px;
}

.taprace-lock {
  text-align: center;
  padding: 20px 0;
}

.taprace-lock-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.taprace-leaderboard-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.taprace-lb-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.taprace-lb-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.taprace-lb-row:last-child {
  border-bottom: none;
}

.taprace-lb-rank {
  font-size: 1.2rem;
}

.taprace-lb-time {
  color: #fff;
  font-weight: 600;
}

.taprace-lock-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

.taprace-info {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.taprace-info h2 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.taprace-info p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.taprace-info ul {
  list-style: none;
  padding: 0;
}

.taprace-info ul li {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.taprace-info ul li::before {
  content: "⚡";
  position: absolute;
  left: 0;
}

.taprace-cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 200, 80, 0.1), rgba(255, 100, 100, 0.05));
  border: 1px solid rgba(255, 200, 80, 0.2);
  border-radius: 16px;
}

.taprace-cta p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Guidance CTA (FAQ -> Guidance) */
.guidance-cta{
  margin: 22px 0 14px;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.guidance-title{
  margin: 0 0 8px;
  letter-spacing: 1px;
}

.guidance-sub{
  margin: 0 0 14px;
  opacity: 0.85;
  line-height: 1.4;
}
