:root {
  --navy: #0b1730;
  --navy-2: #12244a;
  --navy-3: #17305e;
  --red: #e02440;
  --red-bright: #ff3b57;
  --red-dark: #b81530;
  --text: #eaf0fb;
  --muted: #93a6c8;
  --line: #243c68;
  --surface: #12244a;
  --surface-2: #17305e;
  --radius: 14px;
  --shadow: 0 20px 55px rgba(3, 8, 20, 0.55);
  --glow: 0 0 40px rgba(224, 36, 64, 0.45);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--red-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.hidden { display: none !important; }

/* ── Horní lišta ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 1.1rem 0; transition: all 0.3s;
}
.topbar.scrolled {
  background: rgba(11, 23, 48, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.6rem 0;
}
.topbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: 0.28em; color: #fff;
  text-indent: 0.28em;
}
.brand:hover { color: var(--red-bright); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { color: rgba(234,240,251,0.82); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red); color: #fff !important;
  padding: 0.55rem 1.3rem; border-radius: 999px; font-weight: 600 !important;
  box-shadow: var(--glow);
}
.nav-cta:hover { background: var(--red-bright); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #fff; cursor: pointer; }

/* ── FINTA 1: levá tečková navigace ── */
.dotnav {
  position: fixed; top: 50%; left: 1.4rem; transform: translateY(-50%);
  z-index: 55; display: flex; flex-direction: column; gap: 1.1rem;
}
.dotnav a { display: flex; align-items: center; gap: 0.7rem; }
.dotnav .dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: 2px solid var(--muted); background: transparent;
  transition: all 0.25s;
}
.dotnav .dot-label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); opacity: 0; transform: translateX(-6px);
  transition: all 0.25s; white-space: nowrap; pointer-events: none;
}
.dotnav a:hover .dot-label { opacity: 1; transform: translateX(0); }
.dotnav a:hover .dot { border-color: var(--red-bright); }
.dotnav a.active .dot {
  border-color: var(--red); background: var(--red);
  box-shadow: var(--glow); transform: scale(1.25);
}
.dotnav a.active .dot-label { opacity: 1; transform: translateX(0); color: #fff; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(120% 90% at 80% 20%, #17305e 0%, #0b1730 55%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; opacity: 0.35;
}
.hero-bg.has-image { opacity: 0.5; }
/* FINTA 3: žhnoucí glow + heat haze */
.hero-glow {
  position: absolute; z-index: 1; top: 15%; right: 8%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,36,64,0.55) 0%, rgba(224,36,64,0) 68%);
  filter: blur(20px); animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.18); opacity: 1; }
}
.hero-haze {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(11,23,48,0.6) 100%),
              repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 7px);
  animation: hazeShift 14s linear infinite alternate;
}
@keyframes hazeShift { from { background-position: 0 0; } to { background-position: 60px 0; } }
.hero-content {
  position: relative; z-index: 3;
  max-width: 1080px; margin: 0 auto; padding: 7rem 2rem 3rem; width: 100%;
  animation: fadeUp 1s ease;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.4rem;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: var(--glow); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 8.5rem); line-height: 0.92;
  letter-spacing: 0.02em; color: #fff; margin-bottom: 1.2rem;
  text-shadow: 0 0 60px rgba(224,36,64,0.35);
}
.hero-desc { font-size: 1.1rem; color: var(--muted); max-width: 46ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 3rem; }
.hero-scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 3; color: var(--muted); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(7px);} }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px);} to { opacity: 1; transform: translateY(0);} }

/* FINTA 6: teplotní pás */
.heat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; max-width: 620px;
}
.heat-item {
  background: rgba(18,36,74,0.7); padding: 1.1rem 1rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.heat-temp { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--red-bright); }
.heat-name { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.02em; }

/* ── Tlačítka ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.9rem; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.02em; border: 1px solid transparent; cursor: pointer;
  transition: all 0.25s;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--red); color: #fff; }
.btn-secondary { background: var(--surface-2); color: var(--text); }
.btn-secondary:hover { background: var(--navy-3); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.82rem; }
.btn-icon { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--muted); }

/* ── Sekce ── */
.section { position: relative; padding: 7rem 0; overflow: hidden; }
.section:nth-child(even) { background: var(--navy-2); }
/* FINTA 2: obří duchové číslice */
.ghost-num {
  position: absolute; top: 1.5rem; right: 2rem; z-index: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(7rem, 22vw, 18rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(224,36,64,0.14);
  pointer-events: none; user-select: none;
}
.sec-label {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 0.9rem;
  padding-left: 2.4rem; position: relative;
}
.sec-label::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 1.8rem; height: 2px; background: var(--red);
}
.section h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1;
  color: #fff; margin-bottom: 1.6rem; max-width: 20ch;
}

/* FINTA 7: reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* O nás */
.about-text { color: var(--muted); font-size: 1.15rem; line-height: 1.95; max-width: 60ch; }

/* Galerie */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); transition: transform 0.35s;
}
.gallery-item:nth-child(3n+1) { grid-column: span 7; aspect-ratio: 16/10; }
.gallery-item:nth-child(3n+2) { grid-column: span 5; aspect-ratio: 4/5; }
.gallery-item:nth-child(3n)   { grid-column: span 12; aspect-ratio: 21/9; max-height: 320px; }
.gallery-item:hover { transform: translateY(-5px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem;
  background: linear-gradient(transparent, rgba(4,10,24,0.85)); color: #fff; font-size: 0.85rem;
}
.gallery-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 2rem; }

/* Tým */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; }
.team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.25s, border-color 0.25s;
}
.team-card:hover { transform: translateY(-5px); border-color: var(--red); }
.team-photo { aspect-ratio: 4/5; background: var(--navy-3); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy-3), var(--red-dark)); }
.team-body { padding: 1.3rem; }
.team-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: #fff; margin-bottom: 0.3rem; }
.team-role { color: var(--red-bright); font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.team-desc { font-size: 0.92rem; line-height: 1.6; color: var(--muted); margin-bottom: 1rem; }
.team-hours { width: 100%; font-size: 0.83rem; border-collapse: collapse; }
.team-hours td { padding: 0.3rem 0; border-bottom: 1px solid var(--line); }
.team-hours td:first-child { color: var(--red-bright); width: 42%; }
.team-empty { margin-top: 1rem; color: var(--muted); text-align: center; }
.hours-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; font-style: italic; }

.personel-edit-card { border: 1px solid var(--line); border-radius: 10px; padding: 1rem; margin-bottom: 1rem; background: var(--surface-2); }
.personel-edit-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.personel-edit-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.p-foto-preview { margin: 0.5rem 0; max-height: 120px; overflow: hidden; }
.p-foto-preview img { max-height: 120px; width: auto; border-radius: 8px; }
.admin-rozvrh { font-size: 0.8rem; margin: 0.5rem 0; width: 100%; border-collapse: collapse; }
.admin-rozvrh th, .admin-rozvrh td { border: 1px solid var(--line); padding: 0.35rem 0.5rem; text-align: left; }
.admin-rozvrh input[type="time"] { width: 100%; padding: 0.25rem; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; background: var(--navy); color: var(--text); }

/* FINTA 4: vodorovný scroll-snap ceník */
.scroll-hint { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; letter-spacing: 0.05em; }
.price-grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 300px);
  gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--red) var(--navy-2);
}
.price-grid::-webkit-scrollbar { height: 8px; }
.price-grid::-webkit-scrollbar-track { background: var(--navy-2); border-radius: 999px; }
.price-grid::-webkit-scrollbar-thumb { background: var(--red); border-radius: 999px; }
.price-card {
  scroll-snap-align: start;
  background: linear-gradient(160deg, var(--surface) 0%, var(--navy-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem; min-height: 160px;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.price-name { font-size: 1.08rem; font-weight: 500; color: #fff; }
.price-value { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--red-bright); margin-top: auto; }

/* Novinky */
.news-list { display: flex; flex-direction: column; gap: 1.1rem; }
.news-card {
  display: flex; flex-direction: row; align-items: center; gap: 1.75rem;
  background: var(--surface); padding: 1.5rem;
  border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.news-card-body { flex: 1; min-width: 0; }
.news-card time { font-size: 0.75rem; color: var(--red-bright); font-weight: 600; }
.news-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin: 0.4rem 0; color: #fff; }
.news-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.news-card-media { flex-shrink: 0; width: 240px; margin: 0; }
.news-card-media img { width: 100%; height: auto; display: block; border-radius: 8px; object-fit: contain; }
@media (max-width: 700px) {
  .news-card { flex-direction: column; align-items: stretch; }
  .news-card-media { width: 100%; max-width: 320px; margin: 0 auto; order: -1; }
}

.novinka-img-preview { min-height: 90px; max-height: 160px; border-radius: 8px; overflow: hidden; background: var(--navy-2); margin: 0.5rem 0; display: flex; align-items: center; justify-content: center; }
.novinka-img-preview img { max-width: 100%; max-height: 160px; width: auto; height: auto; object-fit: contain; }
.novinka-img-preview .placeholder { font-size: 0.8rem; color: var(--muted); }
.novinka-img-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.btn-remove-novinka-img { background: rgba(255,90,90,0.15); color: var(--red-bright); border: none; padding: 0.4rem 0.7rem; border-radius: 6px; font-size: 0.8rem; cursor: pointer; }

/* Kontakt */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-icon { font-size: 1.2rem; }
.contact-list strong { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.contact-list a, .contact-list span { color: var(--text); }
.hours-card { background: var(--surface); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--line); border-top: 3px solid var(--red); box-shadow: var(--shadow); }
.hours-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; margin-bottom: 0.5rem; color: #fff; }
.hours-card table { width: 100%; }
.hours-card td { padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.hours-card td:last-child { text-align: right; font-weight: 500; }
.zavreno { color: var(--red-bright); font-style: italic; }

/* Footer */
.footer { background: #071023; color: var(--muted); padding: 2.5rem 0; text-align: center; border-top: 1px solid var(--line); }
.footer p:first-child { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; letter-spacing: 0.2em; }

/* FINTA 5: plovoucí CTA pilulka */
.float-cta {
  position: fixed; bottom: 1.5rem; right: 5rem; z-index: 80;
  background: var(--red); color: #fff !important;
  padding: 0.8rem 1.5rem; border-radius: 999px; font-weight: 600;
  box-shadow: var(--glow); opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.float-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta:hover { background: var(--red-bright); }

/* Loading */
.loading { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 50vh; color: var(--muted); gap: 1rem; background: var(--navy); }
.spinner { width: 40px; height: 40px; border: 3px solid var(--line); border-top-color: var(--red); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(4,10,24,0.95); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.lightbox img { max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Admin */
.admin-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90; width: 52px; height: 52px; border-radius: 14px; background: var(--surface-2); color: #fff; border: 1px solid var(--red); font-size: 1.3rem; cursor: pointer; box-shadow: var(--glow); }
.admin-panel { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(4,10,24,0.6); }
.admin-panel.open { display: flex; justify-content: flex-end; }
.admin-drawer { width: 100%; max-width: 440px; height: 100%; background: var(--surface); display: flex; flex-direction: column; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.admin-header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); }
.admin-header h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: #fff; }
.admin-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.admin-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--line); }
.admin-hint { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.admin-hint.success { color: var(--red-bright); }
.admin-hint.error { color: #ff5a5a; }
.admin-body .checkbox { flex-direction: row !important; align-items: center; color: var(--text); margin: 0.75rem 0; }
.admin-body .checkbox input { width: auto; margin-right: 0.5rem; accent-color: var(--red); }
.admin-body label { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; font-weight: 600; }
.admin-body input, .admin-body textarea { width: 100%; padding: 0.6rem 0.75rem; margin-top: 0.25rem; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; background: var(--navy); color: var(--text); }
.admin-tabs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.admin-tabs .tab { padding: 0.35rem 0.7rem; border-radius: 6px; border: 1px solid var(--line); background: transparent; color: var(--text); font-size: 0.78rem; cursor: pointer; font-family: inherit; }
.admin-tabs .tab.active { background: var(--red); color: #fff; border-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.upload-box { margin-bottom: 1.5rem; }
.upload-box h4 { font-size: 0.9rem; margin-bottom: 0.75rem; color: #fff; }
.hero-preview { height: 120px; border-radius: 8px; overflow: hidden; background: var(--navy-2); margin-bottom: 0.75rem; display: flex; align-items: center; justify-content: center; }
.hero-preview img { width: 100%; height: 100%; object-fit: cover; }
.btn-upload { cursor: pointer; display: inline-block; }
.bunny-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; }
.gallery-edit { display: grid; gap: 0.75rem; margin-bottom: 0.75rem; }
.gallery-edit-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.5rem; align-items: center; padding: 0.5rem; border: 1px solid var(--line); border-radius: 8px; }
.gallery-edit-item img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; }
.btn-delete-img { background: rgba(255,90,90,0.15); color: var(--red-bright); border: none; padding: 0.35rem 0.6rem; border-radius: 6px; font-size: 0.75rem; cursor: pointer; }
.edit-row { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.edit-row input { flex: 1; min-width: 80px; }
.edit-block { margin-bottom: 0.75rem; }
.status-msg { margin-top: 0.75rem; font-size: 0.85rem; text-align: center; }
.status-msg.error { color: #ff5a5a; }
.status-msg.success { color: #4ade80; }

/* Responsivita */
@media (max-width: 1100px) { .dotnav { display: none; } }
@media (max-width: 860px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-2); border-bottom: 1px solid var(--line); padding: 0.5rem 1.5rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 0.6rem; border-bottom: none !important; }
  .nav-toggle { display: block; }
  .float-cta { right: 1.5rem; bottom: 5rem; }
  .heat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wrap { padding: 0 1.25rem; }
  .gallery-item { grid-column: span 12 !important; aspect-ratio: 16/10 !important; max-height: none !important; }
}

.creator-bar {
  --creator-bar-bg: #071023;
  --creator-bar-border: var(--red);
  --creator-bar-muted: rgba(147,166,200,0.85);
  --creator-bar-link-hover: #fff;
}
