/* =============================================
   MIDTOWN BAR & GRILL — Premium CSS
   TLC AI Lab · 2026
   ============================================= */

/* ── DESIGN TOKENS ── */
:root {
  --amber: #E8A030;
  --amber-dark: #C47820;
  --amber-light: #F5C15E;
  --crimson: #B82020;
  --gold: #D4A017;
  --dark: #0E0A04;
  --dark-2: #1A140A;
  --dark-3: #251C10;
  --text: #F5EDD8;
  --text-muted: #B8A88A;
  --border: rgba(232,160,48,0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;
  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --glow: 0 0 24px rgba(232,160,48,0.15);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--amber); color: var(--dark); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ── EVENT BANNER ── */
.event-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(90deg, var(--crimson), #8B1515);
  padding: 10px 20px;
}
.eb-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 500;
}
.eb-icon { font-size: 1.2rem; flex-shrink: 0; }
.eb-text { flex: 1; }
.eb-actions {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; margin-left: auto;
}
.eb-attendee-btn {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.5);
  color: white; padding: 5px 14px; border-radius: 4px;
  cursor: pointer; font-size: 0.82rem; font-weight: 700;
  transition: background 0.2s, transform 0.1s; white-space: nowrap;
  font-family: inherit;
}
.eb-attendee-btn:hover { background: rgba(255,255,255,0.28); }
.eb-attendee-btn:active { transform: scale(0.97); }
.eb-attendee-btn.activated {
  background: rgba(46,204,113,0.3); border-color: rgba(46,204,113,0.7);
  color: #7dffb4; cursor: default;
}
.eb-close {
  background: none; border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 4px 10px; border-radius: 4px;
  cursor: pointer; font-size: 0.85rem; font-weight: 600;
  transition: background 0.2s; flex-shrink: 0;
}
.eb-close:hover { background: rgba(255,255,255,0.15); }
/* Convention discount mode — price display */
.mc-price.discounted { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.mc-price-original { text-decoration: line-through; color: var(--text-dim); font-size: 0.78rem; }
.mc-price-new { color: #7dffb4; font-weight: 700; }
.mc-price-badge {
  font-size: 0.62rem; background: rgba(46,204,113,0.2); color: #7dffb4;
  border: 1px solid rgba(46,204,113,0.4); border-radius: 3px; padding: 1px 5px;
  font-weight: 700; letter-spacing: 0.05em;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  height: var(--nav-h);
  transition: top 0.25s ease;
  display: flex; align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
  background: linear-gradient(180deg, rgba(14,10,4,0.85) 0%, transparent 100%);
}
.navbar.scrolled {
  background: rgba(14,10,4,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo img {
  height: 44px; object-fit: contain;
  filter: brightness(1.1);
  transition: filter 0.2s;
}
.nav-logo:hover img { filter: brightness(1.3) drop-shadow(0 0 8px var(--amber)); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 12px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--amber); background: rgba(232,160,48,0.08); }
.nav-cta-link {
  padding: 8px 18px; border-radius: 999px;
  background: var(--amber); color: var(--dark);
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-left: 8px;
}
.nav-cta-link:hover {
  background: var(--amber-light); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,160,48,0.35);
}
.nav-hamburger {
  display: none; background: none; border: 1px solid var(--border);
  padding: 8px; border-radius: 8px; cursor: pointer;
  flex-direction: column; gap: 5px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--amber); border-radius: 2px;
  transition: transform 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 0.1s linear;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,10,4,0.88) 0%,
    rgba(14,10,4,0.72) 50%,
    rgba(14,10,4,0.82) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: calc(var(--nav-h) + 40px) 24px 80px;
  max-width: 800px; margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-accent);
  letter-spacing: 0.25em; font-size: 0.85rem;
  color: var(--amber); margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900; line-height: 1.05;
  background: linear-gradient(135deg, var(--text) 0%, var(--amber-light) 60%, var(--amber) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 20px; text-shadow: none;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 36px; line-height: 1.6;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(232,160,48,0.12); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
  backdrop-filter: blur(8px);
}
.badge-icon { font-size: 1rem; }
.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--amber); font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none; letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(232,160,48,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,48,0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(232,160,48,0.5);
  color: var(--amber);
}
.btn-outline:hover {
  background: rgba(232,160,48,0.1); border-color: var(--amber);
  transform: translateY(-2px);
}

/* ── SPECIALS BAR ── */
.specials-bar {
  background: linear-gradient(90deg, var(--amber-dark), var(--amber), var(--amber-dark));
  overflow: hidden; height: 42px; display: flex; align-items: center;
}
.sb-track {
  display: flex; align-items: center; gap: 60px;
  white-space: nowrap;
  animation: scroll-left 35s linear infinite;
}
.sb-track span {
  font-size: 0.82rem; font-weight: 600;
  color: var(--dark); letter-spacing: 0.04em;
  text-transform: uppercase;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section {
  padding: 96px 24px;
}
.section-dark {
  background: var(--dark-2);
}
.container {
  max-width: var(--max-w); margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 56px;
}
.section-eyebrow {
  font-family: var(--font-accent);
  letter-spacing: 0.2em; font-size: 0.8rem;
  color: var(--amber); text-transform: uppercase;
  margin-bottom: 12px; display: block;
}
.section-eyebrow.light { color: var(--amber-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: var(--text); }
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ── MENU ── */
.menu-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 20px; border-radius: 999px;
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.tab-btn:hover { color: var(--amber); border-color: var(--amber); }
.tab-btn.active {
  background: var(--amber); color: var(--dark);
  border-color: var(--amber); font-weight: 600;
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.menu-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.menu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.menu-card:hover {
  transform: translateY(-4px); border-color: rgba(232,160,48,0.4);
  box-shadow: var(--glow);
}
.menu-card:hover::before { opacity: 1; }
.mc-name {
  font-weight: 600; font-size: 1rem; margin-bottom: 6px; color: var(--text);
  font-family: var(--font-display);
}
.mc-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.mc-price {
  font-family: var(--font-accent); font-size: 1.15rem;
  color: var(--amber); letter-spacing: 0.05em;
}
.menu-note {
  text-align: center; color: var(--text-muted); font-size: 0.82rem;
  margin-top: 24px; padding: 16px; background: var(--dark-3);
  border-radius: var(--radius); border: 1px dashed var(--border);
}
.menu-full-cta { text-align: center; margin-top: 40px; }

/* ── BRUNCH ── */
.brunch-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.brunch-img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 500px; }
.brunch-desc { color: var(--text-muted); margin-bottom: 24px; font-size: 1.05rem; }
.brunch-perks {
  margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px;
}
.brunch-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--text-muted);
}
.brunch-perks li span { font-size: 1.1rem; }

/* ── HAPPY HOUR ── */
.happy-hour-section {
  position: relative; text-align: center;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.happy-hour-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,32,32,0.06) 0%, rgba(232,160,48,0.04) 100%);
  pointer-events: none;
}
.hh-overlay {
  position: absolute; inset: 0;
  background: url('/assets/images/happyhour-bg.jpg') center/cover no-repeat;
  opacity: 0.07; pointer-events: none;
}
.hh-content { position: relative; z-index: 1; }
.hh-title {
  font-family: var(--font-accent);
  font-size: clamp(4rem, 14vw, 9rem);
  color: var(--amber); line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 0 60px rgba(232,160,48,0.25);
  margin-bottom: 8px;
}
.hh-time {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--text); margin-bottom: 20px;
  font-weight: 700;
}
.hh-sub {
  color: var(--text-muted); max-width: 480px; margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ── EVENTS ── */
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.event-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.event-card:hover { transform: translateY(-4px); border-color: rgba(232,160,48,0.35); }
.ec-icon { font-size: 2.5rem; margin-bottom: 16px; }
.event-card h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; margin-bottom: 12px; color: var(--text);
}
.event-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.nearby-events {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  margin-bottom: 40px;
}
.ne-title {
  font-family: var(--font-display); font-size: 1.3rem;
  margin-bottom: 20px; color: var(--text);
}
.ne-list { display: flex; flex-direction: column; gap: 12px; }
.ne-item {
  display: flex; gap: 20px; align-items: center;
  padding: 12px 16px; background: var(--dark-2);
  border-radius: 8px; border: 1px solid rgba(232,160,48,0.1);
  transition: border-color 0.2s;
}
.ne-item:hover { border-color: rgba(232,160,48,0.3); }
.ne-date {
  font-family: var(--font-accent); font-size: 0.9rem;
  color: var(--amber); letter-spacing: 0.08em;
  min-width: 80px;
}
.ne-info { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ne-info strong { font-size: 0.95rem; color: var(--text); }
.ne-tag {
  font-size: 0.72rem; padding: 3px 10px; border-radius: 999px;
  background: rgba(232,160,48,0.15); color: var(--amber);
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.ne-tag-fun { background: rgba(147,51,234,0.2); color: #a855f7; }
.ne-note {
  margin-top: 16px; font-size: 0.85rem; color: var(--text-muted);
  text-align: center; font-style: italic;
}
.events-cta { text-align: center; }

/* ── ABOUT ── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.about-body {
  color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8;
}
.about-stats {
  display: flex; gap: 32px; margin-top: 32px;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-accent); font-size: 2.5rem;
  color: var(--amber); line-height: 1; letter-spacing: 0.04em;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.about-img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 520px; }

/* ── DELIVERY ── */
.delivery-section { background: var(--dark-3); }
.delivery-grid {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.delivery-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  min-width: 200px; text-align: center;
  font-weight: 600; color: var(--text);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.delivery-card:hover {
  transform: translateY(-6px); border-color: rgba(232,160,48,0.4);
  box-shadow: var(--glow);
}
.delivery-card img { height: 36px; object-fit: contain; }
.delivery-card span { font-size: 0.9rem; }

/* ── CONTACT ── */
.contact-section { background: var(--dark-2); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.ci { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; min-width: 32px; }
.ci a { color: var(--amber); transition: opacity 0.2s; }
.ci a:hover { opacity: 0.8; }
.ci em { color: var(--text-muted); font-size: 0.85rem; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  padding: 10px 20px; border-radius: 999px;
  background: var(--dark-3); border: 1px solid var(--border);
  font-size: 0.88rem; font-weight: 500;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--amber); color: var(--amber); }
.contact-map { border-radius: var(--radius); overflow: hidden; position: relative; isolation: isolate; z-index: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 64px 24px 0;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo { height: 40px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.footer-links-col h4 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; margin-bottom: 16px;
  color: var(--amber);
}
.footer-links-col a, .footer-links-col span {
  display: block; margin-bottom: 10px;
  font-size: 0.88rem; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0; text-align: center;
  font-size: 0.8rem; color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(14,10,4,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: 20px; gap: 4px;
    display: none; border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-cta-link {
    padding: 12px 16px; border-radius: 8px;
    text-align: center; margin-left: 0;
  }
  .events-grid { grid-template-columns: 1fr; }
  .brunch-split, .about-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-stats { gap: 20px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 16px; }
  .hero-title { font-size: 2.8rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .tab-btn { font-size: 0.8rem; padding: 8px 14px; }
  .about-stats { flex-wrap: wrap; justify-content: center; }
  .delivery-grid { flex-direction: column; align-items: stretch; }
  .delivery-card { min-width: auto; }
}

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .menu-card, .event-card, .delivery-card, .ne-item, .ci, .badge {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}

/* ── MAP CONTROLS ───────────────────────────────────────────────────────── */
.map-controls {
  display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap;
}
.map-route-btn {
  background: var(--crimson); color: white; border: none;
  padding: 10px 20px; border-radius: 8px; font-family: inherit;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.map-route-btn:hover { background: #a01830; }
.map-route-btn:active { transform: scale(0.97); }
.map-route-btn:disabled { opacity: 0.65; cursor: default; }
.map-gmaps-btn {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--gold); 
  border: 1px solid var(--gold); padding: 10px 20px;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
}
.map-gmaps-btn:hover { background: rgba(212,163,68,0.1); }
.route-status {
  margin-top: 10px; padding: 10px 14px;
  border-radius: 8px; font-size: 0.88rem; font-weight: 500;
}
.route-ok   { background: rgba(46,204,113,0.12); color: #7dffb4; border: 1px solid rgba(46,204,113,0.3); }
.route-warn { background: rgba(231,76,60,0.12);  color: #ff8a80;  border: 1px solid rgba(231,76,60,0.3); }

/* Map custom pin */
.map-pin {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; background: var(--crimson);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  border: 2px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.map-pin span { transform: rotate(45deg); font-size: 1.1rem; }
.you-pin { background: #2980b9; }

/* Override Leaflet tile attribution to match dark theme */
.leaflet-control-attribution {
  background: rgba(20,20,20,0.75) !important;
  color: #aaa !important; font-size: 0.7rem !important;
}
.leaflet-control-attribution a { color: #ccc !important; }
