/* ===================================================
   UR SPICY GIRL LIVE STREAM LANDING PAGE
   Mobile-First High-Converting Glassmorphism Stylesheet
   =================================================== */

:root {
  --bg-black: #050308;
  --bg-card-glass: rgba(22, 12, 34, 0.62);
  --bg-card-border: rgba(168, 85, 247, 0.28);
  --bg-card-border-glow: rgba(217, 70, 239, 0.45);
  
  --neon-pink-main: #ff2a7a;
  --neon-pink-bright: #ff176b;
  --neon-pink-deep: #e11d48;
  --neon-pink-glow: rgba(255, 42, 122, 0.6);
  --neon-pink-soft-glow: rgba(255, 42, 122, 0.25);
  
  --neon-purple-deep: #581c87;
  --neon-purple-main: #9333ea;
  --neon-purple-bright: #c026d3;
  --neon-purple-glow: rgba(147, 51, 234, 0.5);
  
  --gold-star: #ffb800;
  --gold-timer: #facc15;
  --green-online: #22c55e;
  --blue-verified: #2563eb;
  
  --text-white: #ffffff;
  --text-muted: #9ca3af;
  --text-light-purple: #e9d5ff;
  --text-dim: #6b7280;

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-pill: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* CSS 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-black);
  color: var(--text-white);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: -webkit-fill-available;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: env(safe-area-inset-top, 8px) 0 env(safe-area-inset-bottom, 8px) 0;
}

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

.ambient-glow-top {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 320px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.35) 0%, rgba(255, 42, 122, 0.18) 50%, rgba(5, 3, 8, 0) 75%);
}

.ambient-glow-center {
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 520px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.16) 0%, rgba(139, 92, 246, 0.12) 50%, rgba(5, 3, 8, 0) 80%);
}

.ambient-glow-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 23, 107, 0.2) 0%, rgba(88, 28, 135, 0.22) 55%, rgba(5, 3, 8, 0) 80%);
}

/* Main Layout Canvas (Optimized for 390px mobile viewport, max 440px on desktop) */
.page-container {
  width: 92%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0;
}

/* ===================================================
   1. TOP PROFILE HEADER CARD
   =================================================== */
.profile-card {
  width: 100%;
  margin-top: 4px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(32, 16, 48, 0.7) 0%, rgba(18, 10, 28, 0.85) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--bg-card-border);
  border-bottom: 1.5px solid var(--bg-card-border-glow);
  border-radius: 20px;
  box-shadow: 0 8px 25px -6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(147, 51, 234, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-avatar-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar-ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  padding: 3px;
  background: var(--bg-black);
  border: 2.5px solid var(--neon-pink-main);
  box-shadow: 0 0 16px rgba(255, 42, 122, 0.75), inset 0 0 8px rgba(255, 42, 122, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: profileRingBreathe 3s ease-in-out infinite alternate;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

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

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

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

.verification-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--blue-verified);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
  flex-shrink: 0;
}

.verification-icon {
  width: 13px;
  height: 13px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 1;
}

.star-group {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-star);
  font-size: 15px;
  text-shadow: 0 0 6px rgba(255, 184, 0, 0.5);
}

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

.review-count {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}

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

.stat-pill {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.32);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light-purple);
  white-space: nowrap;
}

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

/* ===================================================
   2. MAIN LIVE STREAM CARD (DOMINANT HERO ELEMENT)
   =================================================== */
.media-card-wrap {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.media-card {
  width: 100%;
  height: 385px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--neon-pink-main);
  box-shadow: 0 0 28px var(--neon-pink-glow), 0 0 60px rgba(147, 51, 234, 0.25), inset 0 0 16px var(--neon-pink-soft-glow);
  background: #0d0714;
}

/* Media Image & Gradient Layer */
.media-image-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.media-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 3, 8, 0.65) 0%,
    rgba(5, 3, 8, 0.08) 22%,
    rgba(5, 3, 8, 0.12) 55%,
    rgba(5, 3, 8, 0.8) 86%,
    rgba(5, 3, 8, 0.95) 100%
  );
  pointer-events: none;
}

/* Top Bar Inside Media Card */
.media-card-top-bar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

/* LIVE NOW Badge */
.badge-live-now {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(8, 4, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--neon-pink-main);
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(255, 42, 122, 0.55);
}

.live-dot-pulse {
  width: 9px;
  height: 9px;
  background: #ff176b;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff176b;
  animation: liveDotPulse 1.6s ease-in-out infinite;
}

.live-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--text-white);
  text-transform: uppercase;
}

/* Timer Badge */
.badge-timer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(8, 4, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(250, 204, 21, 0.7);
  border-radius: 18px;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.35);
}

.timer-icon {
  color: var(--gold-timer);
  font-size: 14px;
}

.timer-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gold-timer);
  letter-spacing: 0.5px;
}

/* VIP Private Stream Pill */
.vip-label-wrap {
  position: absolute;
  top: 16%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.vip-pill {
  padding: 6px 16px;
  background: linear-gradient(90deg, #ff2a7a 0%, #d946ef 50%, #8b5cf6 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 25px;
  box-shadow: 0 0 18px rgba(217, 70, 239, 0.65), 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

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

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  width: 140px;
  height: 140px;
  cursor: pointer;
  animation: playBreathe 2.4s ease-in-out infinite;
}

.play-outer-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 42, 122, 0.45) 0%, rgba(217, 70, 239, 0.22) 55%, rgba(139, 92, 246, 0) 75%);
  filter: blur(12px);
  pointer-events: none;
}

.play-outer-ring {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 42, 122, 0.32) 0%, rgba(217, 70, 239, 0.2) 60%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(255, 42, 122, 0.45);
  box-shadow: 0 0 28px var(--neon-pink-glow), inset 0 0 20px rgba(255, 42, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-inner-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(30, 8, 24, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2.5px solid #FFFFFF;
  box-shadow: 0 0 18px rgba(255, 42, 122, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.play-triangle-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.play-button:hover .play-inner-circle {
  transform: scale(1.05);
  background: rgba(45, 12, 36, 0.88);
}

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

/* Bottom Viewer Status Bar */
.viewer-status-bar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 48px;
  background: rgba(10, 6, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 14px rgba(147, 51, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 6;
}

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

.viewer-dot-green {
  width: 10px;
  height: 10px;
  background: var(--green-online);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-online);
  animation: viewerGreenPulse 2s infinite ease-in-out;
}

.viewer-label {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

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

.viewer-count {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  color: var(--neon-pink-main);
  text-shadow: 0 0 14px rgba(255, 42, 122, 0.6);
  letter-spacing: 0.5px;
}

/* ===================================================
   3 & 4. PRIMARY & SECONDARY CTA BUTTONS
   =================================================== */
.cta-section {
  width: 100%;
}

.primary-cta-section {
  margin-top: 10px;
}

.secondary-cta-section {
  margin-top: 8px;
}

.cta-button {
  width: 100%;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Primary CTA (+18 LIVESTREAM) */
.primary-cta {
  background: linear-gradient(90deg, #ff176b 0%, #ff2a7a 50%, #e11d48 100%);
  border: 1.5px solid #ff70a6;
  box-shadow: 0 8px 26px rgba(255, 23, 107, 0.55), 0 0 20px rgba(255, 42, 122, 0.35);
  font-size: 22px;
  letter-spacing: 1px;
  gap: 10px;
  animation: primaryCtaPulse 3s infinite ease-in-out;
}

.primary-cta .cta-icon-play {
  font-size: 19px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.primary-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 34px rgba(255, 23, 107, 0.7), 0 0 26px rgba(255, 42, 122, 0.5);
}

.primary-cta:active {
  transform: scale(0.97);
}

/* Secondary CTA (UNLOCK EXPLICIT CONTENT) */
.secondary-cta {
  background: linear-gradient(90deg, #581c87 0%, #9333ea 50%, #c026d3 100%);
  border: 1.5px solid #c084fc;
  box-shadow: 0 8px 26px rgba(147, 51, 234, 0.45), 0 0 20px rgba(192, 38, 211, 0.3);
  font-size: 18px;
  gap: 12px;
  padding: 0 16px;
}

.lock-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lock-svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.cta-multiline-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
}

.cta-line1, .cta-line2 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.6px;
}

.secondary-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 34px rgba(147, 51, 234, 0.6), 0 0 26px rgba(192, 38, 211, 0.45);
}

.secondary-cta:active {
  transform: scale(0.97);
}

/* ===================================================
   5. TRUST / MICROCOPY
   =================================================== */
.trust-microcopy-section {
  width: 100%;
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.trust-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.trust-dot-green {
  font-size: 11px;
}

/* ===================================================
   6. BOTTOM BRAND PILL
   =================================================== */
.bottom-brand-section {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}

.brand-pill {
  width: 210px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.brand-text {
  font-size: 12.5px;
  font-weight: 500;
  color: #a1a1aa;
  letter-spacing: 0.3px;
}

/* ===================================================
   7. MOBILE STICKY BOTTOM CTA
   =================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: max(10px, env(safe-area-inset-bottom, 10px));
  left: 50%;
  transform: translate(-50%, 150%);
  width: 92%;
  max-width: 420px;
  height: 62px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-button {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(90deg, #ff176b 0%, #ff2a7a 50%, #e11d48 100%);
  border: 1.5px solid #ff70a6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 42, 122, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.sticky-cta-button:active {
  transform: scale(0.97);
}

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

/* ===================================================
   ANIMATIONS & KEYFRAMES
   =================================================== */
@keyframes liveDotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@keyframes viewerGreenPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--green-online);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 16px var(--green-online);
  }
}

@keyframes playBreathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(255, 42, 122, 0.4));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 32px rgba(255, 42, 122, 0.75));
  }
}

@keyframes primaryCtaPulse {
  0%, 100% {
    box-shadow: 0 10px 32px rgba(255, 23, 107, 0.55), 0 0 24px rgba(255, 42, 122, 0.35);
  }
  50% {
    box-shadow: 0 12px 38px rgba(255, 23, 107, 0.75), 0 0 34px rgba(255, 42, 122, 0.55);
  }
}

@keyframes profileRingBreathe {
  0%, 100% {
    box-shadow: 0 0 14px rgba(255, 42, 122, 0.65), inset 0 0 6px rgba(255, 42, 122, 0.35);
  }
  50% {
    box-shadow: 0 0 22px rgba(255, 42, 122, 0.9), inset 0 0 10px rgba(255, 42, 122, 0.5);
  }
}

/* ===================================================
   RESPONSIVE OPTIMIZATIONS
   =================================================== */

/* Small screens (320px - 360px) */
@media (max-width: 360px) {
  .page-container {
    width: 94%;
    padding: 2px 0;
  }

  .profile-card {
    padding: 10px 12px;
    gap: 10px;
    margin-top: 2px;
  }

  .profile-avatar-ring {
    width: 72px;
    height: 72px;
  }

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

  .rating-row {
    font-size: 14px;
  }

  .stat-pill {
    padding: 3px 6px;
    font-size: 11.5px;
  }

  .media-card-wrap {
    margin-top: 6px;
  }

  .media-card {
    height: 320px;
  }

  .play-button {
    width: 120px;
    height: 120px;
  }

  .play-outer-ring {
    width: 116px;
    height: 116px;
  }

  .play-inner-circle {
    width: 76px;
    height: 76px;
  }

  .play-triangle-icon {
    width: 30px;
    height: 30px;
  }

  .primary-cta-section {
    margin-top: 8px;
  }

  .secondary-cta-section {
    margin-top: 6px;
  }

  .primary-cta {
    font-size: 19px;
    height: 54px;
  }

  .secondary-cta {
    font-size: 16px;
    height: 54px;
  }

  .viewer-status-bar {
    padding: 0 12px;
    height: 42px;
    bottom: 8px;
  }

  .viewer-label {
    font-size: 12px;
  }

  .viewer-count {
    font-size: 18px;
  }

  .trust-microcopy-section {
    margin-top: 6px;
  }

  .trust-microcopy {
    font-size: 11.5px;
  }

  .bottom-brand-section {
    margin-top: 4px;
    margin-bottom: 2px;
  }

  .brand-pill {
    height: 34px;
    width: 190px;
  }
}

/* Mid-range Mobile Viewports (375px - 430px) */
@media (min-width: 375px) and (max-width: 430px) {
  .media-card {
    height: calc(48vh - 10px);
    min-height: 370px;
    max-height: 410px;
  }
}

/* Tablets & Desktop Viewports (Keep compact mobile app feel centered) */
@media (min-width: 768px) {
  body {
    background: radial-gradient(circle at 50% 20%, #11081e 0%, #050308 60%, #020104 100%);
    justify-content: center;
  }

  .page-container {
    max-width: 420px;
    padding: 10px 0;
  }

  .media-card {
    height: 395px;
  }
}

/* Accessibility: Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
