/* ── LATIN CUTIES — DATING THEME ── */
:root {
  --bg-dark: #110818;
  --bg-card: #1e0f2a;
  --bg-input: #2a1438;
  --rose: #e84393;
  --rose-dark: #c2185b;
  --blush: #fd79a8;
  --plum: #5b2c6f;
  --gold: #f9ca24;
  --gold-dark: #f0932b;
  --warm: #fab1a0;
  --green: #00e676;
  --private-purple: #a855f7;
  --text: #f5f0f7;
  --text-muted: #b8a0c8;
  --text-dim: #7a6a8a;
  --border: #3a2848;
  --radius: 12px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--blush); }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,8,24,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,67,147,.12);
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo {
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--rose), var(--warm));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.logo span { font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-balance { color: var(--gold); font-size: .85rem; font-weight: 600; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 8px 18px; border-radius: 24px;
  font-size: .85rem; font-weight: 600; cursor: pointer; border: none;
  transition: all .2s; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: #fff;
  box-shadow: 0 2px 12px rgba(232,67,147,.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(232,67,147,.35); }
.btn-outline {
  background: transparent; color: var(--blush);
  border: 1px solid var(--blush);
}
.btn-outline:hover { background: rgba(232,67,147,.1); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a1e;
}
.btn-sm { padding: 6px 14px; font-size: .8rem; }

/* ── PROFILE DROPDOWN ── */
.profile-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
}
.profile-dropdown {
  position: fixed; top: 60px; right: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 0;
  min-width: 200px; display: none; z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.profile-dropdown.active { display: block; }
.profile-dropdown a, .profile-dropdown button {
  display: block; width: 100%; text-align: left;
  padding: 8px 18px; font-size: .85rem; color: var(--text-muted);
  background: none; border: none; cursor: pointer;
}
.profile-dropdown a:hover, .profile-dropdown button:hover { background: rgba(232,67,147,.08); color: var(--text); }
.profile-dropdown .balance-display {
  padding: 8px 18px; font-size: .85rem; color: var(--gold); font-weight: 600;
}
.profile-dropdown .divider {
  height: 1px; background: var(--border); margin: 6px 0;
}

/* ── HERO BANNER (index) ── */
.hero-banner {
  padding: 100px 24px 40px;
  text-align: center;
  background: radial-gradient(ellipse at 20% 30%, rgba(232,67,147,.1) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 70%, rgba(91,44,111,.1) 0%, transparent 55%),
              var(--bg-dark);
}
.hero-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  margin-bottom: 12px;
}
.hero-banner h1 .highlight {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-banner p {
  color: var(--text-muted); max-width: 580px;
  margin: 0 auto 8px; font-size: clamp(.9rem, 1.5vw, 1.05rem);
}
.hero-tagline {
  color: var(--warm); font-style: italic; font-size: .9rem;
  margin-bottom: 24px;
}

/* ── CATEGORY BAR ── */
.category-bar {
  display: flex; gap: 8px; padding: 12px 24px;
  background: rgba(30,15,42,.8);
  border-bottom: 1px solid rgba(255,255,255,.03);
  overflow-x: auto; justify-content: center;
}
.category-bar a {
  padding: 6px 18px; border-radius: 20px; font-size: .82rem;
  color: var(--text-muted); background: var(--bg-card);
  border: 1px solid transparent; white-space: nowrap;
  transition: all .2s;
}
.category-bar a:hover { border-color: var(--rose); color: var(--text); }
.category-bar a.active {
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: #fff; border-color: transparent;
}

/* ── PROFILE CARD GRID ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding: 24px 24px 40px;
  max-width: 1200px; margin: 0 auto;
}
.profile-card {
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  cursor: pointer; text-decoration: none; color: inherit;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.profile-thumb {
  width: 100%; padding-top: 56.25%; /* 16:9 landscape like Chaturbate */
  position: relative; overflow: hidden;
  background: #1a1a2e;
}
.profile-thumb img,
.profile-thumb video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.profile-thumb .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.online-dot {
  position: absolute; top: 12px; left: 12px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--bg-card);
  z-index: 2;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
}
.badge-live {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,107,129,.9); color: #fff; font-size: .65rem;
  font-weight: 700; padding: 4px 10px; border-radius: 10px; z-index: 2;
}
.badge-private {
  position: absolute; top: 12px; right: 12px;
  background: rgba(168,85,247,.85); color: #fff; font-size: .65rem;
  font-weight: 700; padding: 4px 10px; border-radius: 10px; z-index: 2;
}
.viewer-badge-card {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,.6); color: #fff; font-size: .7rem;
  padding: 3px 8px; border-radius: 8px; z-index: 2;
}
.heart-btn {
  position: absolute; bottom: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(232,67,147,.85); border: none;
  color: #fff; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s; z-index: 2;
}
.heart-btn:hover { transform: scale(1.15); }
.profile-info { padding: 14px 16px; }
.profile-name { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.profile-location { font-size: .78rem; color: var(--text-muted); margin-bottom: 6px; }
.profile-bio { font-size: .78rem; color: var(--text-dim); font-style: italic; margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.profile-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.profile-tags span {
  background: rgba(232,67,147,.08); color: var(--blush);
  font-size: .68rem; padding: 3px 9px; border-radius: 10px;
}
.profile-tags span.looking {
  background: rgba(249,202,36,.1); color: var(--gold);
}

/* ── ROOM PAGE ── */
.room-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px 20px;
}
.room-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap; gap: 8px;
}
.room-header .model-name { font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); display: inline-block;
  animation: pulse-dot 2s infinite;
}
.room-actions { display: flex; align-items: center; gap: 10px; }
.viewer-badge { font-size: .85rem; color: var(--text-muted); }
.fav-btn {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); padding: 6px 14px; border-radius: 20px;
  font-size: .82rem; cursor: pointer; transition: all .2s;
}
.fav-btn:hover, .fav-btn.active { border-color: var(--rose); color: var(--rose); }
.private-btn {
  background: linear-gradient(135deg, var(--private-purple), var(--rose));
  border: none; color: #fff; padding: 6px 16px; border-radius: 20px;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: transform .2s;
}
.private-btn:hover { transform: translateY(-1px); }

/* ── VIDEO CONTAINER ── */
.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-container video {
  width: 100%; height: 100%; object-fit: contain;
}
.placeholder-stream {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.video-overlay-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  display: flex; justify-content: space-between; align-items: center;
}

/* ── CHAT ── */
.chat-section {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--bg-card);
}
.chat-messages {
  flex: 1; overflow-y: auto; padding: 12px;
  font-size: .82rem; max-height: calc(100vh - 200px);
}
.chat-msg { padding: 4px 0; word-wrap: break-word; }
.chat-msg .username { font-weight: 700; margin-right: 4px; }
.chat-msg .username.model { color: var(--rose); }
.chat-msg .username.user { color: var(--blush); }
.chat-msg .username.tipper { color: var(--gold); }
.tip-alert {
  background: rgba(249,202,36,.08); border: 1px solid rgba(249,202,36,.15);
  padding: 6px 10px; border-radius: 8px; margin: 4px 0;
  font-size: .8rem;
}
.chat-input-bar {
  display: flex; gap: 6px; padding: 10px 12px;
  border-top: 1px solid var(--border);
}
.chat-input-bar input {
  flex: 1; background: var(--bg-input); border: 1px solid var(--border);
  border-radius: 20px; padding: 8px 14px; color: var(--text);
  font-size: .82rem; outline: none;
}
.chat-input-bar input:focus { border-color: var(--rose); }
.tip-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark); border: none; padding: 6px 14px;
  border-radius: 20px; font-size: .78rem; font-weight: 700;
  cursor: pointer;
}

/* ── MODEL BIO (room page) ── */
.model-bio {
  padding: 20px;
}
.model-bio h3 { font-size: 1rem; margin-bottom: 12px; }
.bio-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 16px;
  font-size: .85rem;
}
.bio-grid dt { color: var(--text-muted); }
.bio-grid dd { color: var(--text); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  max-width: 400px; width: 90%; position: relative;
}
.modal h2 { font-size: 1.2rem; margin-bottom: 12px; }
.modal p { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }
.close-modal {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.3rem; cursor: pointer;
}
.tip-amounts {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.tip-amounts button {
  background: var(--bg-input); border: 1px solid var(--border);
  color: var(--gold); padding: 8px 16px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700; cursor: pointer;
  transition: border-color .2s;
}
.tip-amounts button:hover { border-color: var(--gold); }
.custom-tip { display: flex; gap: 8px; }
.custom-tip input {
  flex: 1; background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 14px; color: var(--text);
  font-size: .9rem; outline: none;
}
.balance-line { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.balance-line strong { color: var(--gold); }

/* ── EMPTY STATE ── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center; padding: 80px 24px;
  color: var(--text-muted);
}
.empty-state p { margin-bottom: 8px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 40px 24px 20px;
  margin-top: 60px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px; max-width: 1100px; margin: 0 auto 28px;
}
.footer-brand .logo { font-size: 1.2rem; margin-bottom: 6px; display: inline-block; }
.footer-brand p { font-size: .78rem; color: var(--text-muted); max-width: 260px; line-height: 1.5; }
.footer-brand .network-link { margin-top: 8px; font-size: .72rem; }
.footer-col h4 {
  font-size: .75rem; margin-bottom: 10px; color: var(--rose);
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-col a {
  display: block; color: var(--text-muted); font-size: .78rem;
  padding: 2px 0; text-decoration: none;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  text-align: center; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.04);
  font-size: .72rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--rose); }

/* ── SILHOUETTE CARDS ── */
.silhouette-card {
  cursor: default; pointer-events: none;
  opacity: .7; transition: none;
}
.silhouette-card:hover { transform: none; box-shadow: none; }
.silhouette-card .profile-thumb .placeholder {
  display: flex; align-items: center; justify-content: center;
}
.silhouette-card .profile-thumb .placeholder svg { color: var(--text); }

/* ── CONTENT SECTIONS (homepage) ── */
.content-section {
  padding: 70px 24px;
}
.section-title {
  text-align: center; font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; margin-bottom: 10px;
}
.section-title .highlight {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub {
  text-align: center; color: var(--text-muted); max-width: 540px;
  margin: 0 auto 40px; font-size: .92rem;
}

/* ── STORIES ── */
.stories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.story-card {
  background: var(--bg-dark); border-radius: var(--radius);
  padding: 24px; border: 1px solid rgba(232,67,147,.08);
  position: relative; overflow: hidden;
}
.story-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}
.story-heart { font-size: 1.6rem; margin-bottom: 10px; }
.story-quote {
  font-size: .88rem; font-style: italic; color: var(--text-muted);
  margin-bottom: 14px; line-height: 1.6;
}
.story-couple { display: flex; align-items: center; gap: 10px; font-size: .82rem; }
.story-couple small { color: var(--text-muted); }
.story-avatars { display: flex; }
.avatar-circle {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; border: 2px solid var(--bg-dark);
}
.avatar-circle.her {
  background: linear-gradient(135deg, var(--rose), var(--blush));
  margin-right: -8px; z-index: 1;
}
.avatar-circle.him { background: linear-gradient(135deg, #4d7cff, #6bcfff); }

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.how-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  border: 1px solid rgba(255,255,255,.03);
  transition: border-color .3s;
}
.how-card:hover { border-color: rgba(232,67,147,.2); }
.how-step {
  font-size: .68rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--rose); margin-bottom: 6px; font-weight: 700;
}
.how-icon { font-size: 2.2rem; margin-bottom: 12px; }
.how-card h3 { font-size: 1rem; margin-bottom: 6px; }
.how-card p { font-size: .82rem; color: var(--text-muted); }

/* ── SPLIT TITLE (left-aligned headings in 2-col sections) ── */
.split-title {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 700; margin-bottom: 14px;
}
.split-title .highlight {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── GO PRIVATE SPLIT ── */
.private-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 1000px; margin: 0 auto; align-items: center;
}
.private-text-col p { color: var(--text-muted); margin-bottom: 20px; font-size: .92rem; line-height: 1.7; }
.private-features {
  list-style: none;
}
.private-features li {
  padding: 8px 0; font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.private-chat-mockup {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(168,85,247,.18);
}
.mockup-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mockup-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--warm));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
}
.mockup-header strong { font-size: .9rem; }
.mockup-bubble {
  padding: 10px 14px; border-radius: 14px; margin-bottom: 8px;
  font-size: .8rem; max-width: 82%; line-height: 1.5; position: relative;
}
.mockup-bubble.her {
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: #fff; border-bottom-left-radius: 4px;
}
.mockup-bubble.him {
  background: rgba(255,255,255,.07); color: var(--text);
  border-bottom-right-radius: 4px; margin-left: auto;
}
.mockup-bubble .chat-time { font-size: .6rem; opacity: .5; display: block; margin-top: 3px; }
.mockup-lock {
  text-align: center; margin-top: 14px; font-size: .72rem;
  color: var(--private-purple);
}

/* ── FOR WOMEN SPLIT ── */
.women-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; max-width: 1000px; margin: 0 auto; align-items: start;
}
.women-text-col p { color: var(--text-muted); margin-bottom: 20px; font-size: .92rem; line-height: 1.7; }
.benefit-list-hp { list-style: none; }
.benefit-list-hp li {
  padding: 8px 0; font-size: .86rem; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.benefit-list-hp .chk { color: var(--green); font-weight: 700; flex-shrink: 0; }
.gift-card-col {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(232,67,147,.1);
  text-align: center;
}
.gift-card-col h3 { font-size: 1rem; margin-bottom: 6px; }
.gift-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: 18px; }
.gift-grid-hp {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.gift-item-hp {
  background: rgba(255,255,255,.03); border-radius: 10px;
  padding: 14px 10px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.gift-item-hp .gi { font-size: 1.4rem; }
.gift-item-hp .gl { font-size: .72rem; color: var(--text-muted); }
.gift-item-hp .ga { font-size: .9rem; font-weight: 700; color: var(--gold); }
.gift-item-hp .gk { font-size: .68rem; color: var(--green); }
.gift-note {
  font-size: .75rem; color: var(--text-dim); margin-top: 16px;
  font-style: italic; line-height: 1.4;
}

/* ── SAFETY GRID ── */
.safety-grid-hp {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; max-width: 1000px; margin: 0 auto;
}
.safety-card-hp {
  background: var(--bg-dark); border-radius: var(--radius);
  padding: 22px; border-left: 3px solid var(--rose);
}
.safety-card-hp h4 { font-size: .9rem; margin-bottom: 6px; }
.safety-card-hp p { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

/* ── LANGUAGE BAR ── */
.lang-bar-hp {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 700px; margin: 0 auto;
}
.lang-pill-hp {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,.05);
  padding: 8px 18px; border-radius: 20px; font-size: .82rem;
  transition: border-color .2s;
}
.lang-pill-hp:hover { border-color: var(--rose); }

/* ── CTA BANNER ── */
.cta-banner-hp {
  padding: 70px 24px; text-align: center;
  background: linear-gradient(135deg, #6c2142, #5b2c6f);
  position: relative; overflow: hidden;
}
.cta-banner-hp::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.04) 0%, transparent 70%);
}
.cta-banner-hp h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
  margin-bottom: 14px; position: relative;
}
.cta-banner-hp p {
  color: rgba(255,255,255,.7); margin-bottom: 28px;
  font-size: 1rem; position: relative; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .room-page { padding: 60px 10px 10px; }
  .chat-messages { max-height: 250px; }
}
@media (max-width: 1024px) {
  .profile-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-banner { padding: 80px 16px 30px; }
  .private-split, .women-split { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 10px; }
  .footer-inner { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .gift-grid-hp { grid-template-columns: 1fr; }
}
