/* ==========================================================================
   UV Site Stories - Frontend Stylesheet
   - Custom Ring Gradient: linear-gradient(270deg, rgba(0, 255, 255, 1) 20%, rgba(254, 5, 255, 1) 80%)
   - Continuous subtle shimmer animation around active rings
   - Single progress bar tracking video time
   - True Continuous 3D Cube Instagram Transition (triangulo.dev/posts/animacao-instagram-stories-com-css/)
   - Video adapted to width (100% width, height adapts proportionally, vertically centered)
   - Sleek Vertical Volume Slider (compact padding/tight margins, auto-collapse after 3s)
   - Fullscreen 100dvh mobile coverage (no top/bottom clipping, safe area support)
   - Desktop modal navigation arrows
   ========================================================================== */

:root {
  --uv-brand-pink: #e6007e;
  --uv-brand-blue: #00aeef;
  --uv-text-dark: #1e293b;
  --uv-text-muted: #64748b;
  --uv-border-light: #e2e8f0;
  --uv-bg-light: #ffffff;
  --uv-radius-card: 12px;
  --uv-radius-pill: 8px;
  --uv-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --uv-cube-timing: cubic-bezier(0.37, 0, 0.63, 1);
}

/* --------------------------------------------------------------------------
   1. Main Stories Bar Container
   -------------------------------------------------------------------------- */
.uv-stories-wrapper {
  width: 100% !important;
  background-color: var(--uv-bg-light) !important;
  border-top: 1px solid var(--uv-border-light) !important;
  border-bottom: 1px solid var(--uv-border-light) !important;
  padding: 14px 0 !important;
  box-sizing: border-box !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
  clear: both !important;
}

.uv-stories-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   2. Left Highlight Badge (25 ANOS DE TECNIS)
   -------------------------------------------------------------------------- */
.uv-story-highlight-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  padding-right: 18px;
  border-right: 1px solid var(--uv-border-light);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s var(--uv-ease-out);
  outline: none;
}

.uv-story-highlight-badge:hover {
  transform: scale(1.04);
}

.uv-story-highlight-badge:active {
  transform: scale(0.96);
}

.uv-badge-circle {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c0003b 0%, #e6007e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 4px;
  box-sizing: border-box;
  overflow: hidden;
}

.uv-badge-img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  display: block !important;
}

.uv-badge-title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.uv-badge-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--uv-text-muted);
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   3. Horizontal Scroll Track & Navigation Buttons
   -------------------------------------------------------------------------- */
.uv-stories-scroll-track {
  display: flex !important;
  align-items: flex-start !important;
  gap: 18px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding: 6px 2px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.uv-stories-scroll-track::-webkit-scrollbar {
  display: none !important;
}

.uv-stories-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--uv-border-light);
  background: #ffffff;
  color: var(--uv-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  flex-shrink: 0;
  transition: all 0.2s var(--uv-ease-out);
  outline: none;
  padding: 0;
  box-sizing: border-box;
}

.uv-stories-nav-btn:hover {
  background: #f8fafc;
  color: var(--uv-brand-pink);
  transform: scale(1.08);
}

.uv-stories-nav-btn:active {
  transform: scale(0.92);
}

/* --------------------------------------------------------------------------
   4. Story Items (Bolinhas com Anel #e23636 e Brilho Rodiando)
   -------------------------------------------------------------------------- */
.uv-story-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 96px !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  outline: none !important;
  transition: transform 0.25s var(--uv-ease-out) !important;
  box-sizing: border-box !important;
}

.uv-story-item:hover {
  transform: translateY(-2px);
}

.uv-story-item:active {
  transform: scale(0.94);
}

/* Circle Outer Ring with #e23636 */
.uv-story-circle-outer {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 3px;
  box-sizing: border-box;
  background: #e23636;
  overflow: visible;
  transition: transform 0.25s var(--uv-ease-out);
}

/* Continuous Subtle Shimmer Glow Rotating around the Ring */
.uv-story-shimmer-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.uv-story-shimmer-glow:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent 0deg,
    rgba(255, 255, 255, 0.45) 60deg,
    transparent 120deg
  );
  border-radius: 50%;
  animation: uv-ring-spin 3.5s linear infinite;
  pointer-events: none;
}

@keyframes uv-ring-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.uv-story-item.is-active:hover .uv-story-circle-outer {
  transform: scale(1.06);
}

.uv-story-circle-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  box-sizing: border-box;
  background: #f1f5f9;
}

.uv-story-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease, filter 0.3s ease !important;
}

.uv-story-item.is-active:hover .uv-story-img {
  transform: scale(1.08);
}

/* Camouflaged / Locked Story State (Blur no Foto e no Nome) */
.uv-story-item.is-camouflaged .uv-story-circle-outer {
  background: #cbd5e1 !important;
}

.uv-story-item.is-camouflaged .uv-story-shimmer-glow {
  display: none !important;
}

.uv-story-item.is-camouflaged .uv-story-img {
  filter: blur(5px) grayscale(70%) opacity(0.6) !important;
  transform: scale(1.15) !important;
}

.uv-story-lock-badge {
  position: absolute !important;
  bottom: 0px !important;
  right: 0px !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #334155 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #ffffff !important;
  box-sizing: border-box !important;
  z-index: 10 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25) !important;
}

/* Story Labels (Title & Subtitle close together) */
.uv-story-label-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin-top: 6px !important;
  text-align: center !important;
  width: 100% !important;
  gap: 0px !important;
  transition: filter 0.3s ease, opacity 0.3s ease !important;
}

.uv-story-title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--uv-text-dark) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 94px !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.uv-story-subtitle {
  font-size: 11px !important;
  font-weight: 400 !important;
  color: var(--uv-text-muted) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 94px !important;
  margin: 1px 0 0 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
}

/* Blur on Names of Unreleased Stories */
.uv-story-item.is-camouflaged .uv-story-label-box {
  filter: blur(3.5px) !important;
  opacity: 0.65 !important;
  user-select: none !important;
}

.uv-story-item.is-camouflaged .uv-story-title {
  color: #64748b !important;
}

/* Colorful Blur on Scheduled Stories (Eye-Catching Vibrant Teaser with Active Ring) */
.uv-story-item.is-camouflaged.is-colorful-blur .uv-story-circle-outer {
  background: var(--uv-ring-active) !important;
  box-shadow: 0 0 14px rgba(226, 54, 54, 0.45) !important;
}

.uv-story-item.is-camouflaged.is-colorful-blur .uv-story-shimmer-glow {
  display: block !important;
  animation: uvShimmerRotate 3.5s linear infinite !important;
  opacity: 0.85 !important;
}

.uv-story-item.is-camouflaged.is-colorful-blur .uv-story-img {
  filter: blur(5px) saturate(160%) brightness(1.05) !important;
  opacity: 0.95 !important;
  transform: scale(1.18) !important;
}

.uv-story-item.is-camouflaged.is-colorful-blur .uv-story-lock-badge {
  background: #e23636 !important;
  box-shadow: 0 2px 8px rgba(226, 54, 54, 0.5) !important;
}

.uv-story-item.is-camouflaged.is-colorful-blur .uv-story-label-box {
  filter: blur(3px) !important;
  opacity: 0.85 !important;
}

.uv-story-item.is-camouflaged.is-colorful-blur .uv-story-title {
  color: var(--uv-text-dark) !important;
  font-weight: 700 !important;
}

/* --------------------------------------------------------------------------
   5. Video Lightbox Modal Player & True 3D Cube Transition
   -------------------------------------------------------------------------- */
.uv-stories-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 999999999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.uv-stories-modal.is-open {
  display: flex !important;
}

.uv-modal-backdrop {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(15, 23, 42, 0.88) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 1 !important;
}

/* Desktop Floating Navigation Arrows beside Modal */
.uv-modal-desktop-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 30 !important;
  transition: all 0.2s var(--uv-ease-out) !important;
  outline: none !important;
  backdrop-filter: blur(6px) !important;
  padding: 0 !important;
}

.uv-modal-desktop-arrow:hover {
  background: rgba(255, 255, 255, 0.38) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.uv-modal-desktop-arrow:active {
  transform: translateY(-50%) scale(0.92) !important;
}

.uv-arrow-prev { left: 40px !important; }
.uv-arrow-next { right: 40px !important; }

/* 3D Cube Screen Viewport */
.uv-modal-3d-screen {
  position: relative !important;
  width: 100% !important;
  max-width: 410px !important;
  height: 84vh !important;
  max-height: 750px !important;
  perspective: 1600px !important;
  transform-style: preserve-3d !important;
  z-index: 10 !important;
  overflow: visible !important;
  transition: max-width 0.35s ease, height 0.35s ease, max-height 0.35s ease !important;
}

/* Dynamic Responsive Landscape Mode for 16:9 Videos on Desktop & Tablets */
.uv-modal-3d-screen.is-landscape-mode {
  max-width: min(920px, 86vw) !important;
  height: min(580px, 80vh) !important;
  max-height: 580px !important;
}

.uv-modal-3d-cuboid {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  transform-style: preserve-3d !important;
  transition: transform 0.45s var(--uv-cube-timing) !important;
}

/* 3D Faces */
.uv-face {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  border-radius: var(--uv-radius-card) !important;
  overflow: hidden !important;
  background: #000000 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
  box-sizing: border-box !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  transform-style: preserve-3d !important;
  pointer-events: none;
  z-index: 1;
}

.uv-face.is-current-active {
  pointer-events: auto !important;
  z-index: 10 !important;
}

/* --------------------------------------------------------------------------
   6. Fixed Foreground Top Overlay (Progress Bar + Header + Controls)
   -------------------------------------------------------------------------- */
.uv-modal-top-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 60 !important;
  pointer-events: none !important;
  padding: 12px 12px 0 12px !important;
  box-sizing: border-box !important;
}

.uv-modal-progress-container {
  position: relative !important;
  width: 100% !important;
  display: flex !important;
  margin-bottom: 8px !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
}

.uv-progress-bar-segment {
  flex: 1 !important;
  height: 3px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  border-radius: 2px !important;
  overflow: hidden !important;
}

.uv-progress-bar-fill {
  width: 0%;
  height: 100% !important;
  background: #ffffff !important;
  transition: width 0.08s linear;
}

/* Lightbox Header */
.uv-modal-header {
  position: relative !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #ffffff !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
}

.uv-modal-author {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  pointer-events: auto !important;
}

.uv-modal-avatar {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: 1.5px solid #ffffff !important;
  object-fit: cover !important;
}

.uv-modal-author-info {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0px !important;
  line-height: 1 !important;
}

.uv-modal-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.uv-modal-subtitle {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.1 !important;
  margin: 1px 0 0 0 !important;
  padding: 0 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.uv-modal-controls {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  pointer-events: auto !important;
}

/* Sleek Vertical Volume Slider (Tight Background Margins) */
.uv-volume-control-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
}

.uv-volume-dropdown {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(15, 23, 42, 0.94) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 8px 4px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55) !important;
  display: none !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 50 !important;
  width: 32px !important;
  height: 125px !important;
  box-sizing: border-box !important;
  pointer-events: auto !important;
}

.uv-volume-control-wrapper.is-open .uv-volume-dropdown {
  display: flex !important;
}

.uv-volume-slider.uv-volume-vertical {
  -webkit-appearance: slider-vertical !important;
  writing-mode: bt-lr !important;
  width: 6px !important;
  height: 80px !important;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  outline: none !important;
  cursor: pointer !important;
  accent-color: var(--uv-brand-pink) !important;
  margin: 4px 0 !important;
  padding: 0 !important;
  pointer-events: auto !important;
}

.uv-volume-slider.uv-volume-vertical::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5) !important;
  cursor: pointer !important;
}

.uv-volume-slider.uv-volume-vertical::-moz-range-thumb {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5) !important;
  cursor: pointer !important;
  border: none !important;
}

.uv-modal-btn {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  outline: none !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  pointer-events: auto !important;
}

.uv-modal-btn:hover {
  background: rgba(0, 0, 0, 0.7) !important;
  transform: scale(1.08) !important;
}

.uv-modal-btn:active {
  transform: scale(0.92) !important;
}

/* --------------------------------------------------------------------------
   7. Video Player Body (100% Width Adaptability & Vertical Centering)
   -------------------------------------------------------------------------- */
.uv-modal-body {
  position: relative !important;
  flex: 1 !important;
  width: 100% !important;
  height: 100% !important;
  background: #000000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.uv-video-wrapper {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

/* Video adapts 100% width, scales height proportionally, perfectly centered */
.uv-story-video-el {
  width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  margin: auto !important;
}

.uv-iframe-container {
  width: 100% !important;
  height: 100% !important;
  display: none;
}

.uv-iframe-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

/* Touch Tap Navigation Zones */
.uv-modal-touch-nav {
  position: absolute !important;
  top: 60px !important;
  bottom: 60px !important;
  width: 35% !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  z-index: 5 !important;
  padding: 0 !important;
}

.uv-touch-prev { left: 0 !important; }
.uv-touch-next { right: 0 !important; }

/* Modal Footer CTA */
.uv-modal-footer {
  position: absolute !important;
  bottom: 20px !important;
  left: 16px !important;
  right: 16px !important;
  z-index: 15 !important;
  display: none;
  justify-content: center !important;
}

.uv-modal-footer.is-active {
  display: flex !important;
}

.uv-modal-cta-btn {
  background: var(--uv-brand-pink) !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  border-radius: var(--uv-radius-pill) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  border: none !important;
}

.uv-modal-cta-btn:hover {
  background: #c0003b !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.uv-modal-cta-btn:active {
  transform: scale(0.96) !important;
}

/* --------------------------------------------------------------------------
   8. Feedback Toast Notification
   -------------------------------------------------------------------------- */
.uv-stories-toast {
  position: fixed !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #1e293b !important;
  color: #ffffff !important;
  padding: 12px 20px !important;
  border-radius: var(--uv-radius-card) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  z-index: 9999999999 !important;
  display: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.uv-stories-toast.is-show {
  display: block !important;
}

.uv-toast-content {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* --------------------------------------------------------------------------
   9. Complete Mobile Fullscreen Coverage (100dvh, zero borders, safe insets)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .uv-stories-wrapper {
    padding: 10px 0 !important;
  }
  .uv-story-highlight-badge {
    margin-right: 10px !important;
    padding-right: 10px !important;
  }
  .uv-badge-circle {
    width: 64px !important;
    height: 64px !important;
  }
  .uv-badge-title {
    font-size: 10px !important;
  }
  .uv-story-circle-outer {
    width: 62px !important;
    height: 62px !important;
  }
  .uv-story-item {
    width: 70px !important;
  }
  .uv-story-title {
    font-size: 11px !important;
    max-width: 68px !important;
  }
  .uv-story-subtitle {
    font-size: 9px !important;
    max-width: 68px !important;
  }
  .uv-stories-nav-btn, .uv-modal-desktop-arrow {
    display: none !important;
  }

  /* Full Screen Mobile Lightbox Modal */
  .uv-stories-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #000000 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .uv-modal-3d-screen,
  .uv-modal-3d-screen.is-landscape-mode {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .uv-face {
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    top: 0 !important;
    left: 0 !important;
  }

  .uv-modal-progress-container {
    top: max(12px, env(safe-area-inset-top, 12px)) !important;
    left: 12px !important;
    right: 12px !important;
  }

  .uv-modal-header {
    top: max(22px, calc(env(safe-area-inset-top, 0px) + 20px)) !important;
    left: 12px !important;
    right: 12px !important;
  }

  .uv-modal-footer {
    bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 20px)) !important;
  }
}
