/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #7aff83;
  --red: #ff7aa8;
  --amber: #ffd36d;
  --bg: #070311;
  --surface: #140924;
  --surface-2: #32195f;
  --text: #fff7ff;
  --muted: #d0c2eb;
  --accent: #ff4fd8;
  --accent-2: #3df6ff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --flicker-duration: 5s;
  --flicker-duration-fast: 4.5s;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(circle at top, rgba(61, 246, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom, rgba(255, 79, 216, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(19, 9, 39, 0.98), rgba(7, 3, 17, 1));
}

/* ---- Accessibility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-bottom: 1px solid var(--surface-2);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent);
}

.tagline {
  margin-top: 0.75rem;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tagline strong {
  color: var(--green);
}

/* ---- Main ---- */
main {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ---- Search ---- */
.search-section {
  margin-bottom: 2rem;
}

.search-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.search-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.search-field input {
  padding: 0.85rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-field input:focus {
  border-color: var(--accent);
}

/* Legacy single input kept for back-compat selectors */
#location-input:focus {
  border-color: var(--accent);
}

.search-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
}

#search-btn {
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

#search-btn:hover:not(:disabled) {
  opacity: 0.88;
}

#search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.search-hint {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.search-hint a,
.owner-sms-copy a,
.owner-sms-note a {
  color: var(--accent);
}

/* ---- Results refine bar ---- */
.results-refine {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.refine-label {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.refine-input {
  flex: 1;
  min-width: 160px;
  max-width: 320px;
  padding: 0.45rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.refine-input:focus {
  border-color: var(--accent);
}

.owner-sms-page {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.owner-sms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.owner-sms-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.owner-sms-card h2 {
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.owner-sms-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.owner-sms-form label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.owner-sms-form input,
.owner-sms-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  font: inherit;
}

.owner-sms-form input:focus,
.owner-sms-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.owner-sms-btn {
  padding: 0.85rem 1rem;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.owner-sms-btn-secondary {
  background: var(--surface-2);
}

.owner-sms-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(34, 197, 94, 0.12);
  color: var(--text);
  min-height: 3rem;
}

.owner-sms-status-error {
  background: rgba(239, 68, 68, 0.14);
}

.owner-sms-copy,
.owner-sms-note {
  color: var(--muted);
  line-height: 1.5;
}

.owner-sms-card code {
  display: block;
  margin: 0.5rem 0;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: var(--radius);
  overflow-wrap: anywhere;
}

.owner-sms-command-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  line-height: 1.7;
}

/* ---- Ad Modal ---- */
.ad-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.ad-modal.hidden {
  display: none !important;
}

.ad-modal-box {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.ad-modal-box h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

.ad-modal-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.ad-display {
  background: linear-gradient(135deg, #1a2a3a 0%, #0f1e2d 100%);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.ad-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.ad-logo {
  font-size: 2.5rem;
  line-height: 1;
}

.ad-tagline {
  font-size: 1rem;
  color: var(--text);
}

.ad-body {
  font-size: 0.85rem;
  color: var(--muted);
}

.ad-cta {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.ad-progress-wrap {
  margin-top: 1rem;
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
}

.ad-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.1s linear;
  width: 0%;
}

.ad-countdown {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.ad-continue-btn {
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

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

.ad-continue-btn:hover:not(:disabled) {
  opacity: 0.88;
}

.ad-cancel-btn {
  background: transparent;
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.ad-cancel-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---- Results header ---- */
.results-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.results-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.results-meta {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---- Filter bar ---- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--surface-2);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---- Venue cards ---- */
.venue-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.venue-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}

.venue-card:hover {
  border-color: var(--accent);
}

.venue-card.serving {
  border-left: 4px solid var(--green);
}

.venue-card.not-serving {
  border-left: 4px solid var(--red);
}

.venue-card.unknown {
  border-left: 4px solid var(--amber);
}

.venue-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.venue-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.venue-name:hover {
  color: var(--accent);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-badge.serving {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.status-badge.not-serving {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.status-badge.unknown {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
}

.venue-desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.venue-hours {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.venue-hours strong {
  color: var(--text);
}

.venue-url {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.venue-url a {
  color: var(--accent);
  text-decoration: none;
}

.venue-url a:hover {
  text-decoration: underline;
}

/* ---- Hour blocks table ---- */
.hours-table {
  margin-top: 0.75rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.hours-table th {
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  padding: 0.2rem 0.5rem 0.2rem 0;
  border-bottom: 1px solid var(--surface-2);
}

.hours-table td {
  padding: 0.2rem 0.5rem 0.2rem 0;
  color: var(--text);
}

.hours-detail summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  list-style: none;
}

.hours-detail summary::before {
  content: '▸ ';
}

.hours-detail[open] summary::before {
  content: '▾ ';
}

/* ---- Loading ---- */
.loading {
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--surface-2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Error ---- */
.error-section {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--red);
}

/* ---- Footer ---- */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--surface-2);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ---- Utility ---- */
.hidden {
  display: none !important;
}

/* ---- Noscript ---- */
.noscript-notice {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  color: var(--amber);
  font-size: 0.9rem;
  padding: 0.85rem 1.25rem;
  text-align: center;
}

/* ---- FAQ Section ---- */
.faq-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid var(--surface-2);
}

.faq-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: '▸ ';
  color: var(--accent);
}

.faq-item[open] summary::before {
  content: '▾ ';
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Search Ads ---- */
.search-ad {
  margin: 1.25rem 0;
  text-align: center;
  min-height: 90px; /* reserve space so layout doesn't shift once ad loads */
}

.search-ad-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

/* ---- Site Navigation ---- */
.site-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--surface-2);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav-brand {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  padding: 1rem 0;
  white-space: nowrap;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.site-nav-links a:hover {
  color: var(--text);
  background: var(--surface-2);
}

.site-nav-cta {
  padding: 0.55rem 1.25rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.2s !important;
  white-space: nowrap;
}

.site-nav-cta:hover {
  opacity: 0.88;
  background: var(--accent) !important;
  color: #fff !important;
}

/* ---- Blog/Homepage hero ---- */
.home-hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-bottom: 1px solid var(--surface-2);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.home-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.home-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.home-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.home-hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ---- Blog feed (homepage) ---- */
.blog-feed {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.blog-feed-heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.blog-card-emoji {
  font-size: 2.2rem;
  line-height: 1;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.blog-card-tag {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- Homepage banner ad ---- */
.homepage-ad {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  text-align: center;
}

.homepage-ad-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

/* ---- Homepage search CTA strip ---- */
.search-cta-strip {
  background: linear-gradient(135deg, #1e2f1e 0%, #0f1f0f 100%);
  border-top: 1px solid rgba(34, 197, 94, 0.25);
  border-bottom: 1px solid rgba(34, 197, 94, 0.25);
  padding: 3rem 1.5rem;
  text-align: center;
}

.search-cta-strip h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.search-cta-strip p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.search-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--green);
  color: #0f172a;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.search-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ---- Article page layout ---- */
.article-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--surface-2);
  padding-bottom: 1.5rem;
}

.article-breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.article-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  text-decoration: underline;
}

.article-tag {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.article-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.article-byline {
  font-size: 0.85rem;
  color: var(--muted);
}

.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}

.article-body p {
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.25rem 1.5rem;
  color: #cbd5e1;
}

.article-body li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
  font-style: italic;
}

.article-ad {
  margin: 2rem 0;
  text-align: center;
}

.article-ad-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.article-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--surface-2);
}

.article-related h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.article-related-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.article-related-card:hover {
  border-color: var(--accent);
}

.article-related-card span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.article-related-card small {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ---- About / Static page layout ---- */
.static-page {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.static-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-2);
  padding-bottom: 1rem;
}

.static-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.6rem;
}

.static-page p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 0.975rem;
}

.static-page ul,
.static-page ol {
  margin: 0 0 1.1rem 1.5rem;
  color: #cbd5e1;
  font-size: 0.975rem;
}

.static-page li {
  margin-bottom: 0.35rem;
  line-height: 1.7;
}

.static-page a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* ---- Contact card ---- */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.contact-card p {
  margin-bottom: 0.4rem;
}

/* ---- 24-Hour Establishments separator ---- */
.chain-separator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.chain-separator::before,
.chain-separator::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--border, #e5e7eb);
}

/* ---- Confidence indicators ---- */
.venue-confidence {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.confidence-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.venue-confidence-warning {
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- User-report feedback widget ---- */
.venue-feedback {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--surface-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.venue-feedback-label {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.feedback-btn {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--surface-2);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.feedback-btn:hover {
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
}

.feedback-btn.feedback-yes:hover {
  border-color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}

.feedback-btn.feedback-no:hover {
  border-color: var(--red);
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.venue-feedback-thanks {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}

.report-tally {
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: auto;
}

/* ---- Affiliate links ---- */
.venue-affiliates {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.affiliate-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  background: var(--surface-2);
  border: 1px solid var(--surface-2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.affiliate-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.affiliate-link.doordash:hover {
  background: #ff3008;
  border-color: #ff3008;
}

.affiliate-link.ubereats:hover {
  background: #06c167;
  border-color: #06c167;
}

.affiliate-link.resy:hover {
  background: #c41200;
  border-color: #c41200;
}

/* ---- Contact link ---- */
.venue-contact {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.venue-contact a {
  color: var(--accent);
  text-decoration: none;
}

.venue-contact a:hover {
  text-decoration: underline;
}

/* ---- Editorial intro (search page) ---- */
.editorial-intro {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  line-height: 1.7;
}

.editorial-intro h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.editorial-intro p {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.editorial-intro p:last-child {
  margin-bottom: 0;
}

/* ---- Results tips sidebar ---- */
.results-tips {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, rgba(34, 197, 94, 0.04) 100%);
  border: 1px solid var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.results-tips h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.results-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.results-tips li {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
}

.results-tips li:last-child {
  margin-bottom: 0;
}

.results-tips li strong {
  color: var(--text);
}

/* ---- How It Works section ---- */
.how-it-works-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  border-top: 1px solid var(--surface-2);
}

.how-it-works-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.how-it-works-step {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.how-it-works-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.how-it-works-step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Related Articles section ---- */
.related-articles-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid var(--surface-2);
}

.related-articles-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.related-articles-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.related-article-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.15s, transform 0.1s;
}

.related-article-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.related-article-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.related-article-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.related-article-excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

@keyframes neonFlicker {
  0%, 18%, 22%, 53%, 57%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  20%, 55% {
    opacity: 0.82;
    filter: brightness(1.25);
  }
  56% {
    opacity: 0.92;
    filter: brightness(0.9);
  }
}

@keyframes glowFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes dispenseDrop {
  0% {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.machine-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 0;
}

.vending-machine {
  position: relative;
  margin: 0 auto 2rem;
  padding: clamp(1rem, 2vw, 2rem);
  border-radius: 32px;
  border: 2px solid rgba(61, 246, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(29, 13, 50, 0.98), rgba(10, 4, 22, 0.98));
  box-shadow:
    0 0 0 2px rgba(255, 79, 216, 0.12) inset,
    0 0 45px rgba(61, 246, 255, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.vending-machine::before,
.vending-machine::after {
  content: '';
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(61, 246, 255, 0.8), rgba(255, 79, 216, 0.5));
  box-shadow: 0 0 18px rgba(61, 246, 255, 0.35);
}

.vending-machine::before {
  left: 0.85rem;
}

.vending-machine::after {
  right: 0.85rem;
}

.machine-topper,
.machine-kicker,
.site-nav-brand,
.search-cta-btn,
#search-btn {
  text-shadow:
    0 0 8px rgba(255, 79, 216, 0.38),
    0 0 16px rgba(61, 246, 255, 0.18);
}

.home-hero h1,
.hero h1 {
  text-shadow:
    0 0 10px rgba(255, 79, 216, 0.26),
    0 0 20px rgba(61, 246, 255, 0.12);
}

.machine-topper {
  position: relative;
  margin: 0 auto 1rem;
  max-width: 420px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 246, 255, 0.4);
  background: rgba(15, 7, 29, 0.88);
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  animation: neonFlicker var(--flicker-duration) infinite;
  will-change: opacity, filter;
}

.machine-kicker {
  margin-bottom: 0.8rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-header {
  margin-bottom: 1.5rem;
}

.panel-copy {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.6;
}

.site-nav {
  background: rgba(17, 7, 32, 0.88);
  border-bottom: 1px solid rgba(61, 246, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.site-nav-links a {
  color: #efe7ff;
}

.sound-toggle {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 246, 255, 0.22);
  background: rgba(61, 246, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.sound-toggle[aria-pressed='false'] {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.site-nav-links a:hover {
  color: var(--text);
  background: rgba(61, 246, 255, 0.12);
}

.site-nav-cta,
.home-hero-cta,
.search-cta-btn,
#search-btn,
.ad-continue-btn,
.owner-sms-btn {
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.34);
}

.hero,
.home-hero {
  background:
    radial-gradient(circle at top, rgba(61, 246, 255, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(27, 12, 48, 0.92), rgba(12, 5, 25, 0.92));
  border: 1px solid rgba(61, 246, 255, 0.14);
  border-radius: 26px;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 0 24px rgba(61, 246, 255, 0.05);
}

.hero h1,
.home-hero h1 {
  color: #fff3fd;
}

.tagline,
.home-hero p,
.editorial-intro p,
.related-articles-desc,
.search-cta-strip p,
.results-tips li,
.article-body p,
.static-page p,
.static-page li {
  color: var(--muted);
}

.machine-copy,
.machine-console,
.dispenser-results,
.results-tips,
.faq-item,
.how-it-works-step,
.related-article-card,
.article-related-card,
.contact-card,
.owner-sms-card,
.editorial-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    rgba(20, 9, 36, 0.94);
  border-color: rgba(61, 246, 255, 0.14);
}

.search-field label,
.refine-label,
.search-hint,
.results-meta,
.homepage-ad-label,
.search-ad-label,
.article-ad-label,
.blog-card-meta,
.venue-desc,
.venue-hours,
.venue-confidence,
.venue-url,
.venue-contact,
.article-byline,
.faq-item p,
.how-it-works-step p,
.related-article-excerpt {
  color: var(--muted);
}

.search-field input,
.refine-input,
.owner-sms-form input,
.owner-sms-form textarea {
  background: rgba(9, 4, 20, 0.92);
  border-color: rgba(61, 246, 255, 0.22);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 79, 216, 0.04);
}

.search-field input:focus,
.refine-input:focus,
.owner-sms-form input:focus,
.owner-sms-form textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(61, 246, 255, 0.14);
}

.blog-feed,
.homepage-ad,
.faq-section,
.how-it-works-section,
.related-articles-section {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.soda-button,
.blog-card {
  position: relative;
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(61, 246, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(61, 246, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(39, 18, 65, 0.96), rgba(21, 9, 37, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 79, 216, 0.08),
    0 0 18px rgba(255, 79, 216, 0.12);
}

.soda-button:hover,
.blog-card:hover,
.related-article-card:hover,
.article-related-card:hover {
  border-color: var(--accent-2);
  box-shadow:
    inset 0 0 0 1px rgba(61, 246, 255, 0.12),
    0 0 28px rgba(61, 246, 255, 0.16);
}

.blog-card-code {
  align-self: flex-end;
  min-width: 2.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 3, 17, 0.82);
  border: 1px solid rgba(61, 246, 255, 0.28);
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.blog-card-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: radial-gradient(circle at top, rgba(255, 79, 216, 0.28), rgba(61, 246, 255, 0.16));
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.2);
}

.blog-card-title,
.related-article-title,
.article-related-card span,
.article-header h1,
.static-page h1,
.static-page h2,
.editorial-intro h2,
.results-header h2,
.faq-section h2,
.how-it-works-section h2,
.related-articles-section h2 {
  color: #fff6ff;
}

.search-cta-strip.dispenser-panel {
  margin-top: 0.5rem;
  padding: 1.75rem 1rem 1.15rem;
  border: 1px solid rgba(61, 246, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(61, 246, 255, 0.08), transparent 20%),
    rgba(13, 6, 26, 0.96);
}

.dispenser-display {
  max-width: 640px;
  margin: 0 auto 1rem;
}

.dispenser-slot {
  position: relative;
  width: min(100%, 360px);
  height: 52px;
  margin: 1rem auto 0;
  border-radius: 18px;
  border: 2px solid rgba(61, 246, 255, 0.2);
  background: linear-gradient(180deg, rgba(2, 1, 5, 0.94), rgba(22, 9, 42, 0.94));
  overflow: hidden;
}

.dispenser-slot-glow {
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(61, 246, 255, 0.12), rgba(255, 79, 216, 0.28), rgba(61, 246, 255, 0.12));
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.22);
  animation: neonFlicker var(--flicker-duration-fast) infinite;
  will-change: opacity, filter;
}

.dispenser-results {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.4rem;
  border-radius: 26px;
  border: 2px solid rgba(61, 246, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(7, 3, 17, 0.98) 0%, rgba(26, 10, 44, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 79, 216, 0.08),
    0 0 36px rgba(61, 246, 255, 0.08);
}

.dispenser-results::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 260px);
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(61, 246, 255, 0.2), rgba(255, 79, 216, 0.5), rgba(61, 246, 255, 0.2));
  box-shadow: 0 0 16px rgba(255, 79, 216, 0.24);
}

.dispenser-output {
  gap: 1rem;
}

.dispenser-results.is-dispensed {
  animation: dispenseDrop 0.45s ease-out;
}

.venue-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    rgba(17, 8, 32, 0.96);
  border: 1px solid rgba(61, 246, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 79, 216, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.28);
}

.venue-card:hover {
  border-color: var(--accent-2);
}

.status-badge.serving {
  background: rgba(122, 255, 131, 0.16);
  box-shadow: 0 0 14px rgba(122, 255, 131, 0.14);
}

.status-badge.not-serving {
  background: rgba(255, 122, 168, 0.16);
}

.status-badge.unknown {
  background: rgba(255, 211, 109, 0.18);
}

.empty-results {
  color: var(--muted);
  text-align: center;
  padding: 2rem 1rem;
  border: 1px dashed rgba(61, 246, 255, 0.22);
  border-radius: 18px;
  background: rgba(8, 4, 18, 0.7);
}

.feedback-btn,
.filter-btn,
.affiliate-link,
.ad-cancel-btn {
  border-color: rgba(61, 246, 255, 0.18);
}

.feedback-btn:hover,
.filter-btn:hover,
.affiliate-link:hover,
.ad-cancel-btn:hover {
  transform: translateY(-1px);
}

.loading,
.error-section {
  margin-top: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(61, 246, 255, 0.18);
  background: rgba(13, 6, 26, 0.94);
}

.spinner {
  border-color: rgba(61, 246, 255, 0.12);
  border-top-color: var(--accent);
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.24);
}

.ad-modal-box,
.ad-display {
  background:
    linear-gradient(180deg, rgba(61, 246, 255, 0.06), transparent 22%),
    rgba(17, 8, 32, 0.98);
  border-color: rgba(61, 246, 255, 0.18);
}

footer {
  border-top: 1px solid rgba(61, 246, 255, 0.18);
  background: rgba(10, 5, 21, 0.86);
}

@media (max-width: 720px) {
  .machine-shell {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .vending-machine {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .vending-machine::before,
  .vending-machine::after {
    display: none;
  }

  .hero,
  .home-hero,
  .dispenser-results,
  .search-cta-strip.dispenser-panel {
    border-radius: 20px;
  }

  .search-actions {
    justify-content: stretch;
  }

  #search-btn,
  .search-cta-btn,
  .home-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .results-header,
  .venue-header,
  .results-refine,
  .venue-feedback {
    align-items: stretch;
  }

  .report-tally {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
