/* ==========================================================================
   PREMIUM MOBILE-FIRST LIVE-CAM LANDING PAGE STYLES
   Color Palette:
   - Background: #07030B (Deep Void with rich purple undertone)
   - Cards: #10091A (Glassmorphism Dark Purple)
   - Pink / Neon Red: #FF0F5B
   - Magenta: #FF1493
   - Electric Purple: #8A20FF
   - White: #FFFFFF
   - Muted Text: #9C91A8
   - Online Green: #00E676
   ========================================================================== */

:root {
  --bg-main: #07030B;
  --bg-gradient: radial-gradient(circle at 50% -15%, #2a0b4e 0%, #170729 38%, #0d0417 70%, #07030B 100%);
  --card-bg: rgba(16, 9, 26, 0.88);
  --card-bg-solid: #10091A;
  --card-border: rgba(138, 32, 255, 0.35);
  --card-border-hover: rgba(255, 15, 91, 0.65);
  
  --neon-pink: #FF0F5B;
  --neon-pink-bright: #FF2E7E;
  --neon-magenta: #FF1493;
  --neon-purple: #8A20FF;
  --neon-purple-bright: #A845FF;
  --neon-cyan: #00F0FF;
  --neon-cyan-glow: rgba(0, 240, 255, 0.45);
  --online-green: #00E676;
  --online-green-bright: #00FF87;
  --star-yellow: #FFD13B;
  --gold-shimmer: #FFE272;
  
  --text-white: #FFFFFF;
  --text-muted: #9C91A8;
  --text-dim: #6E637B;
  
  --cta-pink-gradient: linear-gradient(135deg, #FF0F5B 0%, #FF1493 45%, #FF2A85 75%, #E60067 100%);
  --cta-purple-gradient: linear-gradient(135deg, #8A20FF 0%, #B829EA 50%, #FF1493 100%);
  --cta-secondary-bg: linear-gradient(135deg, rgba(138, 32, 255, 0.22) 0%, rgba(255, 20, 147, 0.18) 100%);
  
  --shadow-pink-glow: 0 0 28px rgba(255, 15, 91, 0.65), 0 0 56px rgba(255, 20, 147, 0.28);
  --shadow-purple-glow: 0 0 24px rgba(138, 32, 255, 0.5), 0 0 40px rgba(138, 32, 255, 0.2);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 1px rgba(255, 255, 255, 0.15) inset;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-smooth: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg-main) var(--bg-gradient) no-repeat center top fixed;
  background-size: cover;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  padding-top: max(10px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  padding-left: max(12px, env(safe-area-inset-left));
  padding-right: max(12px, env(safe-area-inset-right));
  overflow-x: hidden;
}

/* App Wrapper - Mobile First Container */
.app-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* Ambient Background Lights */
.ambient-glow {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 440px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 15, 91, 0.22) 0%, rgba(138, 32, 255, 0.18) 35%, rgba(0, 240, 255, 0.08) 60%, transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   1. PROFILE HEADER
   ========================================================================== */
.profile-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card), 0 0 24px rgba(138, 32, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 15, 91, 0.7), rgba(0, 240, 255, 0.5), rgba(138, 32, 255, 0.7), transparent);
}

.avatar-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.avatar-ring {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  padding: 2.5px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-magenta), var(--neon-purple), var(--neon-cyan));
  box-shadow: 0 0 16px rgba(255, 15, 91, 0.7), 0 0 28px rgba(138, 32, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2.8s infinite ease-in-out;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
  background-color: #190a2a;
  display: block;
}

.online-badge {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 14px;
  height: 14px;
  background-color: var(--online-green);
  border: 2px solid #07030B;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--online-green-bright), 0 0 18px rgba(0, 255, 135, 0.6);
  animation: live-blink 1.8s infinite ease-in-out;
}

.profile-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

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

.profile-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--text-white);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.verified-icon {
  width: 18px;
  height: 18px;
  fill: var(--neon-cyan);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.8));
}

.profile-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.stars {
  color: var(--star-yellow);
  font-size: 0.86rem;
  letter-spacing: -1px;
  text-shadow: 0 0 8px rgba(255, 209, 59, 0.7);
}

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

.rating-reviews {
  color: var(--text-muted);
  font-weight: 400;
}

.profile-stats-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 3px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.stat-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.stat-icon {
  width: 13px;
  height: 13px;
  fill: var(--neon-pink);
  filter: drop-shadow(0 0 4px rgba(255, 15, 91, 0.5));
}

.stat-value {
  color: #EDE8F5;
  font-weight: 600;
}

/* ==========================================================================
   2. LIVE VIDEO HERO CARD
   ========================================================================== */
.hero-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5.2;
  max-height: 520px;
  background: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 30px rgba(138, 32, 255, 0.25), 0 0 15px rgba(255, 15, 91, 0.15);
  cursor: pointer;
  user-select: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-card), 0 0 38px rgba(255, 15, 91, 0.35), 0 0 20px rgba(138, 32, 255, 0.3);
}

.hero-card:active {
  transform: scale(0.99);
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-image {
  transform: scale(1.025);
}

/* Overlays */
.hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 95px;
  background: linear-gradient(180deg, rgba(7, 3, 11, 0.92) 0%, rgba(7, 3, 11, 0.45) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 135px;
  background: linear-gradient(0deg, rgba(7, 3, 11, 0.96) 0%, rgba(7, 3, 11, 0.65) 55%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 26, 0) 50%, rgba(0, 0, 0, 0.22) 50%);
  background-size: 100% 3px;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

/* Hero Top Bar Items */
.hero-header-row {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 15, 91, 0.28);
  border: 1px solid rgba(255, 15, 91, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 16px rgba(255, 15, 91, 0.6), 0 0 28px rgba(255, 15, 91, 0.25);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-pink);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px #FF0F5B, 0 0 18px #FF0F5B;
  animation: live-blink 1.1s infinite ease-in-out;
}

.timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 9, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #F1ECF8;
  font-size: 0.74rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Hero Stream Quality Badge */
.vip-stream-tag {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(138, 32, 255, 0.5) 0%, rgba(255, 20, 147, 0.5) 100%);
  border: 1px solid rgba(255, 20, 147, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.9px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 16px rgba(255, 20, 147, 0.45);
  z-index: 3;
}

.vip-icon {
  width: 12px;
  height: 12px;
  fill: var(--star-yellow);
  filter: drop-shadow(0 0 4px rgba(255, 209, 59, 0.8));
}

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

.play-ripple-outer {
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: var(--radius-full);
  background: rgba(255, 15, 91, 0.22);
  animation: sonar-ripple 2.2s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
}

.play-ripple-inner {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 20, 147, 0.5);
  background: rgba(138, 32, 255, 0.28);
  animation: sonar-ripple 2.2s cubic-bezier(0.2, 0.8, 0.4, 1) infinite 0.45s;
}

.play-btn-circle {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FF0F5B 0%, #FF1493 50%, #FF2A85 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(255, 15, 91, 0.85), 0 0 65px rgba(255, 20, 147, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

.hero-card:hover .play-btn-circle {
  transform: scale(1.1);
  box-shadow: 0 0 42px rgba(255, 15, 91, 1), 0 0 80px rgba(255, 20, 147, 0.7), inset 0 2px 6px rgba(255, 255, 255, 0.6);
}

.play-icon-svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
  margin-left: 4px; /* Optical center */
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

/* Hero Bottom Info */
.hero-footer-row {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.hero-viewer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.viewer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #FFFFFF;
  background: rgba(16, 9, 26, 0.82);
  border: 1px solid rgba(0, 230, 118, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.25);
}

.viewer-dot {
  width: 7px;
  height: 7px;
  background-color: var(--online-green-bright);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--online-green-bright);
  animation: live-blink 1.5s infinite ease-in-out;
}

.audio-eq-badge {
  display: inline-flex;
  align-items: center;
  gap: 3.5px;
  padding: 5px 10px;
  background: rgba(16, 9, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
}

.eq-bar {
  width: 3px;
  height: 10px;
  background-color: var(--neon-magenta);
  border-radius: 1.5px;
  animation: eq-bounce 0.8s ease-in-out infinite alternate;
}

.eq-bar:nth-child(2) { height: 15px; animation-delay: 0.2s; background-color: var(--neon-pink); }
.eq-bar:nth-child(3) { height: 9px; animation-delay: 0.4s; background-color: var(--neon-purple-bright); }
.eq-bar:nth-child(4) { height: 13px; animation-delay: 0.1s; background-color: var(--neon-cyan); }

.hero-cam-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #DDD5E8;
  flex-wrap: wrap;
}

.cam-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ==========================================================================
   3. PRIMARY CTA
   ========================================================================== */
.cta-primary {
  width: 100%;
  min-height: 56px;
  background: var(--cta-pink-gradient);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  cursor: pointer;
  box-shadow: var(--shadow-pink-glow), inset 0 1px 2px rgba(255, 255, 255, 0.45);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: btn-shimmer 2.6s infinite;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255, 15, 91, 0.85), 0 0 70px rgba(255, 20, 147, 0.45), inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

.cta-primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 0 20px rgba(255, 15, 91, 0.7);
}

.cta-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   4. SECONDARY CTA
   ========================================================================== */
.cta-secondary {
  width: 100%;
  min-height: 52px;
  background: var(--cta-secondary-bg);
  color: var(--text-white);
  border: 1.5px solid rgba(138, 32, 255, 0.75);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-purple-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.cta-secondary:hover {
  background: linear-gradient(135deg, rgba(138, 32, 255, 0.38) 0%, rgba(255, 20, 147, 0.3) 100%);
  border-color: var(--neon-magenta);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(138, 32, 255, 0.7), 0 0 20px rgba(255, 20, 147, 0.4);
}

.cta-secondary:active {
  transform: translateY(1px) scale(0.99);
}

/* ==========================================================================
   5. TRUST / PRIVACY ROW
   ========================================================================== */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 8px 12px;
  background: rgba(16, 9, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-bullet {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.trust-dot-green {
  width: 7px;
  height: 7px;
  background-color: var(--online-green-bright);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--online-green-bright);
}

.trust-icon {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
}

/* ==========================================================================
   6. FOOTER & DMCA
   ========================================================================== */
.site-footer {
  margin-top: 8px;
  padding: 14px 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dmca-button-wrap {
  display: flex;
  justify-content: center;
}

.dmca-btn {
  background: rgba(16, 9, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.dmca-btn:hover {
  color: var(--text-white);
  border-color: rgba(255, 20, 147, 0.4);
  background: rgba(255, 20, 147, 0.1);
}

.dmca-icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  padding: 2px;
}

.footer-link:hover {
  color: var(--text-white);
}

.footer-disclaimer {
  font-size: 0.65rem;
  color: var(--text-dim);
  line-height: 1.4;
  max-width: 380px;
}

/* ==========================================================================
   9. AGE GATE MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 1, 8, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   8. POST-CLICK BANNER MODAL
   ========================================================================== */
.banner-modal-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  background: #10091A;
  border: 1px solid rgba(255, 15, 91, 0.45);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 15, 91, 0.3);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-active .banner-modal-card {
  transform: scale(1);
}

.banner-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(7, 3, 11, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.banner-close-btn:hover {
  background: rgba(255, 15, 91, 0.7);
  border-color: var(--neon-pink);
  transform: rotate(90deg);
}

.banner-modal-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  gap: 12px;
  width: 100%;
}

.banner-media-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #07030B;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.banner-modal-img {
  width: 100%;
  height: auto;
  max-height: 52vh;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.banner-modal-link:hover .banner-modal-img {
  transform: scale(1.02);
}

.banner-live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(7, 3, 11, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 15, 91, 0.5);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--neon-pink);
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(255, 15, 91, 0.4);
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 4px 4px 6px;
}

.banner-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.4px;
}

.banner-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.banner-cta-button {
  margin-top: 6px;
  width: 100%;
  min-height: 48px;
  background: var(--cta-pink-gradient);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: var(--shadow-pink-glow);
  transition: var(--transition-smooth);
}

.banner-modal-link:hover .banner-cta-button {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 15, 91, 0.8);
}

.age-gate-card {
  width: 100%;
  max-width: 360px;
  background: #10091A;
  border: 1px solid rgba(255, 15, 91, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 15, 91, 0.25);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-active .age-gate-card {
  transform: scale(1);
}

.age-badge-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: rgba(255, 15, 91, 0.15);
  border: 2px solid var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 15, 91, 0.4);
}

.age-gate-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-white);
  line-height: 1.2;
}

.age-gate-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.age-gate-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-age-yes {
  width: 100%;
  min-height: 48px;
  background: var(--cta-pink-gradient);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  cursor: pointer;
  box-shadow: var(--shadow-pink-glow);
  transition: var(--transition-smooth);
}

.btn-age-yes:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255, 15, 91, 0.7);
}

.btn-age-exit {
  width: 100%;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-age-exit:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* ==========================================================================
   LEGAL INFORMATION MODAL (DMCA / Privacy / Terms)
   ========================================================================== */
.info-modal-card {
  width: 100%;
  max-width: 420px;
  max-height: 85vh;
  background: #10091A;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}

.info-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.info-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.info-modal-content {
  overflow-y: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
}

.info-modal-content h4 {
  color: var(--text-white);
  font-size: 0.86rem;
  margin-top: 4px;
}

/* ==========================================================================
   MICRO-ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes live-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 15, 91, 0.6); }
  50% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.9), 0 0 30px rgba(138, 32, 255, 0.5); }
}

@keyframes sonar-ripple {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes btn-shimmer {
  0% { left: -100%; }
  25%, 100% { left: 130%; }
}

@keyframes eq-bounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* Floating Heart Micro-Interaction on Tap */
.floating-heart {
  position: absolute;
  pointer-events: none;
  font-size: 1.3rem;
  color: var(--neon-pink);
  z-index: 10;
  animation: floatUpAndFade 1.2s forwards ease-out;
}

@keyframes floatUpAndFade {
  0% { opacity: 1; transform: translateY(0) scale(0.8); }
  50% { opacity: 0.9; transform: translateY(-40px) scale(1.2) rotate(12deg); }
  100% { opacity: 0; transform: translateY(-90px) scale(1.5) rotate(-15deg); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (360px, 375px, 390px, 414px, 430px, Desktop)
   ========================================================================== */

/* Very narrow devices (<= 360px) */
@media (max-width: 360px) {
  .app-container {
    gap: 10px;
  }
  
  .profile-name {
    font-size: 1.05rem;
  }
  
  .avatar-wrapper {
    width: 52px;
    height: 52px;
  }
  
  .hero-card {
    aspect-ratio: 4 / 5.4;
  }
  
  .play-btn-circle {
    width: 60px;
    height: 60px;
  }
  
  .cta-primary {
    font-size: 0.98rem;
    min-height: 50px;
  }
  
  .cta-secondary {
    font-size: 0.88rem;
    min-height: 46px;
  }
  
  .trust-row {
    font-size: 0.68rem;
  }
}

/* Standard Mobile Viewports (375px - 430px) */
@media (min-width: 375px) and (max-width: 440px) {
  .app-container {
    gap: 12px;
  }
}

/* Desktop & Tablets (Center with refined mobile-app look) */
@media (min-width: 768px) {
  body {
    padding-top: 32px;
    padding-bottom: 48px;
    background-size: 100% 100%;
  }

  .app-container {
    max-width: 440px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
  }
  
  .profile-card {
    transition: transform 0.2s ease, border-color 0.2s ease;
  }
  
  .profile-card:hover {
    border-color: rgba(255, 15, 91, 0.4);
  }
}
