/* ==========================================================================
   Spicy Girl - Premium Live Stream Landing Page Styles
   Mobile-First Architecture (Optimized for iPhone 390x844 & Responsive Desktop)
   ========================================================================== */

:root {
  /* Colors */
  --bg-primary: #07020c;
  --bg-secondary: #12061e;
  --bg-card: rgba(22, 9, 36, 0.88);
  --bg-card-border: rgba(255, 0, 120, 0.4);
  --bg-badge: rgba(20, 8, 32, 0.75);
  
  --primary-pink: #ff007f;
  --primary-magenta: #ff1493;
  --primary-deep: #d80064;
  --neon-glow: rgba(255, 0, 128, 0.65);
  --neon-glow-soft: rgba(255, 0, 128, 0.25);
  --neon-glow-intense: rgba(255, 0, 128, 0.9);

  --accent-purple: #2b1145;
  --accent-purple-light: rgba(180, 140, 220, 0.35);

  --text-white: #ffffff;
  --text-muted: #b8adc5;
  --text-dim: #8b7d9c;
  --star-yellow: #ffc800;
  --online-green: #00e676;
  --verified-blue: #1d9bf0;

  /* Typography */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Rajdhani', monospace, sans-serif;

  /* Spacing & Sizes */
  --card-radius: 30px;
  --btn-radius: 35px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Background Light */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(100px);
}

.glow-top {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.22) 0%, rgba(120, 0, 255, 0.12) 60%, transparent 80%);
}

.glow-bottom {
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.18) 0%, rgba(70, 0, 140, 0.15) 60%, transparent 80%);
}

/* Page Container */
.page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

/* ==========================================================================
   1. TOP BANNER
   ========================================================================== */
.top-banner {
  width: 100%;
  height: 98px;
  background: linear-gradient(90deg, #ff007f 0%, #ff1493 50%, #e00078 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(255, 0, 128, 0.45);
  position: relative;
  overflow: hidden;
}

.top-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  animation: bannerShimmer 4.5s infinite linear;
}

@keyframes bannerShimmer {
  0% { left: -100%; }
  40%, 100% { left: 160%; }
}

.top-banner-text {
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 8.5vw, 42px);
  letter-spacing: -0.5px;
  text-align: center;
  text-transform: none;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 0, 128, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1;
  padding: 0 15px;
}

/* ==========================================================================
   CONTENT WRAPPER (Mobile: 40px left/right margin -> calc(100% - 80px))
   ========================================================================== */
.content-wrapper {
  width: calc(100% - 80px);
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   2. PROFILE CARD
   ========================================================================== */
.profile-card {
  margin-top: 22px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--card-radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px var(--neon-glow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-card:hover {
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(255, 0, 128, 0.35);
}

/* Avatar on left */
.avatar-container {
  flex-shrink: 0;
}

.avatar-ring {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #ff007f 0%, #ff1493 50%, #e00078 100%);
  box-shadow: 
    0 0 15px rgba(255, 0, 128, 0.75),
    inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background-color: #2b1145;
}

/* Bright green online indicator */
.online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background-color: var(--online-green);
  border: 3px solid #140722;
  border-radius: 50%;
  box-shadow: 0 0 8px #00e676;
  animation: onlinePulse 2.2s infinite ease-in-out;
}

@keyframes onlinePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 6px #00e676;
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 14px #00ff88, 0 0 22px rgba(0, 255, 136, 0.5);
  }
}

/* Profile details on right */
.profile-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profile-name-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verified-svg {
  width: 19px;
  height: 19px;
  filter: drop-shadow(0 0 4px rgba(29, 155, 240, 0.5));
}

.profile-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}

.rating-stars {
  color: var(--star-yellow);
  font-size: 15px;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255, 200, 0, 0.6);
  line-height: 1;
}

.rating-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.profile-stats {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.stat-dot {
  color: var(--text-dim);
  font-size: 12px;
}

/* ==========================================================================
   3. LIVE NOW ROW
   ========================================================================== */
.live-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
}

.live-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot-glow {
  width: 11px;
  height: 11px;
  background: radial-gradient(circle, #ff0055 30%, #ff007f 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px #ff007f;
  animation: liveDotPulse 1.4s infinite alternate ease-in-out;
}

@keyframes liveDotPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 6px #ff0055;
    opacity: 0.85;
  }
  100% {
    transform: scale(1.3);
    box-shadow: 0 0 14px #ff007f, 0 0 20px rgba(255, 0, 127, 0.8);
    opacity: 1;
  }
}

.live-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-pink);
  text-shadow: 
    0 0 8px rgba(255, 0, 127, 0.8),
    0 0 18px rgba(255, 0, 127, 0.4);
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-badge);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--accent-purple-light);
  border-radius: 12px;
  padding: 6px 12px;
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.clock-icon {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.countdown-digits {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-white);
}

/* ==========================================================================
   4. MAIN LIVE VIDEO PREVIEW
   ========================================================================== */
.video-preview-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 440px;
  border-radius: var(--card-radius);
  border: 1.5px solid rgba(255, 0, 128, 0.55);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 128, 0.25);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  user-select: none;
  background-color: #100619;
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.video-preview-card:hover {
  border-color: rgba(255, 0, 128, 0.85);
  box-shadow: 
    0 18px 45px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 0, 128, 0.45);
}

.video-preview-card:active {
  transform: scale(0.985);
}

/* Background image & overlays */
.video-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-preview-card:hover .video-preview-img {
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 3, 18, 0.55) 0%,
    rgba(10, 3, 18, 0.2) 30%,
    rgba(10, 3, 18, 0.35) 60%,
    rgba(10, 3, 18, 0.85) 100%
  );
  pointer-events: none;
}

/* Subtle live scanline vibe */
.live-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
}

/* Center Play Button */
.center-play-wrapper {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  position: relative;
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-pulse-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 128, 0.65);
  pointer-events: none;
}

.ring-1 {
  animation: playPulse 2s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
}

.ring-2 {
  animation: playPulse 2s cubic-bezier(0.2, 0.8, 0.4, 1) infinite 1s;
}

@keyframes playPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.play-btn-circle {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff007f 0%, #ff1493 50%, #d80064 100%);
  border: 3.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 35px var(--neon-glow-intense),
    0 8px 24px rgba(0, 0, 0, 0.6),
    inset 0 0 12px rgba(255, 255, 255, 0.4);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.play-btn:hover .play-btn-circle {
  transform: scale(1.1);
  box-shadow: 
    0 0 50px rgba(255, 0, 128, 1),
    0 10px 30px rgba(0, 0, 0, 0.7),
    inset 0 0 16px rgba(255, 255, 255, 0.6);
}

.play-btn:active .play-btn-circle {
  transform: scale(0.95);
}

.play-triangle-svg {
  width: 38px;
  height: 38px;
  margin-left: 6px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* 6. Watching Counter Pill */
.watching-pill {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(90deg, #ff007f 0%, #ff1493 50%, #e00078 100%);
  border-radius: 26px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-white);
  box-shadow: 
    0 0 25px rgba(255, 0, 128, 0.65),
    0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.watching-pill:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 35px rgba(255, 0, 128, 0.85),
    0 6px 20px rgba(0, 0, 0, 0.5);
}

.watching-pill:active {
  transform: translateY(0);
}

.watching-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 6px #ffffff;
  animation: watchingDotFlicker 1.8s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes watchingDotFlicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.watching-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(13px, 3.8vw, 15px);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.watching-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(14px, 4vw, 16px);
  letter-spacing: 0.8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* ==========================================================================
   7. JOIN NOW BUTTON
   ========================================================================== */
.join-now-btn {
  width: 100%;
  height: 64px;
  background: linear-gradient(135deg, #ff007f 0%, #ff1493 50%, #d80064 100%);
  border: none;
  border-radius: var(--btn-radius);
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  box-shadow: 
    0 0 32px var(--neon-glow),
    0 10px 25px rgba(0, 0, 0, 0.6);
  padding: 0 28px;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.join-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: btnShimmer 3.2s infinite ease-in-out;
}

@keyframes btnShimmer {
  0% { left: -100%; }
  35%, 100% { left: 160%; }
}

.join-now-btn:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 
    0 0 45px rgba(255, 0, 128, 0.95),
    0 14px 30px rgba(0, 0, 0, 0.7);
}

.join-now-btn:active {
  transform: translateY(1px) scale(0.98);
}

.join-text {
  position: relative;
  z-index: 2;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.7),
    0 2px 4px rgba(0, 0, 0, 0.4);
}

.join-arrow {
  position: absolute;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.join-now-btn:hover .join-arrow {
  transform: translateX(5px);
}

.arrow-svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* ==========================================================================
   DESKTOP & LARGE SCREEN REFINEMENTS
   ========================================================================== */
@media (min-width: 768px) {
  .page-container {
    padding-bottom: 60px;
  }

  .top-banner {
    height: 105px;
  }

  .content-wrapper {
    max-width: 580px;
  }

  .video-preview-card {
    min-height: 520px;
  }

  .join-now-btn {
    height: 68px;
    font-size: 22px;
  }
}

/* Small mobile devices (<360px) */
@media (max-width: 360px) {
  .content-wrapper {
    width: calc(100% - 40px);
  }

  .profile-name {
    font-size: 20px;
  }

  .avatar-ring {
    width: 75px;
    height: 75px;
  }

  .play-btn-circle {
    width: 90px;
    height: 90px;
  }

  .play-triangle-svg {
    width: 32px;
    height: 32px;
  }
}



/* ==========================================================================
   8. "UR SPICY STREAMER" POPUP OVERLAY
   Never shown on page load — the `hidden` attribute is present in the markup
   and is only removed by a visitor click on a CTA element.
   ========================================================================== */
.spicy-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  opacity: 0;
  transition: opacity 0.22s ease;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}

/* Hard guard: the attribute wins over the flex display above */
.spicy-popup[hidden] {
  display: none !important;
}

.spicy-popup.is-open {
  opacity: 1;
}

.spicy-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 1, 8, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ---- Card ---- */
.spicy-popup-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: linear-gradient(180deg, #1a0829 0%, #12061e 55%, #0b0313 100%);
  border: 1.5px solid rgba(255, 0, 128, 0.55);
  border-radius: var(--card-radius);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.8),
    0 0 44px rgba(255, 0, 128, 0.35);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.spicy-popup.is-open .spicy-popup-card {
  transform: translateY(0) scale(1);
}

/* ---- X close ---- */
.spicy-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 3, 18, 0.55);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.spicy-popup-close:hover {
  background: rgba(255, 0, 128, 0.55);
}

.spicy-popup-close:active {
  transform: scale(0.92);
}

.spicy-popup-close-svg {
  width: 18px;
  height: 18px;
}

/* ---- Banner headline ---- */
.spicy-popup-banner {
  position: relative;
  overflow: hidden;
  padding: 22px 58px;
  background: linear-gradient(90deg, #ff007f 0%, #ff1493 50%, #e00078 100%);
  border-radius: calc(var(--card-radius) - 2px) calc(var(--card-radius) - 2px) 0 0;
  box-shadow: 0 6px 26px rgba(255, 0, 128, 0.45);
}

.spicy-popup-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  animation: bannerShimmer 4.5s infinite linear;
  pointer-events: none;
}

.spicy-popup-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(23px, 6.4vw, 30px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--text-white);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 0, 128, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.4);
}

/* ---- Body ---- */
.spicy-popup-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 22px 26px;
}

.spicy-popup-avatar-ring {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ff007f 0%, #ff1493 50%, #e00078 100%);
  box-shadow:
    0 0 22px rgba(255, 0, 128, 0.7),
    inset 0 0 8px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.spicy-popup-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background-color: var(--accent-purple);
}

.spicy-popup-online {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background-color: var(--online-green);
  border: 3px solid #140722;
  border-radius: 50%;
  box-shadow: 0 0 8px var(--online-green);
  animation: onlinePulse 2.2s infinite ease-in-out;
}

.spicy-popup-name-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.spicy-popup-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-white);
}

.spicy-popup-live {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spicy-popup-live-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-pink);
  text-shadow:
    0 0 8px rgba(255, 0, 127, 0.8),
    0 0 18px rgba(255, 0, 127, 0.4);
}

.spicy-popup-copy {
  margin: 2px 0 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  color: var(--text-muted);
}

/* ---- JOIN FOR FREE ---- */
.spicy-popup-join {
  position: relative;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  overflow: hidden;
  border: none;
  border-radius: var(--btn-radius);
  background: linear-gradient(135deg, #ff007f 0%, #ff1493 50%, #d80064 100%);
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: clamp(17px, 4.8vw, 20px);
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 0 32px var(--neon-glow),
    0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.spicy-popup-join::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: btnShimmer 3.2s infinite ease-in-out;
  pointer-events: none;
}

.spicy-popup-join:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 0 45px rgba(255, 0, 128, 0.95),
    0 14px 30px rgba(0, 0, 0, 0.7);
}

.spicy-popup-join:active {
  transform: translateY(1px) scale(0.98);
}

.spicy-popup-join-arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.spicy-popup-join:hover .spicy-popup-join-arrow {
  transform: translateX(4px);
}

.spicy-popup-join-text {
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.7),
    0 2px 4px rgba(0, 0, 0, 0.4);
}

.spicy-popup-note {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-dim);
  text-align: center;
}

/* Locks the page behind the popup (iOS-safe) */
body.popup-open {
  overflow: hidden;
}

/* Short viewports (iPhone landscape) */
@media (max-height: 620px) {
  .spicy-popup-banner {
    padding: 16px 58px;
  }

  .spicy-popup-body {
    gap: 9px;
    padding: 16px 20px 20px;
  }

  .spicy-popup-avatar-ring {
    width: 76px;
    height: 76px;
  }

  .spicy-popup-copy {
    display: none;
  }
}

/* Small mobile devices (<360px) */
@media (max-width: 360px) {
  .spicy-popup-banner {
    padding: 20px 50px;
  }

  .spicy-popup-body {
    padding: 18px 16px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spicy-popup,
  .spicy-popup-card {
    transition: none;
  }

  .spicy-popup-banner::after,
  .spicy-popup-join::before {
    animation: none;
  }
}
