/* ==========================================================================
   HF DRIVE INDEX - Modern Glassmorphism Stylesheet
   Compatible with Cloudflare Pages & Hugging Face Buckets
   Inspired by Google Drive Index / Drive UCUP
   ========================================================================== */

:root {
  --bg-dark: #0a0e1a;
  --bg-surface: rgba(17, 24, 39, 0.85);
  --glass-bg: rgba(15, 23, 42, 0.78);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.04);
  
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.3);
  
  --accent: #818cf8;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #fbbf24;
  --info: #06b6d4;
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --row-hover: rgba(59, 130, 246, 0.07);
  --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="light"] {
  --bg-dark: #f8fafc;
  --bg-surface: rgba(255, 255, 255, 0.9);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-hover: rgba(0, 0, 0, 0.03);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --border-subtle: rgba(0, 0, 0, 0.06);
  --row-hover: rgba(59, 130, 246, 0.06);
  --card-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark) !important;
  color: var(--text-primary) !important;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.font-outfit {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

/* ==========================================================================
   Animated Background (Ambient Mesh Orbs)
   ========================================================================== */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-dark);
  will-change: transform;
  contain: strict;
  pointer-events: none;
}

.color-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
  animation: floatOrb 25s infinite alternate ease-in-out;
  will-change: transform;
  transform: translateZ(0);
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: #3b82f6;
  top: -15%;
  left: -10%;
}

.orb-2 {
  width: 620px;
  height: 620px;
  background: #7c3aed;
  bottom: -25%;
  right: -15%;
  animation-delay: -7s;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: #06b6d4;
  top: 45%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(45px, -55px) scale(1.06); }
  66% { transform: translate(-35px, 35px) scale(0.94); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .color-orb {
    animation: none;
  }
}

/* ==========================================================================
   Glassmorphic UI Components
   ========================================================================== */
.glass-card {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--glass-border) !important;
  border-radius: 16px;
  color: var(--text-primary);
  box-shadow: var(--card-shadow);
  contain: layout style;
}

/* ==========================================================================
   LOGIN VIEW
   ========================================================================== */
.login-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 10;
  padding: 1.5rem;
}

.login-card {
  width: 100%;
  max-width: 440px;
  padding: 2.75rem 2.25rem;
  text-align: center;
  animation: slideUpModal 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.login-icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-icon-wrapper i {
  font-size: 2.25rem;
  color: var(--primary);
  filter: drop-shadow(0 0 12px var(--primary-glow));
}

.login-card .input-group-text {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-right: none !important;
  color: var(--text-muted);
}

.login-card .form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: none !important;
  color: var(--text-primary) !important;
  box-shadow: none !important;
}

.login-card .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px var(--primary-glow) !important;
}

.login-submit-btn {
  height: 46px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--primary) !important;
  border: none !important;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-submit-btn:hover {
  background: var(--primary-hover) !important;
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(-1px);
}

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

/* ==========================================================================
   DASHBOARD VIEW & NAVBAR
   ========================================================================== */
.dashboard-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.glass-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85) !important;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
  will-change: transform;
  transform: translateZ(0);
}

[data-bs-theme="light"] .glass-navbar {
  background: rgba(255, 255, 255, 0.88) !important;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary) !important;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.navbar-brand-custom:hover {
  opacity: 0.85;
}

.brand-icon {
  color: var(--primary);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--primary);
}

.status-badge.public {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
  color: var(--success);
}

.btn-nav-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.btn-nav-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-logout {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--danger);
  transition: all 0.2s;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ff7676;
}

/* ==========================================================================
   MAIN CONTAINER & BROWSER
   ========================================================================== */
.main-container {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 86px;
  padding-bottom: 2rem;
  flex: 1;
}

.file-browser {
  border-radius: 16px;
  overflow: hidden;
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
  content: "/";
  padding: 0 10px;
}

.breadcrumb-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--text-primary);
}

.breadcrumb-item.active {
  color: var(--text-primary);
  font-weight: 600;
}

/* Toolbar */
.toolbar-section {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.012);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.search-wrapper {
  position: relative;
  max-width: 320px;
  width: 100%;
}

.search-wrapper .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 8px 14px 8px 40px;
  height: 40px;
  font-size: 0.875rem;
  font-family: inherit;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.toolbar-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bulk-btn {
  height: 40px;
  font-size: 0.85rem;
  border-radius: 10px;
  font-weight: 600;
  padding: 0 16px;
  white-space: nowrap;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bulk-btn-copy {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #22c55e;
}

.bulk-btn-copy:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.25);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.bulk-btn-download {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
}

.bulk-btn-download:hover:not(:disabled) {
  background: rgba(59, 130, 246, 0.28);
  box-shadow: 0 4px 16px var(--primary-glow);
  color: #93c5fd;
}

.bulk-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.view-toggle-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.view-toggle-btn:hover, .view-toggle-btn.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.35);
  color: var(--primary);
}

/* ==========================================================================
   FILE TABLE (LIST VIEW)
   ========================================================================== */
.table-wrapper {
  overflow-x: auto;
}

.file-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-primary);
}

.file-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.file-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(17, 24, 39, 0.95);
  white-space: nowrap;
  user-select: none;
}

[data-bs-theme="light"] .file-table th {
  background: rgba(241, 245, 249, 0.95);
}

.file-table th.sortable {
  cursor: pointer;
}

.file-table th.sortable:hover {
  color: var(--text-primary);
}

.file-table td {
  padding: 13px 16px;
  vertical-align: middle;
  font-size: 0.885rem;
  border-bottom: 1px solid var(--border-subtle);
}

.file-table tbody tr:last-child td {
  border-bottom: none;
}

.file-table tbody tr {
  transition: background 0.15s ease;
  contain: layout style;
}

.file-table tbody tr:hover {
  background: var(--row-hover);
}

.col-check {
  width: 48px;
  text-align: center;
  padding-left: 20px !important;
}

.col-name {
  width: auto;
}

.col-modified {
  width: 180px;
}

.col-size {
  width: 110px;
}

.col-actions {
  width: 130px;
  text-align: right;
  padding-right: 20px !important;
}

.form-check-input {
  cursor: pointer;
  width: 18px;
  height: 18px;
  background-color: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 4px;
}

[data-bs-theme="light"] .form-check-input {
  border-color: rgba(0, 0, 0, 0.25) !important;
}

.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.form-check-input:focus {
  box-shadow: none !important;
}

/* ==========================================================================
   GRID VIEW
   ========================================================================== */
.grid-wrapper {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.grid-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.grid-card:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.grid-card .grid-checkbox {
  position: absolute;
  top: 10px;
  left: 10px;
}

.grid-card .grid-icon {
  font-size: 2.8rem;
  margin-top: 8px;
  margin-bottom: 12px;
  transition: transform 0.2s;
}

.grid-card:hover .grid-icon {
  transform: scale(1.08);
}

.grid-card .grid-name {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-primary);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.grid-card .grid-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.grid-card .grid-actions {
  margin-top: 10px;
  display: flex;
  gap: 4px;
}

/* ==========================================================================
   File Icons & Styling
   ========================================================================== */
.file-icon {
  font-size: 1.25rem;
  margin-right: 12px;
  vertical-align: middle;
}

.folder-icon {
  color: #fbbf24;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.35));
}

.file-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.15s;
}

.file-link:hover {
  color: var(--primary);
}

.file-name-text {
  color: var(--text-primary);
}

/* Action Buttons */
.action-btn-group {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.action-btn-group .btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.action-btn-group .btn:hover {
  transform: translateY(-1px);
}

.btn-glass {
  background: transparent;
  border: 1px solid transparent;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border);
}

/* Stats Footer */
.stats-footer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

/* ==========================================================================
   MODALS (Video, Audio, Image, Code, PDF)
   ========================================================================== */
.modal-content.glass-card {
  border: 1px solid var(--glass-border) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.modal-header-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title-custom {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Video Player Modal */
.video-player-container {
  background: #000;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#videoPlayer {
  width: 100%;
  max-height: 75vh;
  outline: none;
}

.external-player-toolbar {
  background: rgba(15, 23, 42, 0.95);
  padding: 16px 20px;
  border-top: 1px solid var(--border-subtle);
}

/* Audio Player Modal */
.audio-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.12) 0%, rgba(15, 23, 42, 0.9) 70%);
}

.audio-disc {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 3px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 25px var(--primary-glow);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateDisc 20s linear infinite;
  animation-play-state: paused;
}

.audio-disc.playing {
  animation-play-state: running;
}

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

.audio-disc i {
  font-size: 2.5rem;
  color: var(--primary);
}

#audioPlayer {
  width: 100%;
  max-width: 480px;
  margin: 1.5rem auto 0;
}

/* Image Lightbox Modal */
.image-lightbox-body {
  background: #050811;
  min-height: 60vh;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

#lightboxImage {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.25s ease;
  user-select: none;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.lightbox-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-toolbar {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 6px 14px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

/* Code & Markdown Viewer */
.code-viewer-body {
  max-height: 70vh;
  overflow-y: auto;
  padding: 1.5rem;
  background: #0d1117;
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.6;
}

.markdown-body-custom {
  max-height: 72vh;
  overflow-y: auto;
  padding: 2rem;
  line-height: 1.7;
}

.markdown-body-custom h1,
.markdown-body-custom h2,
.markdown-body-custom h3 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.markdown-body-custom table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
}

.markdown-body-custom th,
.markdown-body-custom td {
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
}

.markdown-body-custom pre {
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container-custom {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.glass-toast {
  background: rgba(15, 23, 42, 0.9) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
  color: #fff !important;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: slideInToast 0.3s ease;
}

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

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
  .main-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .toolbar-section {
    padding: 12px 16px;
  }
  
  .breadcrumb-section {
    padding: 12px 16px;
  }
  
  .search-wrapper {
    max-width: 100%;
  }
  
  .toolbar-controls {
    width: 100%;
    justify-content: space-between;
  }
  
  .file-table th,
  .file-table td {
    padding: 10px 12px;
  }
  
  .col-modified {
    display: none;
  }
  
  .color-orb {
    filter: blur(65px);
    opacity: 0.16;
    animation-play-state: paused;
  }
  
  .orb-3 {
    display: none;
  }
  
  .glass-card {
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
  }
}
