
    :root {
      --brand-green: #2C5E3B;
      --brand-green-light: #417D53;
      --brand-green-pale: #EBF2ED;
      --accent-terracotta: #D96B43;
      --accent-terracotta-dark: #C0562F;
      --accent-terracotta-pale: #FDF1EC;
      --off-white: #FDFBF7;
      --paper: #F3ECE0;
      --paper-dark: #E6DCCD;
      --charcoal: #242925;
      --muted-gray: #707A72;
      --border-color: #DFD7C9;
      --shadow: 0 12px 40px rgba(44, 94, 59, 0.15);
      --shadow-sm: 0 4px 12px rgba(44, 94, 59, 0.08);
      --font-fancy: 'Fraunces', Georgia, serif;
      --font-sans: 'Quicksand', system-ui, -apple-system, sans-serif;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 10px;
    }

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

    body {
      font-family: var(--font-sans);
      color: var(--charcoal);
      background-color: var(--paper);
      overflow: hidden;
      height: 100vh;
      width: 100vw;
    }

    /* Map Canvas */
    #map {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    /* Overlay Interfaces */
    .overlay-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none; /* Let clicks pass through to map */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .interactive {
      pointer-events: auto; /* Re-enable clicks for UI elements */
    }

    /* Floating Search Area Button */
    .btn-search-area {
      position: absolute;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--off-white);
      color: var(--brand-green);
      font-weight: 700;
      font-size: 0.9rem;
      padding: 10px 20px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 2px solid var(--brand-green);
      z-index: 15;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .btn-search-area:hover {
      background: var(--brand-green);
      color: var(--off-white);
      transform: translateX(-50%) translateY(-2px);
    }

    /* Brand Header floating cleanly in top-left with text halo protection */
    .top-brand-card {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 10;
      pointer-events: none; /* Clicks pass through brand letters straight to map */
    }

    @media (min-width: 768px) {
      .top-brand-card {
        left: 24px;
        top: 24px;
      }
    }

    .top-brand-text {
      font-family: var(--font-fancy);
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--brand-green);
      letter-spacing: -0.5px;
      /* Smooth high-contrast drop-shadow and white outline halo for perfect map-reading */
      text-shadow: 
        -2px -2px 0 var(--off-white),  
         2px -2px 0 var(--off-white),
        -2px  2px 0 var(--off-white),
         2px  2px 0 var(--off-white),
         0 4px 12px rgba(44, 94, 59, 0.2);
    }

    .top-brand-text span {
      color: var(--accent-terracotta);
    }

    /* Floating minimalist top-right settings cog trigger */
    .btn-top-settings {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 10;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--off-white);
      border: 2px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--brand-green);
      transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    @media (min-width: 768px) {
      .btn-top-settings {
        right: 24px;
        top: 24px;
      }
    }

    .btn-top-settings:hover {
      transform: rotate(45deg) scale(1.05);
      background: var(--brand-green-pale);
      border-color: var(--brand-green);
    }

    .btn-top-settings svg {
      width: 20px;
      height: 20px;
    }

    /* Bottom Console Command Area */
    .bottom-console-wrapper {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 480px;
      padding: 0 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 10;
      transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    }

    /* Hide console wrapper when bottom drawer is open on mobile */
    body.drawer-open .bottom-console-wrapper {
      transform: translateX(-50%) translateY(120%);
      opacity: 0;
      pointer-events: none;
    }

    @media (min-width: 768px) {
      /* Keep console static on desktop layouts */
      body.drawer-open .bottom-console-wrapper {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
    }

    /* Interactive Filters Panel directly above the search input */
    .filter-panel-expanded {
      background: var(--off-white);
      border: 2px solid var(--border-color);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow);
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Smooth transition handling: toggle overflow: visible on complete animation */
    .filter-panel-expanded.open {
      opacity: 1;
      max-height: 140px; /* Enhanced height allowance for scrollable items */
      visibility: visible;
      transform: translateY(0);
      overflow: visible; /* Let the hover transform pop up over the boundaries cleanly */
    }

    .filter-panel-title {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--brand-green);
    }

    /* Filter chips styled with brand aesthetics */
    .filter-chips {
      display: flex;
      gap: 6px;
      overflow-x: auto;
      padding: 8px 4px; /* Internal vertical padding provides breathing room for scaled hovers */
      margin: -8px -4px; /* Pull margin back slightly to preserve structural layout tight fit */
      scrollbar-width: none;
    }

    .filter-chips::-webkit-scrollbar {
      display: none;
    }

    .chip {
      background: var(--paper);
      border: 1px solid var(--border-color);
      color: var(--charcoal);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .chip:hover {
      transform: translateY(-2px) scale(1.03); /* Clean scale */
      border-color: var(--brand-green-light);
      box-shadow: 0 4px 12px rgba(44, 94, 59, 0.1);
    }

    .chip.active {
      background: var(--brand-green);
      border-color: var(--brand-green);
      color: var(--off-white);
    }

    /* Bottom Centered Search Bar structure - Re-designed to be a single, clean pill wrapper */
    .bottom-search-card {
      background: var(--off-white);
      border: 2px solid var(--border-color);
      border-radius: 9999px; /* Pill Shape */
      box-shadow: var(--shadow);
      padding: 6px 6px 6px 16px; /* Snug on the right for the circle button */
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .search-input-field {
      display: flex;
      flex: 1;
      align-items: center;
      gap: 8px;
    }

    .search-input-field input {
      background: transparent;
      border: none;
      outline: none;
      width: 100%;
      font-family: var(--font-sans);
      font-size: 0.95rem;
      color: var(--charcoal);
    }

    .search-input-field svg {
      color: var(--muted-gray);
      flex-shrink: 0;
    }

    /* Filter Toggle Button inside search layout - Modified to circle with only SVG icon */
    .btn-filter-toggle {
      width: 40px;
      height: 40px;
      background: var(--brand-green-pale);
      color: var(--brand-green);
      border: 1px solid var(--border-color);
      border-radius: 50%; /* Circle shape */
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .btn-filter-toggle:hover {
      background: var(--brand-green);
      color: var(--off-white);
      border-color: var(--brand-green);
    }

    .btn-filter-toggle.active {
      background: var(--brand-green);
      color: var(--off-white);
      border-color: var(--brand-green);
    }

    /* Floating Action Buttons (FAB) layout updates */
    .fab-container {
      position: absolute;
      bottom: 84px; /* Lifted to stay clean of bottom search console */
      right: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 3;
      transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Shift FABs out of visual lock when drawer opens on mobile */
    body.drawer-open .fab-container {
      transform: translateY(120%);
    }

    @media (min-width: 768px) {
      .fab-container {
        right: 24px;
        bottom: 24px; /* Static desktop bottom positioning */
      }
      body.drawer-open .fab-container {
        transform: translateY(0);
      }
    }

    .btn-fab {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--brand-green);
      color: var(--off-white);
      border: 2px solid var(--off-white);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-fab:hover {
      transform: translateY(-2px);
      background: var(--brand-green-light);
    }

    .btn-fab.accent {
      background: var(--accent-terracotta);
    }

    .btn-fab.accent:hover {
      background: var(--accent-terracotta-dark);
    }

    .btn-fab svg {
      width: 24px;
      height: 24px;
    }

    .btn-fab.loading svg {
      animation: pulseSearch 0.8s ease-in-out infinite alternate;
      color: var(--brand-green-pale);
    }

    @keyframes pulseSearch {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(0.7); opacity: 0.4; }
    }

    /* Custom Map Markers styles (Optimized: Smaller Pins & Selected Highlights) */
    .market-marker {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      filter: drop-shadow(0 4px 8px rgba(44, 94, 59, 0.2));
      transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0.2s;
    }

    .market-marker:hover {
      transform: scale(1.15) translateY(-2px);
      z-index: 10;
    }

    /* Highlighted Selected Pin look and size updates */
    .market-marker.selected {
      z-index: 100;
    }

    .marker-pin {
      width: 30px; /* Reduced from 38px */
      height: 30px; /* Reduced from 38px */
      background: var(--accent-terracotta);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--off-white); /* Thinned slightly for scale */
      transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .marker-pin-inner {
      width: 10px; /* Reduced from 14px */
      height: 10px; /* Reduced from 14px */
      background: var(--brand-green-pale);
      border-radius: 50%;
      transform: rotate(45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
    }

    .marker-pin.claimed {
      background: var(--brand-green);
    }

    .marker-pin.claimed .marker-pin-inner {
      background: var(--accent-terracotta);
    }

    /* Selected Map Pin Glamour State styles */
    .market-marker.selected .marker-pin {
      background: var(--brand-green) !important;
      border-color: var(--accent-terracotta) !important;
      transform: rotate(-45deg) scale(1.3);
      box-shadow: 
        0 0 0 6px rgba(44, 94, 59, 0.25), 
        0 8px 24px rgba(44, 94, 59, 0.4);
    }

    .market-marker.selected .marker-pin-inner {
      background: var(--off-white) !important;
    }

    /* UI Panels - Frameless Details Drawer (Removed Green Stripe Border & Added Soft Drop Shadow) */
    .drawer {
      background: var(--off-white);
      border-top: 1px solid var(--border-color); /* Elegant, clean separator instead of thick green stripe */
      border-top-left-radius: var(--radius-lg);
      border-top-right-radius: var(--radius-lg);
      box-shadow: 0 -12px 40px rgba(44, 94, 59, 0.1); /* Super organic soft depth shadows */
      width: 100%;
      height: 100%; /* Cover whole screen on mobile */
      max-height: 100%;
      overflow-y: auto;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.25, 1, 0.25, 1);
      display: flex;
      flex-direction: column;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 20; /* Higher than search bar */
    }

    .drawer.open {
      transform: translateY(0);
    }

    .drawer-header {
      padding: 16px 20px 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      background: var(--off-white);
      z-index: 2;
    }

    .drawer-handle {
      width: 40px;
      height: 5px;
      background: var(--border-color);
      border-radius: 10px;
      margin: 8px auto 0 auto;
    }

    .drawer-close {
      background: var(--paper);
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--charcoal);
    }

    .drawer-body {
      padding: 0 20px 30px 20px;
      overflow-y: auto;
    }

    /* Desktop Adjustments for Frameless Side Drawer */
    @media (min-width: 768px) {
      .drawer {
        width: 380px;
        height: calc(100% - 140px);
        max-height: 100%;
        bottom: 20px;
        left: 20px;
        border-radius: var(--radius-md);
        border: 2px solid var(--border-color); /* Rounded framed card */
        box-shadow: var(--shadow); /* Soft floating card shadow */
        transform: translateX(-120%);
      }

      .drawer.open {
        transform: translateX(0);
      }
      
      .drawer-handle {
        display: none;
      }
    }

    /* Form and general layout variables */
    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--brand-green);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-control {
      width: 100%;
      background: var(--paper-dark);
      border: 2px solid transparent;
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-family: var(--font-sans);
      font-size: 0.95rem;
      color: var(--charcoal);
      outline: none;
      transition: border-color 0.2s ease;
    }

    .form-control:focus {
      border-color: var(--brand-green);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 80px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .category-checkbox {
      display: none;
    }

    .category-label {
      background: var(--paper);
      border: 1px solid var(--border-color);
      padding: 10px;
      border-radius: var(--radius-sm);
      font-size: 0.85rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }

    .category-checkbox:checked + .category-label {
      background: var(--brand-green-pale);
      border-color: var(--brand-green);
      color: var(--brand-green);
    }

    /* Interactive Buttons layout definitions */
    .btn {
      width: 100%;
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      font-family: var(--font-sans);
      font-size: 0.95rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s;
    }

    .btn-primary {
      background: var(--brand-green);
      color: var(--off-white);
    }

    .btn-primary:hover {
      background: var(--brand-green-light);
    }

    .btn-secondary {
      background: var(--paper-dark);
      color: var(--charcoal);
    }

    .btn-secondary:hover {
      background: var(--border-color);
    }

    .btn-accent {
      background: var(--accent-terracotta);
      color: var(--off-white);
    }

    .btn-accent:hover {
      background: var(--accent-terracotta-dark);
    }

    .stand-details-title {
      font-family: var(--font-fancy);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--brand-green);
      margin-bottom: 4px;
    }

    .tag-container {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 12px 0;
    }

    .tag-pill {
      background: var(--brand-green-pale);
      color: var(--brand-green);
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: capitalize;
    }

    .stand-section {
      border-top: 1px solid var(--border-color);
      padding: 14px 0;
    }

    .stand-section-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--muted-gray);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .claimed-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: var(--brand-green-pale);
      color: var(--brand-green);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 4px;
      border: 1px solid var(--brand-green);
    }

    .unclaimed-prompt {
      display: none !important; /* Hidden until account system is built */
      background: var(--accent-terracotta-pale);
      border: 1px dashed var(--accent-terracotta);
      border-radius: var(--radius-sm);
      padding: 12px;
      margin-top: 16px;
      flex-direction: column;
      gap: 8px;
    }

    .unclaimed-prompt p {
      font-size: 0.85rem;
      line-height: 1.35;
    }

    /* Custom Toast notification layout setup */
    .toast-container {
      position: absolute;
      top: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(-100px);
      z-index: 10000;
      pointer-events: none;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .toast-container.active {
      transform: translateX(-50%) translateY(0);
    }

    .toast {
      background: var(--charcoal);
      color: var(--off-white);
      padding: 12px 24px;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 8px;
      border: 2px solid var(--brand-green-light);
    }

    /* Settings dialog configuration structure */
    .modal-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(36, 41, 37, 0.6);
      backdrop-filter: blur(4px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-card {
      background: var(--off-white);
      border: 2px solid var(--border-color);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow);
      max-width: 400px;
      width: 100%;
      padding: 24px;
      position: relative;
    }

    /* Add Stand Crosshair pointer track indicator */
    .crosshair-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      pointer-events: none;
      display: none;
      flex-direction: column;
      align-items: center;
    }

    .crosshair-pin {
      width: 44px;
      height: 44px;
      background: var(--accent-terracotta);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg) translateY(-10px);
      border: 3px solid var(--off-white);
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .crosshair-dot {
      width: 12px;
      height: 12px;
      background: var(--off-white);
      border-radius: 50%;
    }

    .crosshair-label {
      background: var(--charcoal);
      color: var(--off-white);
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      font-size: 0.8rem;
      font-weight: 600;
      margin-top: 12px;
      white-space: nowrap;
      box-shadow: var(--shadow-sm);
    }

    /* Interactive Schedule Row controls */
    .schedule-row {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .btn-remove-row {
      background: var(--paper);
      border: 1px solid var(--border-color);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--charcoal);
      flex-shrink: 0;
      transition: all 0.2s;
    }

    .btn-remove-row:hover {
      background: var(--accent-terracotta-pale);
      border-color: var(--accent-terracotta);
      color: var(--accent-terracotta);
    }

    /* Legal Links Footer inside Settings Modal */
    .legal-footer {
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px solid var(--border-color);
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    .legal-link {
      font-size: 0.75rem;
      color: var(--muted-gray);
      text-decoration: underline;
      cursor: pointer;
      transition: color 0.2s;
    }

    .legal-link:hover {
      color: var(--brand-green);
    }
  /* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--loading-bg, #E6D5BB);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Dancing Aurora Blobs */
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.65;
  mix-blend-mode: multiply; /* Helps colors blend beautifully */
}

.blob-1 {
  width: 160px;
  height: 160px;
  background: var(--brand-green);
  animation: danceBlob1 8s infinite cubic-bezier(0.4, 0, 0.2, 1) alternate;
}

.blob-2 {
  width: 140px;
  height: 140px;
  background: var(--accent-terracotta);
  animation: danceBlob2 9s infinite cubic-bezier(0.4, 0, 0.2, 1) alternate;
}

.blob-3 {
  width: 180px;
  height: 180px;
  background: var(--brand-green-light);
  animation: danceBlob3 10s infinite cubic-bezier(0.4, 0, 0.2, 1) alternate;
}

@keyframes danceBlob1 {
  0% { transform: translate(-30%, -30%) scale(1); }
  50% { transform: translate(40%, -10%) scale(1.2) rotate(45deg); }
  100% { transform: translate(10%, 40%) scale(0.9); }
}

@keyframes danceBlob2 {
  0% { transform: translate(40%, 20%) scale(0.9); }
  50% { transform: translate(-20%, 40%) scale(1.1) rotate(-45deg); }
  100% { transform: translate(-40%, -20%) scale(1.3); }
}

@keyframes danceBlob3 {
  0% { transform: translate(0%, -40%) scale(1.2); }
  50% { transform: translate(30%, 30%) scale(0.8); }
  100% { transform: translate(-30%, 0%) scale(1.1) rotate(90deg); }
}

.loading-logo {
  width: 320px;
  height: auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 4px 12px rgba(44, 94, 59, 0.2));
  position: relative;
  z-index: 2;
}

.loading-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.loading-dots div {
  width: 16px;
  height: 16px;
  background-color: var(--brand-green);
  border-radius: 50%;
  animation: bounce 0.5s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5);
}

.loading-dots div:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dots div:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}
