/* ============================================
   Instagram-inspired Mobile Camera UI
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  /* Instagram Gradient */
  --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

  /* Colors */
  --bg-primary: #000000;
  --bg-secondary: #121212;
  --bg-tertiary: #1e1e1e;
  --bg-elevated: #2c2c2c;

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary: #606060;

  --accent-blue: #0095f6;
  --accent-blue-hover: #1877f2;
  --accent-red: #ed4956;
  --accent-green: #00c853;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
}

/* ============================================
   App Header
   ============================================ */

.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.header-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ig-gradient);
  opacity: 0.5;
}

.header-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background var(--transition-fast);
}

.header-btn:active {
  background: rgba(255, 255, 255, 0.1);
}

.header-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-logo svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-primary);
  stroke-width: 1.5;
  fill: none;
}

.header-logo span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

/* ============================================
   Video Container
   ============================================ */

#video-container {
  position: relative;
  flex: 1;
  width: 100%;
  background: var(--bg-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background: var(--bg-primary);
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-primary);
}

canvas {
  display: none;
}

/* ============================================
   Thumbnail Preview with Story Ring
   ============================================ */

#thumbnail-preview {
  position: fixed;
  bottom: 120px;
  right: var(--space-md);
  width: 68px;
  height: 68px;
  z-index: 60;
  display: none;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

#thumbnail-preview.show {
  display: block;
  animation: storyPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#thumbnail-preview:active {
  transform: scale(0.92);
}

.story-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  animation: storyRingRotate 8s linear infinite;
}

.story-ring svg {
  width: 100%;
  height: 100%;
}

.thumbnail-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--bg-tertiary);
}

.thumbnail-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-inner .timer-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-full);
  border: 3px solid transparent;
  border-top-color: var(--text-primary);
  animation: timerSpin 3s linear forwards;
}

@keyframes storyPopIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes storyRingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes timerSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   Bottom Controls
   ============================================ */

#controls {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md) calc(var(--space-lg) + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 50;
}

.controls-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.control-side {
  display: flex;
  gap: var(--space-md);
  width: 100%;
}

.control-side.left {
  justify-content: flex-start;
  margin-right: 0;
}

.control-side.right {
  justify-content: flex-end;
  margin-left: 0;
}

.control-spacer {
  width: 48px;
  height: 48px;
}

.gallery-trigger,
.filter-trigger {
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-trigger svg,
.filter-trigger svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-trigger:active,
.filter-trigger:active {
  transform: scale(0.92);
  background: rgba(255, 255, 255, 0.2);
}

/* Shutter Button */
.shutter-btn {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.shutter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: var(--text-primary);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.shutter-inner {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

.shutter-btn:active {
  transform: scale(0.92);
}

.shutter-btn:active::before {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.shutter-btn:active .shutter-inner {
  transform: scale(0.85);
  background: rgba(255, 255, 255, 0.8);
}

.shutter-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.shutter-btn:disabled::before {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

/* ============================================
   Preview Modal
   ============================================ */

#preview-fullscreen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 600;
  display: none;
  flex-direction: column;
  animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#preview-fullscreen.show {
  display: flex;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.preview-close-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
}

.preview-close-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.preview-actions-inline {
  display: flex;
  gap: var(--space-sm);
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:active {
  background: rgba(255, 255, 255, 0.1);
}

.icon-btn.danger {
  color: var(--accent-red);
}

.preview-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

.preview-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.preview-footer {
  background: var(--bg-elevated);
  padding: var(--space-md);
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.preview-caption {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.preview-caption svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.preview-caption span {
  font-size: 14px;
  color: var(--text-secondary);
}

.preview-actions {
  display: flex;
  justify-content: flex-end;
}

.send-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--accent-blue);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.send-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.send-btn:active {
  background: var(--accent-blue-hover);
}

/* ============================================
   Status Overlay
   ============================================ */

#status-overlay {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  background: rgba(30, 30, 30, 0.95);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  display: none;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

#status-overlay.show {
  display: block;
  animation: statusPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#status-overlay.error {
  background: rgba(237, 73, 86, 0.95);
}

@keyframes statusPop {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

/* ============================================
   Error Overlay
   ============================================ */

#error-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  z-index: 1000;
}

#error-overlay.show {
  display: flex;
  animation: errorFadeIn 0.3s ease;
}

@keyframes errorFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.error-content {
  text-align: center;
  max-width: 280px;
}

.error-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  background: rgba(237, 73, 86, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-red);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#error-overlay h2 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

#error-overlay p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.error-close-btn {
  padding: var(--space-md) var(--space-xl);
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.error-close-btn:active {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Settings Modal
   ============================================ */

#settings-overlay,
#filter-overlay,
#size-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 500;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#settings-overlay.show,
#filter-overlay.show,
#size-overlay.show {
  display: block;
  animation: settingsSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes settingsSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.settings-modal {
  max-width: 420px;
  margin: 0 auto;
  padding: env(safe-area-inset-top) var(--space-lg) calc(var(--space-xl) + env(safe-area-inset-bottom));
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-lg);
}

.settings-header h2 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
}

.close-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.close-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.close-btn:active {
  background: rgba(255, 255, 255, 0.2);
}

.settings-body {
  padding-bottom: var(--space-xl);
}

.settings-section {
  margin-bottom: var(--space-xl);
}

.settings-section h3 {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 var(--space-md) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Preset Grid */
.preset-grid,
.quality-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.preset-radio,
.quality-option {
  position: relative;
}

.preset-radio input,
.quality-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.preset-card,
.quality-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.preset-card:active,
.quality-card:active {
  transform: scale(0.97);
}

.preset-radio input:checked + .preset-card,
.quality-option input:checked + .quality-card {
  border-color: var(--accent-blue);
  background: rgba(0, 149, 246, 0.15);
}

.preset-icon,
.quality-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-sm);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

.preset-name,
.quality-name {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.preset-desc,
.quality-desc {
  color: var(--text-tertiary);
  font-size: 11px;
  line-height: 1.4;
}

/* Options List */
.options-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.option-item.hidden {
  display: none;
}

.option-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.option-item:active {
  background: var(--bg-secondary);
}

.option-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.option-item input[type="checkbox"]:checked ~ .option-toggle {
  background: var(--accent-blue);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast);
}

.option-item input[type="checkbox"]:checked ~ .option-toggle .toggle-slider {
  transform: translateX(20px);
}

.option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-name {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

.option-desc {
  color: var(--text-tertiary);
  font-size: 13px;
}

/* Filter Controls */
.filter-presets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.filter-chip {
  border: none;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-chip:active {
  transform: scale(0.96);
}

.filter-chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.filter-chip.active {
  background: rgba(0, 149, 246, 0.2);
  color: var(--text-primary);
  box-shadow: 0 0 0 1px rgba(0, 149, 246, 0.6);
}

.filter-chip.custom {
  opacity: 0.6;
  cursor: default;
}

.filter-chip.custom.active {
  opacity: 1;
}

.filter-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.filter-warning {
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(237, 73, 86, 0.12);
  color: var(--accent-red);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.filter-warning.hidden {
  display: none;
}

.filter-control {
  background: var(--bg-elevated);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
}

.filter-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-size: 13px;
  color: var(--text-secondary);
}

.filter-value {
  color: var(--text-primary);
  font-weight: 600;
}

.filter-control input[type="range"] {
  width: 100%;
  accent-color: var(--accent-blue);
}

.filter-control input[type="range"]:disabled {
  opacity: 0.45;
}

.btn-secondary {
  width: 100%;
  padding: var(--space-md);
  border: none;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-secondary:active {
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.filter-disabled {
  opacity: 0.75;
}

/* Camera Range Controls */
.range-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.range-control {
  background: var(--bg-elevated);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
}

.range-control.hidden {
  display: none;
}

.range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-size: 13px;
  color: var(--text-secondary);
}

.range-value {
  color: var(--text-primary);
  font-weight: 600;
}

.range-control input[type="range"] {
  width: 100%;
  accent-color: var(--accent-blue);
}

.range-note {
  margin-top: var(--space-sm);
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* ============================================
   Grid Overlay
   ============================================ */

#grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  display: none;
}

#grid-overlay.show {
  display: block;
}

#grid-overlay::before,
#grid-overlay::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
}

#grid-overlay::before {
  left: 33.33%;
  width: 1px;
  top: 0;
  bottom: 0;
}

#grid-overlay::after {
  left: 66.66%;
  width: 1px;
  top: 0;
  bottom: 0;
}

#grid-overlay .grid-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

#grid-overlay .grid-h:first-of-type {
  top: 33.33%;
}

#grid-overlay .grid-h:last-of-type {
  top: 66.66%;
}

/* ============================================
   Safe Area Support
   ============================================ */

@supports (padding: max(0px)) {
  .app-header {
    padding-top: max(var(--space-md), env(safe-area-inset-top));
  }

  #controls {
    padding-bottom: max(var(--space-xl), calc(var(--space-lg) + env(safe-area-inset-bottom)));
  }
}
