/* ==========================================================================
   REISNAB LANDING PAGE — DESIGN SYSTEM (Purple / Pink Theme)
   ========================================================================== */

:root {
  --bg-primary: #0f0a1c;
  --bg-secondary: #171126;
  --bg-card: rgba(27, 19, 44, 0.82);
  --bg-card-hover: rgba(35, 25, 58, 0.95);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(168, 85, 247, 0.4);
  --color-primary: #7c3aed;
  --color-primary-light: #a855f7;
  --color-accent-pink: #ec4899;
  --color-accent-gold: #fbbf24;
  --color-live-red: #ff334b;
  --color-online-green: #00d26a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;
  --font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.45);
  --shadow-glow-purple: 0 0 24px rgba(168,85,247,0.45);
  --shadow-glow-pink: 0 0 24px rgba(236,72,153,0.45);
  --shadow-glow-green: 0 0 24px rgba(0,210,106,0.45);
  --shadow-glow-gold: 0 0 24px rgba(251,191,36,0.45);
  --transition-fast: 0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-normal: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; -webkit-tap-highlight-color: transparent; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 10% 20%,rgba(124,58,237,0.18) 0%,transparent 40%),
    radial-gradient(circle at 90% 80%,rgba(236,72,153,0.14) 0%,transparent 40%);
  background-attachment: fixed;
}

a { color:inherit; text-decoration:none; }
button {
  font-family:inherit;
  border:none;
  cursor:pointer;
  background:none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.page-container {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: calc(48px + env(safe-area-inset-top, 0px)) 16px calc(110px + env(safe-area-inset-bottom, 0px));
}

/* --- Who's Watching Ticker Bar --- */
.watching-ticker-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 36px;
  background: rgba(15,10,28,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  display: flex; align-items: center; overflow: hidden;
}

.ticker-label {
  padding: 0 12px; font-size: 10.5px; font-weight: 800;
  color: var(--color-live-red); letter-spacing: 1px;
  white-space: nowrap; border-right: 1px solid var(--border-glass);
  height: 100%; display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.ticker-label::before {
  content: ''; width: 7px; height: 7px; background: var(--color-live-red);
  border-radius: 50%; animation: blink 1.2s infinite;
}

.ticker-track-wrap { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.ticker-track { display: flex; white-space: nowrap; animation: tickerScroll 28s linear infinite; }
.ticker-item { font-size: 12px; color: var(--text-sub); padding: 0 24px; border-right: 1px solid var(--border-glass); height: 36px; display: flex; align-items: center; gap: 6px; }
.ticker-item strong { color: #fff; font-weight: 700; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Returning Visitor Banner --- */
.returning-banner {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, rgba(124,58,237,0.95) 0%, rgba(168,85,247,0.95) 100%);
  backdrop-filter: blur(10px); border-bottom: 1px solid rgba(168,85,247,0.3);
  padding: 10px 48px 10px 20px; font-size: 13px; font-weight: 600; color: #fff; text-align: center;
  animation: slideDown 0.4s ease-out;
}
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.returning-banner-close {
  position: absolute; top: 50%; right: 14px; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2);
  color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center;
}

/* --- DM Badge --- */
.dm-notification-badge {
  position: fixed; top: 46px; right: 14px; z-index: 998;
  background: rgba(23,17,38,0.96); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
  padding: 10px 36px 10px 12px; display: flex; align-items: center; gap: 10px;
  max-width: 280px; cursor: pointer; box-shadow: var(--shadow-lg);
  animation: slideInRight 0.5s ease-out 6s both;
}
@keyframes slideInRight { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.dm-badge-avatar { position: relative; flex-shrink: 0; width: 38px; height: 38px; }
.dm-badge-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-online-green); }
.dm-badge-dot { position: absolute; bottom: 1px; right: 1px; width: 10px; height: 10px; background: var(--color-online-green); border-radius: 50%; border: 2px solid var(--bg-secondary); animation: blink 1.5s infinite; }
.dm-badge-text { flex: 1; min-width: 0; }
.dm-badge-title { font-size: 12px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.dm-badge-sub { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.dm-badge-count { background: var(--color-primary-light); color: #fff; font-size: 9px; font-weight: 800; padding: 1px 5px; border-radius: var(--radius-full); }
.dm-badge-close { position: absolute; top: 8px; right: 8px; font-size: 14px; color: var(--text-muted); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); }

/* --- Unified Sleek Live Status & Urgency Bar --- */
.unified-live-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(23, 17, 38, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  margin: 0 auto 16px auto;
  max-width: 680px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 16px rgba(168, 85, 247, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.unified-live-header:hover {
  transform: translateY(-1px);
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 6px 24px rgba(168, 85, 247, 0.25);
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-sub);
}
.live-pill-status {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-live-red);
  box-shadow: 0 0 8px var(--color-live-red);
  animation: blink 1.2s infinite;
}
.live-pill-timer {
  color: #fff;
}
.live-pill-timer strong {
  color: var(--color-accent-gold);
  font-family: monospace, sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.45);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(251, 191, 36, 0.35);
}
.live-pill-spots strong {
  color: #ff4d67;
  font-weight: 800;
}

.screenshot-share-card {
  background: var(--bg-card); backdrop-filter: blur(16px);
  border: 1px solid rgba(168,85,247,0.25); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 22px; cursor: pointer; transition: var(--transition-normal);
  display: flex; align-items: center;
}
.screenshot-share-card:hover { transform: translateY(-2px); border-color: rgba(168,85,247,0.5); }
.screenshot-share-img-wrap { width: 80px; height: 80px; position: relative; flex-shrink: 0; overflow: hidden; }
.screenshot-share-img { width: 100%; height: 100%; object-fit: cover; }
.screenshot-share-blur { position: absolute; inset: 0; background: rgba(15,10,28,0.55); backdrop-filter: blur(4px); }
.screenshot-share-body { flex: 1; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.screenshot-share-icon { font-size: 22px; flex-shrink: 0; }
.screenshot-share-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.screenshot-share-text strong { font-size: 13px; color: #c084fc; font-weight: 800; }
.screenshot-share-text span { font-size: 11.5px; color: var(--text-muted); }
.screenshot-share-arrow { font-size: 18px; color: #c084fc; font-weight: 900; }

/* --- Leaderboard --- */
.leaderboard-section {
  background: var(--bg-card); backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass); border-radius: var(--radius-lg);
  padding: 22px 20px; margin-bottom: 24px; box-shadow: var(--shadow-lg);
}
.leaderboard-refresh-tag {
  font-size: 10.5px; font-weight: 700; color: var(--color-online-green);
  background: rgba(0,210,106,0.1); border: 1px solid rgba(0,210,106,0.25);
  padding: 3px 9px; border-radius: var(--radius-full); display: flex; align-items: center; gap: 5px;
}
.leaderboard-refresh-tag::before { content: ''; width: 6px; height: 6px; background: var(--color-online-green); border-radius: 50%; animation: blink 1.5s infinite; }
.leaderboard-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.leaderboard-row { display: flex; align-items: center; gap: 12px; background: rgba(15,10,28,0.6); border: 1px solid var(--border-glass); border-radius: var(--radius-sm); padding: 10px 14px; }
.lb-rank { font-size: 18px; font-weight: 900; min-width: 28px; text-align: center; }
.lb-rank-1 { color: #fbbf24; }
.lb-rank-2 { color: #94a3b8; }
.lb-rank-3 { color: #cd7f32; }
.lb-flag { font-size: 20px; }
.lb-user { flex: 1; font-size: 13.5px; font-weight: 700; color: #fff; }
.lb-badge { font-size: 9.5px; font-weight: 800; padding: 2px 7px; border-radius: 4px; margin-right: 4px; }
.lb-tokens { font-size: 14px; font-weight: 900; color: #c084fc; display: flex; align-items: center; gap: 4px; }
.lb-tokens::after { content: 'tk'; font-size: 10px; font-weight: 600; color: var(--text-muted); }

/* --- Creator Profile Centered Card --- */
.profile-card-centered {
  background: rgba(18, 12, 33, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.profile-cover {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
  background: #000;
}
.profile-cover .cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.6);
  transform: scale(1.1);
}
.profile-content {
  padding: 0 16px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cam-creator-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-bottom: 12px;
  cursor: pointer;
  z-index: 2;
}
.cam-creator-avatar-wrap .avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(168, 85, 247, 0.8);
  background: #090611;
}
.live-badge-pill {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-live-red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  border: 2px solid #090611;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.profile-name-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}
.profile-name {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.flag-emoji { font-size: 18px; line-height: 1; }
.verified-svg {
  width: 20px !important;
  height: 20px !important;
  display: inline-block;
}
.profile-handle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.profile-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 210, 106, 0.1);
  border: 1px solid rgba(0, 210, 106, 0.3);
  color: var(--color-online-green);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.profile-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.profile-stats-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  color: #e2e8f0;
}
.profile-bio {
  font-size: 13px;
  color: var(--text-sub);
  max-width: 90%;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.profile-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.tag-pill {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* --- Interactive 18+ Room Preference Fit Test --- */
.interactive-fit-section {
  background: linear-gradient(135deg, rgba(23, 17, 38, 0.95), rgba(35, 22, 54, 0.95));
  border: 1.5px solid rgba(236, 72, 153, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(236, 72, 153, 0.15);
}
.fit-card-header {
  text-align: center;
  margin-bottom: 16px;
}
.fit-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.fit-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.fit-card-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.fit-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fit-option-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.fit-option-box:hover {
  background: rgba(168, 85, 247, 0.18);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.3);
}
.fit-option-box:active {
  transform: scale(0.98);
}
.fit-option-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.fit-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.fit-option-text strong {
  font-size: 13.5px;
  color: #fff;
  font-weight: 800;
}
.fit-option-text span {
  font-size: 11.5px;
  color: var(--text-muted);
}
.fit-option-tag {
  font-size: 9.5px;
  font-weight: 800;
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* --- Stories --- */
.stories-section { margin-bottom: 22px; }
.stories-carousel { display: flex; gap: 16px; overflow-x: auto; padding: 6px 4px 12px; scrollbar-width: none; }
.stories-carousel::-webkit-scrollbar { display: none; }
.story-bubble { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; flex-shrink: 0; transition: transform 0.2s ease; }
.story-bubble:hover { transform: translateY(-2px); }
.story-ring { width: 72px; height: 72px; border-radius: 50%; padding: 3px; background: linear-gradient(45deg,#7c3aed,#ec4899,#f59e0b); display: flex; align-items: center; justify-content: center; }
.story-ring-active { animation: pulse-ring 2s infinite; }
.story-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg-primary); }
.story-title { font-size: 11.5px; font-weight: 700; color: var(--text-sub); max-width: 80px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- Action Buttons --- */
.action-buttons-group {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  min-height: 52px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}
.cta-btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5), 0 0 30px rgba(236, 72, 153, 0.3);
}
.cta-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.7), 0 0 45px rgba(236, 72, 153, 0.5);
}
.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(168, 85, 247, 0.45);
  color: #fff;
  backdrop-filter: blur(10px);
}
.cta-btn-secondary:hover {
  background: rgba(168, 85, 247, 0.18);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}
.cta-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* --- Tiers --- */
.tip-tiers-section { background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 22px 20px; margin-bottom: 24px; box-shadow: var(--shadow-lg); }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tier-card { background: rgba(23,17,38,0.85); border: 1px solid var(--border-glass); border-radius: var(--radius-md); padding: 18px 14px; display: flex; flex-direction: column; justify-content: space-between; text-align: center; position: relative; cursor: pointer; transition: var(--transition-normal); }
.tier-card:hover { transform: translateY(-4px); border-color: rgba(168,85,247,0.5); box-shadow: 0 8px 24px rgba(168,85,247,0.25); }
.tier-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,#7c3aed,#ec4899); color: #fff; font-size: 9.5px; font-weight: 800; padding: 3px 8px; border-radius: var(--radius-full); white-space: nowrap; }
.tier-price-wrap { margin: 10px 0 8px; }
.tier-currency { font-size: 16px; font-weight: 700; color: var(--color-primary-light); vertical-align: top; }
.tier-amount { font-size: 32px; font-weight: 900; color: #fff; line-height: 1; }
.tier-title { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.tier-desc { font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-bottom: 14px; flex-grow: 1; }
.tier-action-btn { background: linear-gradient(135deg,#7c3aed 0%,#a855f7 100%); color: #fff; padding: 10px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 800; }
.tier-card:hover .tier-action-btn { background: linear-gradient(135deg,#be185d 0%,#ec4899 100%); }

/* --- Voice Note --- */
.voice-note-card { background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid var(--border-glass); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 22px; display: flex; align-items: center; gap: 16px; cursor: pointer; transition: var(--transition-normal); }
.voice-note-card:hover { border-color: rgba(168,85,247,0.4); transform: translateY(-2px); }
.voice-play-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 14px rgba(124,58,237,0.5); }
.voice-play-btn svg { width: 20px; height: 20px; fill: currentColor; margin-left: 2px; }
.voice-info-wrap { flex: 1; min-width: 0; }
.voice-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.voice-sender-name { font-size: 13px; font-weight: 700; color: #fff; }
.voice-duration { font-size: 12px; font-weight: 700; color: var(--color-primary-light); }
.voice-waveform { display: flex; align-items: center; gap: 3px; height: 22px; margin-bottom: 6px; }
.wave-bar { flex: 1; background: rgba(255,255,255,0.25); border-radius: 2px; height: 8px; transition: height 0.2s ease, background-color 0.2s ease; }
.voice-note-card.playing .wave-bar { background: var(--color-primary-light); animation: waveAnim 0.8s infinite ease-in-out alternate; }
@keyframes waveAnim { 0% { height: 4px; } 100% { height: 20px; } }
.voice-quote { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- Live Stream --- */
.live-stream-section { background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px; box-shadow: var(--shadow-lg); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.section-title-wrap { display: flex; align-items: center; gap: 10px; }
.section-title { font-size: 18px; font-weight: 800; color: #fff; }
.viewer-count-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,51,75,0.15); border: 1px solid rgba(255,51,75,0.35); color: #ff4d67; padding: 4px 10px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; }
.viewer-count-pill svg { width: 14px; height: 14px; fill: currentColor; }

.stream-goal-box { background: rgba(15,10,28,0.6); border: 1px solid var(--border-glass); border-radius: var(--radius-md); padding: 10px 14px; margin-bottom: 16px; }
.goal-info-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; font-size: 12.5px; font-weight: 700; }
.goal-title-text { color: #c084fc; display: flex; align-items: center; gap: 6px; }
.goal-tokens-text { color: #f8fafc; }
.goal-progress-track { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); overflow: hidden; }
.goal-progress-fill { height: 100%; background: linear-gradient(90deg,#7c3aed,#ec4899); border-radius: var(--radius-full); transition: width 0.6s ease; box-shadow: 0 0 10px rgba(168,85,247,0.6); }

.stream-player-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.player-container { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.05); }
.player-video { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter 0.8s ease, transform 0.8s ease; }
.video-blurred { filter: blur(25px) brightness(0.7); transform: scale(1.1); }
.player-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.2) 60%,rgba(0,0,0,0.5) 100%); display: flex; flex-direction: column; justify-content: space-between; padding: 14px; }
.player-top-bar { display: flex; justify-content: space-between; align-items: center; }
.stream-hd-tag { background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 4px; }
.player-center-cta { align-self: center; text-align: center; }
.play-pulse-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--color-primary-light); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; box-shadow: 0 0 24px rgba(168,85,247,0.8); animation: pulse-ring 1.8s infinite; }
.play-pulse-btn svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
.player-center-text { font-size: 13px; font-weight: 700; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.player-bottom-bar { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.player-title { font-size: 12px; font-weight: 600; color: #e2e8f0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60%; }
.player-reactions-bar { display: flex; gap: 6px; }
.reaction-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.25); font-size: 14px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; cursor: pointer; }
.reaction-btn:hover { transform: scale(1.2); background: rgba(168,85,247,0.4); }

/* --- Floating Reactions --- */
.floating-reactions-container { position: absolute; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.floating-reaction { position: absolute; bottom: 20%; right: 10%; font-size: 24px; animation: floatUp 2s cubic-bezier(0.25, 1, 0.5, 1) forwards; opacity: 1; pointer-events: none; }
@keyframes floatUp {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  20% { transform: translateY(-20px) scale(1.2); opacity: 1; }
  100% { transform: translateY(-150px) translateX(-20px) scale(1); opacity: 0; }
}

/* --- Tip Alerts --- */
.tip-alerts-container { position: absolute; top: 15%; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; pointer-events: none; z-index: 10; gap: 8px; }
.tip-alert { background: linear-gradient(90deg, rgba(251,191,36,0.9), rgba(217,119,6,0.9)); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 800; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(251,191,36,0.6); animation: tipSlideDown 3.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; border: 1px solid rgba(255,255,255,0.4); text-shadow: 0 1px 2px rgba(0,0,0,0.5); pointer-events: none; }
.tip-alert span { font-size: 16px; }
@keyframes tipSlideDown {
  0% { transform: translateY(-20px) scale(0.8); opacity: 0; }
  10% { transform: translateY(0) scale(1.1); opacity: 1; }
  15% { transform: translateY(0) scale(1); opacity: 1; }
  85% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-20px) scale(0.8); opacity: 0; }
}

.live-chat-card { background: rgba(15,10,28,0.6); border: 1px solid var(--border-glass); border-radius: var(--radius-md); display: flex; flex-direction: column; height: 100%; min-height: 210px; max-height: 240px; overflow: hidden; }
.chat-header { padding: 8px 12px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border-glass); font-size: 12px; font-weight: 700; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.chat-header svg { width: 14px; height: 14px; fill: var(--color-primary-light); }
.chat-messages-wrap { flex: 1; padding: 10px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; scroll-behavior: smooth; }
.chat-messages-wrap::-webkit-scrollbar { width: 4px; }
.chat-messages-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.chat-bubble { font-size: 12px; background: rgba(255,255,255,0.04); padding: 6px 10px; border-radius: var(--radius-sm); border-left: 3px solid var(--color-primary-light); animation: slideInChat 0.3s ease-out; }
@keyframes slideInChat { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-user-row { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.chat-badge { font-size: 9px; font-weight: 800; padding: 1px 4px; border-radius: 3px; }
.badge-vip { background: #9333ea; color: #fff; }
.badge-gold { background: #fbbf24; color: #000; }
.badge-fan { background: #7c3aed; color: #fff; }
.chat-username { font-weight: 700; color: #cbd5e1; }
.chat-text { color: #94a3b8; word-break: break-word; }
.chat-footer { padding: 8px 10px; border-top: 1px solid var(--border-glass); background: rgba(0,0,0,0.3); }
.chat-quick-pills { display: flex; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
.chat-quick-pill { padding: 4px 10px; border-radius: 12px; background: rgba(168,85,247,0.18); border: 1px solid rgba(168,85,247,0.35); font-size: 10.5px; font-weight: 700; color: #fff; cursor: pointer; transition: all 0.2s; }
.chat-quick-pill:hover { background: rgba(168,85,247,0.35); transform: translateY(-1px); }
.chat-input-fake { width: 100%; padding: 8px 12px; border-radius: var(--radius-full); background: rgba(255,255,255,0.06); border: 1px solid var(--border-glass); font-size: 11px; color: var(--text-muted); display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.chat-send-btn { color: var(--color-primary-light); font-weight: 700; }

/* --- Floating Reactions --- */
.floating-reactions-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 16px 0; }
.reaction-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid var(--border-glass); font-size: 20px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.reaction-btn:hover { transform: scale(1.15); background: rgba(255,255,255,0.15); }
.floating-particle { position: fixed; pointer-events: none; font-size: 28px; z-index: 9999; animation: floatUp 1.8s forwards ease-out; }
@keyframes floatUp { 0% { transform: translateY(0) scale(0.6); opacity: 1; } 50% { transform: translateY(-100px) scale(1.2) rotate(15deg); opacity: 0.9; } 100% { transform: translateY(-220px) scale(1.5) rotate(-15deg); opacity: 0; } }

/* --- Spin Launcher Pill --- */
.floating-spin-pill {
  position: fixed; bottom: 84px; right: 16px; z-index: 998;
  background: linear-gradient(135deg,#7c3aed 0%,#ec4899 100%);
  color: #fff; border-radius: var(--radius-full); padding: 10px 18px; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-glow-purple); cursor: pointer;
  animation: bouncePill 3s infinite ease-in-out;
}
@keyframes bouncePill { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.heatmap-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; width: 100vw; height: 100vh; opacity: 0; }

/* --- Wheel Modal --- */
.wheel-modal-box { width: min(440px,100%); background: #171126; border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 28px 20px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.wheel-container { position: relative; width: 280px; height: 280px; margin: 16px auto 20px; }
.wheel-canvas { width: 100%; height: 100%; border-radius: 50%; box-shadow: 0 0 24px rgba(168,85,247,0.4); }
.wheel-pointer { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent; border-top: 24px solid #fff; z-index: 10; }
.wheel-center-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; border-radius: 50%; background: #fff; color: #171126; font-weight: 900; font-size: 13px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.5); cursor: pointer; z-index: 5; border: 3px solid #171126; }
.wheel-win-box { display: none; background: rgba(0,210,106,0.15); border: 1px solid var(--color-online-green); border-radius: var(--radius-md); padding: 14px; margin-top: 14px; }
.wheel-win-text { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }

/* --- Media Vault --- */
.media-vault-section { background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 26px; box-shadow: var(--shadow-lg); }
.vault-filter-tabs { display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 4px; }
.vault-tab { padding: 8px 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 700; color: var(--text-muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border-glass); white-space: nowrap; }
.vault-tab.active { color: #fff; background: linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-light) 100%); border-color: var(--color-primary-light); box-shadow: 0 4px 14px rgba(124,58,237,0.4); }

.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.media-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-secondary); border: 1px solid var(--border-glass); cursor: pointer; transition: var(--transition-normal); }
.media-card:hover { transform: translateY(-4px); border-color: var(--border-focus); }
.media-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.media-card:hover .media-thumb { transform: scale(1.06); }
.media-locked-overlay { position: absolute; inset: 0; background: rgba(15,10,28,0.72); backdrop-filter: blur(6px); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; text-align: center; }
.lock-circle-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(168,85,247,0.2); border: 1px solid var(--color-primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.lock-circle-icon svg { width: 20px; height: 20px; fill: var(--color-primary-light); }
.unlock-cta-text { font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.5px; text-transform: uppercase; }
.card-badge { position: absolute; top: 10px; left: 10px; font-size: 9px; font-weight: 800; padding: 3px 7px; border-radius: 4px; z-index: 2; }
.card-badge-vip { background: var(--color-primary-light); color: #fff; }
.card-badge-free { background: #10b981; color: #fff; }
.card-duration { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.75); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; z-index: 2; }

/* --- Social Proof Toasts --- */
.toast-container { position: fixed; bottom: 80px; left: 16px; z-index: 999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.social-toast {
  background: rgba(23,17,38,0.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12); border-left: 3px solid var(--color-primary-light);
  padding: 10px 14px; border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 10px; max-width: 320px;
  pointer-events: auto; cursor: pointer; animation: toastSlideIn 0.4s ease-out forwards;
}
.social-toast.fade-out { opacity: 0; transform: translateY(12px); }
@keyframes toastSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.toast-icon { font-size: 20px; flex-shrink: 0; }
.toast-text { font-size: 11.5px; color: var(--text-sub); line-height: 1.4; }
.toast-user { font-weight: 700; color: #fff; }
.toast-time { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* --- Story Viewer --- */
.story-modal-box { width: min(440px,100%); height: min(720px,92vh); background: #000; border-radius: var(--radius-lg); overflow: hidden; position: relative; display: flex; flex-direction: column; padding: 0; }
.story-progress-bars { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; gap: 4px; z-index: 10; }
.story-progress-track { flex: 1; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; overflow: hidden; }
.story-progress-bar { height: 100%; width: 0%; background: #fff; }
.story-header-bar { position: absolute; top: 24px; left: 14px; right: 14px; display: flex; align-items: center; justify-content: space-between; z-index: 10; }
.story-user-info { display: flex; align-items: center; gap: 8px; }
.story-user-avatar { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #fff; }
.story-user-name { font-size: 13px; font-weight: 700; color: #fff; }
.story-media-wrap { width: 100%; height: 100%; position: relative; overflow: hidden; }
.story-media-img { width: 100%; height: 100%; object-fit: cover; }
.story-caption-wrap { position: absolute; bottom: 80px; left: 16px; right: 16px; background: rgba(0,0,0,0.65); backdrop-filter: blur(10px); padding: 12px 16px; border-radius: var(--radius-md); font-size: 13px; color: #fff; z-index: 10; text-align: center; }
.story-swipe-cta { position: absolute; bottom: 16px; left: 16px; right: 16px; background: linear-gradient(135deg,#7c3aed 0%,#a855f7 100%); color: #fff; padding: 13px; border-radius: var(--radius-md); font-size: 14px; font-weight: 800; text-align: center; z-index: 10; box-shadow: var(--shadow-glow-purple); animation: pulse-glow 2s infinite ease-in-out; }

/* --- Video Call Modal --- */
.call-modal-box { width: min(380px,100%); background: #171126; border: 1px solid var(--border-glass); border-radius: 28px; padding: 34px 20px; text-align: center; box-shadow: var(--shadow-lg); position: relative; }
.call-avatar-wrap { position: relative; width: 110px; height: 110px; margin: 0 auto 18px; }
.call-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid #23193a; position: relative; z-index: 1; }
.call-pulse-ring { position: absolute; inset: -10px; border-radius: 50%; background: rgba(0,210,106,0.4); animation: callPulse 1.4s infinite cubic-bezier(0.25,1,0.5,1); }
@keyframes callPulse { 0% { transform: scale(0.95); opacity: 0.8; } 100% { transform: scale(1.25); opacity: 0; } }
.call-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.call-subtitle { font-size: 13px; color: var(--color-online-green); font-weight: 600; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.call-actions-grid { display: flex; justify-content: center; gap: 36px; }
.call-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: #cbd5e1; }
.call-btn-circle { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.call-btn-accept { background: var(--color-online-green); box-shadow: var(--shadow-glow-green); animation: pulse-ring 1.8s infinite; }
.call-btn-accept svg, .call-btn-decline svg { width: 28px; height: 28px; fill: #fff; }
.call-btn-decline { background: #ef4444; }

/* --- Modals Shared --- */
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(6,4,12,0.86); backdrop-filter: blur(12px); z-index: 99999; align-items: center; justify-content: center; padding: 16px; opacity: 0; transition: opacity var(--transition-normal); }
.modal-backdrop.open { display: flex; opacity: 1; }
.modal-box { position: relative; width: min(520px,100%); background: var(--bg-secondary); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-lg); text-align: center; transform: scale(0.95); transition: transform var(--transition-normal); }
.modal-backdrop.open .modal-box { transform: scale(1); }
.modal-close-btn { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 20px; z-index: 12; }
.age-gate-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(168,85,247,0.15); border: 2px solid var(--color-primary-light); color: var(--color-primary-light); font-size: 24px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.modal-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.modal-desc { font-size: 14px; line-height: 1.6; color: var(--text-sub); margin-bottom: 22px; }
.modal-action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-btn-confirm { background: linear-gradient(135deg,#7c3aed 0%,#a855f7 100%); color: #fff; padding: 13px; border-radius: var(--radius-md); font-weight: 700; font-size: 15px; box-shadow: var(--shadow-glow-purple); }
.modal-btn-cancel { background: rgba(255,255,255,0.08); color: var(--text-muted); padding: 13px; border-radius: var(--radius-md); font-weight: 600; font-size: 15px; }

.otr-modal-box { width: min(560px,100%); height: 650px; max-height: 90vh; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.otr-iframe-wrap { width: 100%; height: 100%; position: relative; }
.otr-iframe { width: 100%; height: 100%; border: none; }
.otr-loader { position: absolute; inset: 0; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; z-index: 2; }
.spinner { width: 44px; height: 44px; border: 4px solid rgba(168,85,247,0.2); border-top-color: var(--color-primary-light); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.lightbox-modal-box { background: transparent; border: none; box-shadow: none; padding: 0; max-width: 600px; width: 100%; }
.lightbox-img { width: 100%; max-height: 70vh; object-fit: contain; border-radius: var(--radius-md); margin-bottom: 14px; box-shadow: var(--shadow-lg); }
.lightbox-cta { display: block; width: 100%; padding: 14px; border-radius: var(--radius-md); background: linear-gradient(135deg,#7c3aed 0%,#a855f7 100%); color: #fff; font-weight: 800; font-size: 16px; box-shadow: var(--shadow-glow-purple); }

.dmca-box { text-align: left; max-width: 580px; }
.dmca-box h2 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.dmca-box p { font-size: 13.5px; line-height: 1.65; color: var(--text-sub); margin-bottom: 12px; }
.dmca-email-box { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.3); padding: 12px 16px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.dmca-email-address { font-weight: 700; color: #c084fc; font-size: 15px; }

/* --- Footer & Sticky Bar --- */
.page-footer { text-align: center; padding: 24px 16px; color: var(--text-muted); font-size: 12px; }
.footer-compliance-text { margin-bottom: 12px; line-height: 1.6; }
.dmca-trigger-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass); color: var(--text-sub); padding: 7px 16px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; }
.dmca-trigger-btn svg { width: 14px; height: 14px; fill: currentColor; }

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 10, 28, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(168, 85, 247, 0.25);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
}
.sticky-cta-btn {
  width: min(600px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  min-height: 48px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  box-shadow: var(--shadow-glow-purple);
  animation: pulse-glow 2s infinite ease-in-out;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.sticky-cta-btn:active {
  transform: scale(0.97);
  filter: brightness(1.15);
}
.sticky-cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   MOBILE & RESPONSIVE DESIGN SYSTEM
   ========================================================================== */
@media (max-width: 768px) {
  .page-container {
    padding: calc(44px + env(safe-area-inset-top, 0px)) 12px calc(100px + env(safe-area-inset-bottom, 0px));
  }
  .profile-cover { height: 130px; }
  .profile-body { padding: 0 14px 20px; margin-top: -55px; }
  .avatar-wrapper { width: 110px; height: 110px; }
  .profile-name { font-size: clamp(22px, 6vw, 26px); }
  
  .exclusive-show-banner, .countdown-urgency-bar, #roomFillingBar, #tokenExpiryBar, .scarcity-ticker {
    padding: 8px 12px;
    font-size: 12.5px;
    gap: 6px;
    border-radius: var(--radius-sm);
  }
  
  .action-buttons-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cta-btn {
    min-height: 48px;
    padding: 14px 18px;
    font-size: 15px;
  }
  .cta-btn:active {
    transform: scale(0.97);
  }

  .tiers-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stream-player-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .live-chat-card {
    min-height: 170px;
    max-height: 190px;
  }
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .toast-container {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    right: 10px;
    gap: 6px;
  }
  .social-toast {
    max-width: 100%;
    padding: 8px 12px;
  }
  .floating-spin-pill {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    right: 10px;
    padding: 8px 14px;
    font-size: 12px;
    min-height: 38px;
  }
  #typingBubble {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    max-width: 260px;
  }
  .dm-notification-badge {
    max-width: 230px;
    top: calc(42px + env(safe-area-inset-top, 0px));
    right: 10px;
  }
  .leaderboard-section, .tip-tiers-section, .media-vault-section, .live-stream-section {
    padding: 16px 14px;
  }
  
  .modal-box {
    padding: 22px 16px;
    border-radius: var(--radius-md);
    max-height: 90vh;
    overflow-y: auto;
  }
  .funnel-modal-box {
    padding: 20px 14px;
    width: 95%;
  }
  .funnel-option-card {
    padding: 12px 14px;
    gap: 10px;
  }
  .funnel-question {
    font-size: 16px;
  }
  .wheel-modal-box {
    padding: 20px 14px;
  }
  .wheel-container {
    width: min(250px, 72vw);
    height: min(250px, 72vw);
  }
}

@media (max-width: 480px) {
  .profile-stats-bar {
    gap: 6px;
  }
  .stat-pill {
    padding: 5px 10px;
    font-size: 11px;
    flex: 1 1 calc(33.333% - 6px);
    justify-content: center;
  }
  .section-title {
    font-size: 15px;
  }
  .trust-seals-row {
    gap: 8px;
    padding: 6px 10px;
  }
  .trust-seal-item {
    font-size: 10.5px;
    gap: 4px;
  }
  .viral-share-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .viral-share-btn {
    padding: 8px 10px;
    font-size: 11.5px;
  }
  .faq-question {
    font-size: 12.5px;
    padding: 12px 14px;
  }
}

@media (max-width: 360px) {
  .page-container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .profile-name {
    font-size: 20px;
  }
  .avatar-wrapper {
    width: 95px;
    height: 95px;
  }
  .stat-pill {
    font-size: 10px;
    padding: 4px 6px;
  }
  .cta-btn {
    font-size: 14px;
    padding: 12px 14px;
  }
  .sticky-cta-btn {
    font-size: 14px;
    padding: 12px 14px;
  }
}

/* --- Viral Social Share Bar & PWA Card --- */
.viral-share-container {
  margin: 16px 0;
  padding: 16px;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}
.viral-share-header {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--color-primary-light);
  margin-bottom: 12px;
  text-align: center;
}
.viral-share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}
.viral-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.viral-share-btn:hover { transform: translateY(-2px); opacity: 0.95; }
.share-wa { background: #25D366; }
.share-tg { background: #0088cc; }
.share-tw { background: #1DA1F2; }
.share-rd { background: #FF4500; }
.share-native { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); }

.pwa-install-card {
  margin: 16px 0;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(168,85,247,0.12) 100%);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pwa-card-left { display: flex; align-items: center; gap: 12px; }
.pwa-card-icon { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; border: 2px solid var(--color-primary-light); }
.pwa-card-text { display: flex; flex-direction: column; gap: 2px; }
.pwa-card-text strong { font-size: 14px; color: #fff; }
.pwa-card-text span { font-size: 12px; color: var(--text-sub); }
.pwa-card-actions { display: flex; align-items: center; gap: 8px; }
.pwa-install-btn { padding: 8px 16px; border-radius: var(--radius-full); background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); color: #fff; font-weight: 800; font-size: 13px; border: none; cursor: pointer; white-space: nowrap; }
.pwa-dismiss-btn { background: none; border: none; color: var(--text-muted); font-size: 20px; cursor: pointer; padding: 4px; }

/* --- Client Live Theme Switcher Bar --- */
.theme-switcher-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 6, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
  padding: 8px 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.theme-switcher-label { font-size: 12.5px; font-weight: 800; color: #fff; white-space: nowrap; }
.theme-btn-group { display: flex; align-items: center; gap: 6px; }
.theme-pill {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  color: var(--text-sub);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.2s ease;
}
.theme-pill.active, .theme-pill:hover {
  background: rgba(168, 85, 247, 0.25);
  color: #fff;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 10px rgba(168,85,247,0.4);
}

/* --- Theme Color Palettes --- */
[data-theme="pink"] {
  --color-primary: #be185d;
  --color-primary-light: #ec4899;
  --shadow-glow-purple: 0 0 24px rgba(236,72,153,0.5);
}
[data-theme="gold"] {
  --color-primary: #ca8a04;
  --color-primary-light: #eab308;
  --shadow-glow-purple: 0 0 24px rgba(234,179,8,0.5);
}
[data-theme="emerald"] {
  --color-primary: #059669;
  --color-primary-light: #10b981;
  --shadow-glow-purple: 0 0 24px rgba(16,185,129,0.5);
}

/* --- Shimmer CTA Button Animation --- */
.cta-btn-primary, .sticky-cta-btn, .modal-btn-confirm {
  position: relative;
  overflow: hidden;
}
.cta-btn-primary::after, .sticky-cta-btn::after, .modal-btn-confirm::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: rotate(30deg);
  animation: button-shimmer 3.5s infinite ease-in-out;
  pointer-events: none;
}
@keyframes button-shimmer {
  0% { transform: translateX(-100%) rotate(30deg); }
  30%, 100% { transform: translateX(100%) rotate(30deg); }
}

/* --- Floating Particle Emoji Stream --- */
.floating-emoji-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  font-size: 28px;
  user-select: none;
  animation: float-emoji-anim 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes float-emoji-anim {
  0% { opacity: 1; transform: translateY(0) scale(0.6) rotate(0deg); }
  50% { opacity: 0.9; transform: translateY(-120px) scale(1.3) rotate(15deg); }
  100% { opacity: 0; transform: translateY(-240px) scale(1) rotate(-20deg); }
}

/* --- Custom VIP Tip Calculator Modal --- */
.calc-modal-box { text-align: left; max-width: 480px; }
.calc-trigger-btn {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(168,85,247,0.18);
  border: 1px solid rgba(168,85,247,0.4);
  color: var(--color-primary-light);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.calc-trigger-btn:hover { transform: scale(1.04); }
.calc-input-container { margin: 18px 0; background: rgba(255,255,255,0.03); padding: 14px; border-radius: var(--radius-md); border: 1px solid var(--border-glass); }
.calc-label { font-size: 13px; font-weight: 700; color: var(--text-sub); display: block; margin-bottom: 10px; }
.calc-slider { width: 100%; height: 6px; border-radius: 4px; background: rgba(168,85,247,0.3); accent-color: var(--color-primary-light); cursor: pointer; }
.calc-token-badge { margin-top: 10px; font-size: 15px; font-weight: 800; color: #fff; text-align: center; }
.calc-perks-box { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.3); border-radius: var(--radius-md); padding: 14px; margin-bottom: 18px; }
.calc-perks-title { font-size: 13px; font-weight: 800; color: var(--color-primary-light); margin-bottom: 10px; }
.calc-perks-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.calc-perks-list li { font-size: 13px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   POWER UPGRADES — All 12 Features
   ========================================================================== */

/* --- 4. Neon Pulse Glow on ALL CTA Buttons (Heartbeat Animation) --- */
@keyframes neonHeartbeat {
  0%,100% { box-shadow: 0 0 16px rgba(168,85,247,0.6), 0 0 32px rgba(168,85,247,0.3), 0 4px 16px rgba(0,0,0,0.4); }
  30% { box-shadow: 0 0 28px rgba(168,85,247,0.9), 0 0 56px rgba(236,72,153,0.5), 0 4px 16px rgba(0,0,0,0.4); }
  60% { box-shadow: 0 0 20px rgba(168,85,247,0.7), 0 0 40px rgba(168,85,247,0.35), 0 4px 16px rgba(0,0,0,0.4); }
}
.cta-btn-primary, .sticky-cta-btn, .modal-btn-confirm {
  animation: neonHeartbeat 2s infinite ease-in-out !important;
}
.cta-btn-primary:hover, .sticky-cta-btn:hover, .modal-btn-confirm:hover {
  animation: none !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 0 40px rgba(168,85,247,1), 0 0 80px rgba(236,72,153,0.6) !important;
}

/* --- 5. Particle Galaxy Background Canvas --- */
#galaxyCanvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100vw; height: 100vh;
}

/* --- 1. Blurred Vault Unlock Gate --- */
.media-locked-overlay {
  background: rgba(10,6,20,0.55) !important;
  backdrop-filter: blur(14px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.4) !important;
}
.media-thumb.blur-thumb {
  filter: blur(16px) brightness(0.7) !important;
  transform: scale(1.08) !important;
}
.vault-unlock-cta {
  margin-top: 10px;
  background: linear-gradient(135deg,#7c3aed,#ec4899);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: neonHeartbeat 1.8s infinite;
  white-space: nowrap;
}
.vault-unlock-members {
  font-size: 10px;
  color: #d8b4fe;
  font-weight: 700;
  margin-top: 6px;
  opacity: 0.9;
}

/* --- 6. Room Filling Anxiety Counter Bar --- */
#roomFillingBar {
  background: linear-gradient(90deg, rgba(255,51,75,0.18) 0%, rgba(124,58,237,0.18) 100%);
  border: 1px solid rgba(255,51,75,0.4);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  animation: pulse-glow 1.8s infinite ease-in-out;
}
#roomFillingBar .rfb-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--color-live-red);
  animation: blink 1s infinite;
  flex-shrink: 0;
}
#roomFillingBar .rfb-spots {
  color: #ff4d67;
  font-size: 16px;
  font-weight: 900;
}
#roomFillingBar .rfb-cta {
  margin-left: 8px;
  background: var(--color-live-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s;
}
#roomFillingBar .rfb-cta:hover { background: #e0001b; transform: scale(1.04); }

/* --- 3. VIP Token Expiry Countdown --- */
#tokenExpiryBar {
  background: linear-gradient(90deg, rgba(251,191,36,0.16) 0%, rgba(124,58,237,0.16) 100%);
  border: 1px solid rgba(251,191,36,0.5);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-wrap: wrap;
  animation: pulse-glow-gold 2s infinite;
}
@keyframes pulse-glow-gold {
  0%,100% { box-shadow: 0 0 12px rgba(251,191,36,0.3); }
  50% { box-shadow: 0 0 28px rgba(251,191,36,0.6); }
}
#tokenExpiryBar .teb-label { color: var(--color-accent-gold); }
#tokenExpiryBar .teb-timer {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(251,191,36,0.5);
  color: #fbbf24;
  font-family: monospace;
  font-size: 17px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 6px;
  min-width: 64px;
  text-align: center;
}
#tokenExpiryBar .teb-cta {
  background: linear-gradient(135deg,#ca8a04,#fbbf24);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

/* --- 2. Savz602 Typing Chat Bubble --- */
#typingBubble {
  position: fixed;
  bottom: 88px;
  left: 16px;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: slideInLeft 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  cursor: pointer;
  max-width: 280px;
}
@keyframes slideInLeft { from { transform: translateX(-120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
#typingBubble.hide-bubble { animation: slideOutLeft 0.4s ease-in forwards; }
@keyframes slideOutLeft { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-120%); opacity: 0; } }
.tb-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-primary-light); flex-shrink: 0; }
.tb-box {
  background: rgba(23,17,38,0.97);
  border: 1px solid rgba(168,85,247,0.45);
  border-radius: 18px 18px 18px 4px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 16px rgba(168,85,247,0.3);
  max-width: 230px;
}
.tb-name { font-size: 10.5px; font-weight: 800; color: var(--color-primary-light); margin-bottom: 5px; }
.tb-dots { display: flex; gap: 5px; align-items: center; height: 18px; }
.tb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary-light); animation: typingDot 1.4s infinite ease-in-out; }
.tb-dot:nth-child(2) { animation-delay: 0.2s; }
.tb-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }
.tb-message { font-size: 13px; color: #e2e8f0; line-height: 1.5; display: none; }
.tb-close {
  position: absolute; top: -8px; right: -8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff;
  font-size: 12px; display: flex; align-items: center;
  justify-content: center; border: 1px solid rgba(255,255,255,0.2);
}

/* --- 7. Click Ripple Effect --- */
.click-ripple {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  width: 60px; height: 60px;
  margin-left: -30px; margin-top: -30px;
  background: radial-gradient(circle, rgba(168,85,247,0.6) 0%, transparent 70%);
  animation: rippleExpand 0.6s ease-out forwards;
}
@keyframes rippleExpand {
  0% { transform: scale(0.2); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* --- 9. Magnetic CTA — CSS part (JS handles the movement) --- */
.cta-btn-primary, .sticky-cta-btn {
  will-change: transform;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}

/* --- 11. Video Intro Splash Screen --- */
#videoSplash {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#splashVideo {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.8;
}
.splash-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  text-align: center;
  gap: 18px;
}
.splash-live-badge {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-live-red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: neonHeartbeat 1.5s infinite;
}
.splash-live-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: blink 1s infinite; }
.splash-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.splash-title span { color: #d8b4fe; }
.splash-cta-btn {
  background: linear-gradient(135deg,#7c3aed 0%,#a855f7 50%,#ec4899 100%);
  color: #fff;
  font-size: clamp(15px, 4.5vw, 18px);
  font-weight: 900;
  width: min(360px, 88vw);
  padding: 16px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(168,85,247,0.8);
  animation: neonHeartbeat 1.8s infinite;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.splash-skip {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.splash-skip span { color: #fbbf24; font-weight: 700; }
#videoSplash.splash-exit {
  animation: splashFadeOut 0.6s ease-in forwards;
}
@keyframes splashFadeOut { from { opacity: 1; } to { opacity: 0; pointer-events: none; } }

/* --- 10. Referral Link Card --- */
#referralCard {
  background: var(--bg-card);
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(168,85,247,0.15);
}
.referral-header {
  font-size: 14px;
  font-weight: 800;
  color: #c084fc;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.referral-link-row {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
#referralLinkText {
  flex: 1;
  font-size: 12px;
  color: var(--text-sub);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: monospace;
}
.referral-copy-btn {
  background: linear-gradient(135deg,#7c3aed,#a855f7);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s;
}
.referral-copy-btn:hover { opacity: 0.85; }
.referral-friends-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-online-green);
}
.referral-friends-counter span { font-size: 18px; font-weight: 900; }

/* --- 12. Styled PWA Bottom Sheet --- */
#pwaBottomSheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9997;
  background: rgba(23,17,38,0.98);
  border-top: 1px solid rgba(168,85,247,0.4);
  padding: 20px 20px 32px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 -8px 32px rgba(124,58,237,0.25);
}
#pwaBottomSheet.pwa-sheet-open { transform: translateY(0); }
.pwa-sheet-handle { width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.2); margin: 0 auto 18px; }
.pwa-sheet-inner { display: flex; gap: 16px; align-items: center; }
.pwa-sheet-avatar { width: 56px; height: 56px; border-radius: 14px; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(168,85,247,0.5); }
.pwa-sheet-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pwa-sheet-text { flex: 1; }
.pwa-sheet-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.pwa-sheet-sub { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.pwa-sheet-sub strong { color: var(--color-live-red); }
.pwa-sheet-actions { display: flex; gap: 10px; margin-top: 16px; }
.pwa-sheet-install-btn {
  flex: 1;
  background: linear-gradient(135deg,#7c3aed,#a855f7);
  color: #fff;
  padding: 13px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  animation: neonHeartbeat 2s infinite;
}
.pwa-sheet-dismiss-btn {
  padding: 13px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* ==========================================================================
   ADVANCED MONETIZATION & CRO COMPONENTS
   ========================================================================== */

/* --- 3-Step Micro-Commitment Interactive Funnel Modal --- */
.funnel-modal-box {
  max-width: 480px;
  width: 95%;
  background: linear-gradient(180deg, #1b132e 0%, #120b22 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 30px rgba(124, 58, 237, 0.3);
  padding: 24px 20px;
}

.funnel-progress-wrap {
  margin-bottom: 20px;
}
.funnel-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.funnel-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.funnel-progress-fill {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, #ec4899, #a855f7);
  border-radius: var(--radius-full);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

.funnel-step {
  display: none;
  animation: fadeIn 0.3s ease-out;
}
.funnel-step.active {
  display: block;
}

.funnel-question {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 6px;
  text-align: center;
}
.funnel-subtext {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.funnel-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.funnel-option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: left;
}
.funnel-option-card:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.2);
}
.funnel-option-card.selected {
  background: rgba(168, 85, 247, 0.2);
  border-color: var(--color-primary-light);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
}

.funnel-option-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.funnel-option-body {
  flex: 1;
}
.funnel-option-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.funnel-option-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #fff;
  letter-spacing: 0.5px;
}
.funnel-option-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.3;
}
.funnel-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.funnel-option-card:hover .funnel-radio-circle,
.funnel-option-card.selected .funnel-radio-circle {
  border-color: var(--color-primary-light);
  background: var(--color-primary);
}
.funnel-radio-circle::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: none;
}
.funnel-option-card.selected .funnel-radio-circle::after {
  display: block;
}

/* Step 3: Success VIP Pass Box */
.funnel-vip-pass-card {
  background: radial-gradient(circle at top, rgba(168, 85, 247, 0.25) 0%, rgba(20, 14, 33, 0.95) 100%);
  border: 1.5px solid rgba(251, 191, 36, 0.5);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.2);
}
.funnel-vip-pass-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.funnel-vip-pass-title {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.funnel-vip-pass-desc {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.45;
  margin-bottom: 12px;
}
.funnel-vip-pass-tokens {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.35);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  border: 1px solid rgba(251, 191, 36, 0.2);
}
.funnel-token-count {
  font-size: 24px;
  font-weight: 900;
  color: #fbbf24;
}
.funnel-token-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}

/* --- Native In-Page Push (IPP) Banner Card --- */
.inpage-push-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(23, 17, 38, 0.95), rgba(35, 25, 58, 0.95));
  border: 1px solid rgba(236, 72, 153, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 20px 0;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.inpage-push-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent-pink);
  box-shadow: 0 6px 24px rgba(236, 72, 153, 0.25);
}
.ipp-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 2px solid var(--color-accent-pink);
}
.ipp-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ipp-live-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--color-live-red);
  border: 2px solid #0f0a1c;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
.ipp-content {
  flex: 1;
}
.ipp-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.ipp-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}
.ipp-sponsored-tag {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255,255,255,0.08);
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
.ipp-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.35;
}
.ipp-cta-btn {
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(236, 72, 153, 0.4);
}

/* --- Live Cam Stream Equalizer Waveform & Sound Button --- */
.audio-unmute-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(168, 85, 247, 0.6);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.audio-unmute-overlay-btn:hover {
  background: rgba(124, 58, 237, 0.85);
  border-color: #fff;
  transform: scale(1.05);
}
.audio-eq-waves {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 14px;
}
.audio-eq-bar {
  width: 3px;
  background: #a855f7;
  border-radius: 2px;
  animation: eqPulse 0.8s ease-in-out infinite alternate;
}
.audio-eq-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.audio-eq-bar:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.audio-eq-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.audio-eq-bar:nth-child(4) { height: 100%; animation-delay: 0.4s; }

@keyframes eqPulse {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* Soft Push Opt-in Banner */
.push-soft-prompt {
  position: fixed;
  top: 48px;
  right: 16px;
  z-index: 9999;
  max-width: 340px;
  background: rgba(23, 17, 38, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.3s ease-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.push-soft-inner {
  display: flex;
  gap: 12px;
  align-items: center;
}
.push-soft-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--color-primary-light);
}
.push-soft-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.push-soft-text {
  flex: 1;
}
.push-soft-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.push-soft-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}
.push-soft-actions {
  display: flex;
  gap: 8px;
}
.push-soft-allow {
  flex: 1;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.push-soft-deny {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Trust & Security Badges Row (Trust Markers Framework)
   ========================================================================== */
.trust-seals-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 16px;
  padding: 8px 12px;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius-md);
}
.trust-seal-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2px;
}
.trust-seal-icon {
  font-size: 13px;
  filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.5));
}

/* ==========================================================================
   Interactive FAQ Accordion Section (Leadpages + Growform Objection Handling)
   ========================================================================== */
.faq-accordion-section {
  margin-top: 24px;
  margin-bottom: 24px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.faq-item {
  background: rgba(23, 17, 38, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.faq-item.active {
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.18);
  background: rgba(23, 17, 38, 0.95);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--color-primary-light);
}
.faq-icon {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ec4899;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 16px;
}
.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 16px 16px 16px;
}
.faq-answer p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0 0 10px;
}
.faq-cta-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(168, 85, 247, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.faq-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(168, 85, 247, 0.5);
}

/* --- Realistic DM Notification Toast --- */
.dm-notification-toast {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 380px;
  background: rgba(28, 28, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.1);
  z-index: 99999;
  cursor: pointer;
  transition: top 0.6s cubic-bezier(0.25, 1.2, 0.5, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dm-notification-toast.show {
  top: 20px;
}
.dm-toast-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.dm-toast-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.dm-toast-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #34c759;
  border-radius: 50%;
  border: 2px solid #1c1c1e;
}
.dm-toast-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dm-toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dm-toast-name {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.dm-toast-time {
  color: rgba(235, 235, 245, 0.6);
  font-size: 12px;
}
.dm-toast-text {
  color: rgba(235, 235, 245, 0.85);
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* --- Incoming Call Modal --- */
.video-call-box {
  text-align: center;
  background: rgba(28, 28, 30, 0.95);
  border: 1px solid rgba(168, 85, 247, 0.4);
}
.call-avatar-pulse {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  position: relative;
}
.call-avatar-pulse img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 3px solid #7c3aed;
}
.call-avatar-pulse::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.3);
  animation: pulse-ring 1.5s infinite;
  z-index: 1;
}
.call-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.call-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.call-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.call-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.call-btn:hover {
  transform: scale(1.1);
}
.call-btn .call-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.btn-accept {
  background: #34c759;
  box-shadow: 0 4px 15px rgba(52, 199, 89, 0.4);
}
.btn-decline {
  background: #ff3b30;
  box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
}
/* --- Authentic iOS Incoming Call Modal --- */
.ios-call-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 20px 100px;
  color: white;
  box-sizing: border-box;
}
.ios-call-header {
  text-align: center;
}
.ios-call-name {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 15px;
}
.ios-call-type {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.ios-call-actions {
  display: flex;
  justify-content: space-around;
  padding: 0 40px;
}
.call-action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.call-action-group span {
  font-size: 15px;
  font-weight: 400;
  color: white;
}
.ios-call-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: call-bounce 2s infinite ease-in-out;
}
.ios-decline {
  background: #ff3b30;
}
.ios-accept {
  background: #34c759;
  animation: call-bounce-fast 1s infinite ease-in-out;
}
.ios-call-btn svg {
  width: 36px;
  height: 36px;
}
@keyframes call-bounce-fast {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 0 25px rgba(52, 199, 89, 0.7); }
}
