/* ==================================================
   CAM GIRL LIVE STREAM PROFILE OFFER - STYLESHEET
   Full-Screen Mobile-First Architecture (390x844 & 375x812)
   Fills 90-95% of viewport height without scrolling
   Aesthetic: Premium, Dark, Neon, Glassmorphism
   ================================================== */

:root {
  /* Brand & Theme Colors */
  --bg-black: #050308;
  --bg-card: rgba(18, 10, 28, 0.78);
  --bg-card-border: rgba(192, 38, 211, 0.35);
  
  --neon-pink: #ec4899;
  --neon-pink-bright: #ff007f;
  --neon-pink-glow: rgba(255, 0, 127, 0.6);
  --hot-magenta: #d946ef;
  --purple-accent: #8b5cf6;
  --purple-dark: #6b21a8;
  --electric-blue: #0284c7;
  --gold-star: #fbbf24;
  --gold-glow: rgba(251, 191, 36, 0.4);
  --green-online: #10b981;
  --green-glow: rgba(16, 185, 129, 0.7);

  /* Typography Colors */
  --text-white: #ffffff;
  --text-gray-light: #e2e8f0;
  --text-gray-muted: #94a3b8;
  --text-purple-light: #e9d5ff;

  /* Typography Family */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-black);
  background-image: 
    radial-gradient(circle at 50% 12%, rgba(168, 85, 247, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 50% 48%, rgba(217, 70, 239, 0.09) 0%, transparent 70%),
    radial-gradient(circle at 50% 88%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: env(safe-area-inset-top, 6px);
  padding-bottom: env(safe-area-inset-bottom, 12px);
}

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

.glow-top {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 220px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, rgba(147, 51, 234, 0.12) 60%, transparent 100%);
}

.glow-hero {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 420px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.12) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 100%);
}

/* Main Page Container: Proportional full-screen mobile target (390px-440px) */
.page-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 8px 14px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ==================================================
   TOP PROFILE HEADER (BALANCED & PROMINENT)
   ================================================== */
.profile-card {
  width: 100%;
  background: linear-gradient(145deg, rgba(28, 14, 42, 0.82) 0%, rgba(16, 8, 26, 0.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(192, 38, 211, 0.35);
  border-radius: 20px;
  padding: 12px 16px;
  box-shadow: 
    0 8px 22px -4px rgba(0, 0, 0, 0.75),
    0 4px 14px rgba(168, 85, 247, 0.18),
    inset 0 -1px 12px rgba(217, 70, 239, 0.16);
  animation: profileGlowBreathe 4s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
}

@keyframes profileGlowBreathe {
  0% {
    box-shadow: 
      0 8px 22px -4px rgba(0, 0, 0, 0.75),
      0 4px 14px rgba(168, 85, 247, 0.16),
      inset 0 -1px 10px rgba(217, 70, 239, 0.12);
  }
  100% {
    box-shadow: 
      0 10px 26px -3px rgba(0, 0, 0, 0.85),
      0 6px 20px rgba(236, 72, 153, 0.25),
      inset 0 -2px 16px rgba(217, 70, 239, 0.22);
  }
}

.profile-card-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
}

/* Profile Image & Glowing Neon Ring */
.avatar-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 2.8px;
  background: linear-gradient(135deg, #ff007f, #ec4899, #d946ef);
  box-shadow: 
    0 0 14px rgba(236, 72, 153, 0.8),
    0 0 6px rgba(255, 0, 127, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #0a0512;
}

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

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

.profile-name {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.4px;
  line-height: 1.1;
}

.verification-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.badge-icon {
  width: 19px;
  height: 19px;
  filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.6));
}

/* Rating Row */
.rating-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  line-height: 1;
}

.stars-group {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-star);
  font-size: 14.5px;
  text-shadow: 0 0 6px var(--gold-glow);
}

.rating-score {
  color: var(--text-white);
  font-weight: 700;
  font-size: 14.5px;
}

.rating-count {
  color: var(--text-gray-muted);
  font-size: 13px;
  font-weight: 500;
}

/* Statistics Buttons */
.stats-pills {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(36, 16, 52, 0.55);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 12px;
  padding: 3.5px 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-purple-light);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.stat-icon {
  font-size: 12px;
}

.stat-text {
  letter-spacing: -0.15px;
}

/* ==================================================
   MAIN LIVE STREAM HERO CARD (DOMINANT VISUAL ELEMENT)
   ================================================== */
.live-hero-card {
  width: 100%;
  margin-top: 12px;
  border-radius: 24px;
  position: relative;
  border: 1.8px solid var(--neon-pink);
  box-shadow: 
    0 0 28px rgba(236, 72, 153, 0.36),
    0 0 14px rgba(168, 85, 247, 0.25),
    0 16px 36px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  background: #0d0615;
}

/* Corner gold accent */
.live-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 75px;
  height: 75px;
  background: radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 3;
}

.media-container {
  width: 100%;
  height: 440px; /* Dominant hero size for 844px screen */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.hero-media-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}

/* Dark transparent gradient overlay */
.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 3, 8, 0.45) 0%,
    rgba(10, 5, 18, 0.1) 25%,
    rgba(10, 5, 18, 0.2) 55%,
    rgba(5, 3, 8, 0.72) 80%,
    rgba(5, 3, 8, 0.94) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Card Top Bar: LIVE NOW + Countdown Timer */
.card-top-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 0 12px;
  position: relative;
  z-index: 4;
}

/* Live Now Badge */
.live-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 5, 20, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.2px solid var(--neon-pink);
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.48);
  padding: 6px 12px;
  border-radius: 18px;
}

.live-dot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff0055;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff0055;
  animation: liveDotPulseAnim 1.6s infinite ease-in-out;
}

@keyframes liveDotPulseAnim {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
    box-shadow: 0 0 4px #ff0055;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
    box-shadow: 0 0 12px #ff0055, 0 0 16px #ff007f;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
    box-shadow: 0 0 4px #ff0055;
  }
}

.live-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-white);
  text-shadow: 0 0 7px rgba(255, 0, 127, 0.6);
}

/* Timer Badge */
.timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(18, 12, 5, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.2px solid rgba(245, 158, 11, 0.7);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.32);
  padding: 5px 11px;
  border-radius: 16px;
  color: #fbbf24;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.5px;
}

.timer-icon {
  font-size: 13px;
}

/* VIP Private Stream Label */
.vip-pill-wrapper {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.vip-pill {
  background: linear-gradient(90deg, #ec4899 0%, #d946ef 50%, #8b5cf6 100%);
  padding: 5px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 0 16px rgba(217, 70, 239, 0.6),
    0 3px 8px rgba(0, 0, 0, 0.35);
}

.vip-pill span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Central Glowing Play Button */
.center-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  text-decoration: none;
  cursor: pointer;
}

.play-pulse-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, rgba(217, 70, 239, 0.15) 70%, transparent 100%);
  border: 1px solid rgba(255, 0, 127, 0.4);
  box-shadow: 0 0 28px rgba(255, 0, 127, 0.48);
  animation: playRingPulse 2.2s infinite ease-in-out;
}

.ring-2 {
  width: 98px;
  height: 98px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.4) 0%, rgba(139, 92, 246, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-btn-outer {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.78) 0%, rgba(147, 51, 234, 0.88) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 20px rgba(255, 0, 127, 0.78),
    inset 0 0 12px rgba(255, 255, 255, 0.35);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.play-icon-triangle {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.center-play-button:hover .play-btn-outer {
  transform: scale(1.06);
  box-shadow: 
    0 0 30px rgba(255, 0, 127, 0.95),
    inset 0 0 16px rgba(255, 255, 255, 0.5);
}

.center-play-button:active .play-btn-outer {
  transform: scale(0.95);
}

@keyframes playRingPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
    box-shadow: 0 0 36px rgba(255, 0, 127, 0.7);
  }
  100% {
    transform: scale(0.96);
    opacity: 0.75;
  }
}

/* Bottom Viewer Status Bar */
.viewer-bar {
  width: 90%;
  height: 44px;
  margin-bottom: 12px;
  background: rgba(12, 6, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
  z-index: 4;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.viewer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.viewer-status-dot {
  width: 9px;
  height: 9px;
  background-color: var(--green-online);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-glow);
  display: inline-block;
}

.viewer-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-gray-light);
  text-transform: uppercase;
}

.viewer-right {
  display: flex;
  align-items: center;
}

.viewer-count {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--neon-pink-bright);
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.65);
  letter-spacing: 0.5px;
}

/* ==================================================
   CALL TO ACTION BUTTONS (PROMINENT & FULL SCREEN)
   ================================================== */
.cta-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  gap: 10px;
}

.cta-btn {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  user-select: none;
}

.cta-btn:hover {
  transform: scale(1.015);
}

.cta-btn:active {
  transform: scale(0.985);
}

/* PRIMARY CTA: ▶ +18 LIVESTREAM */
.primary-cta {
  background: linear-gradient(90deg, #ff0055 0%, #ff0077 50%, #e11d48 100%);
  border: 1.2px solid #ff3388;
  box-shadow: 
    0 0 24px rgba(255, 0, 102, 0.52),
    0 8px 18px rgba(0, 0, 0, 0.48);
  animation: primaryCtaGlow 2.5s ease-in-out infinite alternate;
}

@keyframes primaryCtaGlow {
  0% {
    box-shadow: 
      0 0 18px rgba(255, 0, 102, 0.42),
      0 6px 16px rgba(0, 0, 0, 0.45);
  }
  100% {
    box-shadow: 
      0 0 30px rgba(255, 0, 102, 0.7),
      0 9px 22px rgba(0, 0, 0, 0.58);
  }
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-icon-play {
  font-size: 17px;
  color: #ffffff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.cta-main-text {
  font-family: var(--font-heading);
  font-size: 18.5px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* SECONDARY CTA: 🔒 UNLOCK EXPLICIT CONTENT */
.secondary-cta {
  background: linear-gradient(135deg, #3b0764 0%, #6b21a8 50%, #a21caf 100%);
  border: 1.2px solid rgba(192, 38, 211, 0.7);
  box-shadow: 
    0 0 20px rgba(168, 85, 247, 0.38),
    0 7px 16px rgba(0, 0, 0, 0.48);
  padding: 8px 18px;
}

.secondary-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.lock-icon {
  font-size: 19px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.cta-lines {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.15;
}

.cta-line {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

/* TRUST / MICROCOPY */
.trust-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 6px;
  margin-bottom: 4px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-gray-muted);
  text-align: center;
}

.trust-dot {
  width: 7px;
  height: 7px;
  background-color: var(--green-online);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--green-glow);
}

/* ==================================================
   MOBILE STICKY BOTTOM CTA
   ================================================== */
.mobile-sticky-wrapper {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 92%;
  max-width: 400px;
  z-index: 100;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-sticky-wrapper.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 54px;
  background: linear-gradient(90deg, #ff0055 0%, #ff007f 50%, #ec4899 100%);
  border: 1.2px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 
    0 0 24px rgba(255, 0, 127, 0.65),
    0 8px 20px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.mobile-sticky-btn:active {
  transform: scale(0.97);
}

.sticky-live-dot {
  font-size: 15px;
  animation: liveDotPulseAnim 1.6s infinite ease-in-out;
}

.sticky-text {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* ==================================================
   RESPONSIVE ADJUSTMENTS (320px - 768px+)
   ================================================== */
@media (max-height: 750px) {
  .page-container {
    padding: 6px 12px 8px 12px;
  }
  .profile-card {
    padding: 10px 14px;
  }
  .avatar-ring {
    width: 56px;
    height: 56px;
  }
  .profile-name {
    font-size: 20px;
  }
  .live-hero-card {
    margin-top: 10px;
  }
  .live-hero-card .media-container {
    height: 360px;
  }
  .center-play-button {
    width: 100px;
    height: 100px;
  }
  .ring-1 {
    width: 100px;
    height: 100px;
  }
  .ring-2 {
    width: 82px;
    height: 82px;
  }
  .play-btn-outer {
    width: 66px;
    height: 66px;
  }
  .play-icon-triangle {
    width: 26px;
    height: 26px;
  }
  .cta-section {
    margin-top: 10px;
    gap: 8px;
  }
  .cta-btn {
    min-height: 52px;
  }
  .cta-main-text {
    font-size: 17px;
  }
  .cta-line {
    font-size: 14.5px;
  }
}

@media (max-width: 360px) {
  .page-container {
    padding: 6px 10px;
  }
  .profile-name {
    font-size: 20px;
  }
  .avatar-ring {
    width: 56px;
    height: 56px;
  }
  .stat-pill {
    padding: 2.5px 7px;
    font-size: 11px;
  }
  .cta-main-text {
    font-size: 16px;
  }
  .cta-line {
    font-size: 13.5px;
  }
  .live-hero-card .media-container {
    height: 380px;
  }
}

@media (min-width: 768px) {
  body {
    background-size: cover;
  }
  .page-container {
    max-width: 420px;
  }
}
