/* ═══════════════════════════════════════════════════════
   NEWSLETTER & NOTIFICATION SYSTEM — El Imperio Mofongo
   Premium dark design with animations
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --news-red: #dc3545;
  --news-gold: #FFD700;
  --news-dark: #0a0a0a;
  --news-card: #111218;
  --news-glass: rgba(255,255,255,0.04);
  --news-border: rgba(255,255,255,0.08);
  --news-text: rgba(255,255,255,0.9);
  --news-muted: rgba(255,255,255,0.5);
  --news-dim: rgba(255,255,255,0.25);
}

/* ─── FLOATING SUBSCRIBE WIDGET ─────────────────────────── */
.subscribe-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.subscribe-fab-btn {
  background: linear-gradient(135deg, #dc3545, #c0392b);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(220,53,69,0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-fab-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(220,53,69,0.5);
}

.subscribe-fab-btn .fab-icon {
  font-size: 1.1rem;
  animation: bellRing 3s ease infinite;
}

@keyframes bellRing {
  0%,80%,100% { transform: rotate(0); }
  85% { transform: rotate(-15deg); }
  90% { transform: rotate(15deg); }
  95% { transform: rotate(-10deg); }
}

.subscribe-fab-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--news-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 50px;
}

/* ─── NEWSLETTER SECTION (in-page) ─── */
.newsletter-section {
  background: linear-gradient(135deg, #0d0d0f 0%, #111218 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  border-top: 1px solid rgba(220,53,69,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(220,53,69,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,215,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.news-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,53,69,0.12);
  border: 1px solid rgba(220,53,69,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--news-red);
  margin-bottom: 1rem;
}

.news-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.news-section-title .accent-gold {
  background: linear-gradient(135deg, #FFD700 30%, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-section-subtitle {
  color: var(--news-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
}

/* Feature list */
.news-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2rem;
}

.news-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--news-muted);
  font-size: 0.9rem;
}

.news-feature-item .feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ─── SUBSCRIBE FORM CARD ─── */
.subscribe-card {
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.subscribe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #FFD700, #dc3545);
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
}

@keyframes shimmerBar {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.subscribe-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}

.subscribe-card-sub {
  color: var(--news-muted);
  font-size: 0.85rem;
  margin-bottom: 1.8rem;
}

/* ─── STATS ROW ─── */
.news-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--news-border);
}

.news-stat {
  text-align: center;
  flex: 1;
}

.news-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--news-red);
  line-height: 1;
}

.news-stat-label {
  font-size: 0.72rem;
  color: var(--news-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ─── FORM INPUTS ─── */
.news-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.news-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.25s ease;
}

.news-input::placeholder { color: rgba(255,255,255,0.3); }

.news-input:focus {
  border-color: rgba(220,53,69,0.5);
  background: rgba(220,53,69,0.06);
  box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

.news-input.success {
  border-color: rgba(40,167,69,0.5);
  background: rgba(40,167,69,0.06);
}

/* ─── TOPIC CHECKBOXES ─── */
.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.topic-check {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--news-border);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.82rem;
  color: var(--news-muted);
  user-select: none;
}

.topic-check:hover {
  border-color: rgba(220,53,69,0.3);
  background: rgba(220,53,69,0.05);
  color: #fff;
}

.topic-check input[type="checkbox"] {
  display: none;
}

.topic-check-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.65rem;
}

.topic-check.checked {
  border-color: rgba(220,53,69,0.5);
  background: rgba(220,53,69,0.08);
  color: #fff;
}

.topic-check.checked .topic-check-box {
  background: var(--news-red);
  border-color: var(--news-red);
}

.topic-icon { font-size: 0.9rem; }

/* ─── SUBSCRIBE BUTTON ─── */
.btn-subscribe {
  width: 100%;
  background: linear-gradient(135deg, #dc3545 0%, #c0392b 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-subscribe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-subscribe:hover::after { transform: translateX(100%); }

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(220,53,69,0.45);
}

.btn-subscribe:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Legal / privacy */
.news-privacy {
  text-align: center;
  color: var(--news-dim);
  font-size: 0.73rem;
  margin-top: 10px;
  line-height: 1.5;
}

/* ─── SUCCESS STATE ─── */
.subscribe-success {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
  animation: fadeInUp 0.5s ease;
}

.subscribe-success.show { display: block; }

.success-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.success-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.success-msg {
  color: var(--news-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── PREVIEW EMAILS CARD ─── */
.email-preview-carousel {
  position: relative;
  margin-top: 2.5rem;
}

.email-preview-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--news-dim);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-preview-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--news-border);
}

.email-preview-cards {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.email-preview-cards::-webkit-scrollbar { display: none; }

.email-preview-card {
  min-width: 180px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--news-border);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.email-preview-card:hover {
  border-color: rgba(220,53,69,0.3);
  background: rgba(220,53,69,0.05);
  transform: translateY(-3px);
}

.ep-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}

.ep-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--news-red);
  background: rgba(220,53,69,0.1);
  padding: 2px 8px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 6px;
}

.ep-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.ep-meta {
  font-size: 0.7rem;
  color: var(--news-dim);
  margin-top: 4px;
}

/* ─── MODAL NEWSLETTER SUBSCRIBE ─── */
.nl-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nl-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nl-modal {
  background: #111218;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.nl-modal-overlay.open .nl-modal {
  transform: translateY(0) scale(1);
}

.nl-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #FFD700);
}

.nl-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.nl-close:hover {
  background: rgba(220,53,69,0.2);
  color: #fff;
  border-color: rgba(220,53,69,0.4);
}

/* ─── NOTIFICATION BELL PANEL ─── */
.notification-bell-btn {
  display: none; /* Desactivado el botón flotante */
}

/* Base de la campana en la Navbar */
.btn-notif-nav {
  transition: all 0.3s ease;
  position: relative;
}

.btn-notif-nav:hover {
  background: rgba(220,53,69,0.2) !important;
  transform: translateY(-2px);
}

.notification-bell-btn:hover {
  border-color: rgba(220,53,69,0.6);
  box-shadow: 0 8px 30px rgba(220,53,69,0.3);
  transform: scale(1.08);
}

.notif-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  background: var(--news-red);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0a0a;
}

/* ─── NOTIFICATION DRAWER ─── */
.notif-drawer {
  position: absolute;
  top: 55px;
  right: 0;
  width: 320px;
  background: #111218;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  z-index: 9500;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  max-height: 480px;
  display: block !important; /* Permitir que JS controle la opacidad/transform */
}

.notif-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.notif-drawer-header {
  background: linear-gradient(135deg, rgba(220,53,69,0.12), rgba(220,53,69,0.04));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notif-drawer-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notif-drawer-clear {
  font-size: 0.72rem;
  color: var(--news-red);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: opacity 0.2s;
}

.notif-drawer-clear:hover { opacity: 0.7; }

.notif-list {
  overflow-y: auto;
  max-height: 320px;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.notif-item {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 4px;
  transition: background 0.2s;
  cursor: pointer;
}

.notif-item:hover { background: rgba(255,255,255,0.04); }

.notif-item.unread { background: rgba(220,53,69,0.06); }

.notif-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.notif-item-body { flex: 1; min-width: 0; }

.notif-item-title {
  font-size: 0.83rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-item-text {
  font-size: 0.76rem;
  color: var(--news-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.notif-item-time {
  font-size: 0.68rem;
  color: var(--news-dim);
  margin-top: 3px;
}

.notif-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--news-muted);
  font-size: 0.85rem;
}

/* ─── TOAST NOTIFICATIONS ─── */
.toast-stack {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 11000;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.toast-item {
  background: #1a1a24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0;
}

.toast-item.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-item.hiding {
  transform: translateX(-110%);
  opacity: 0;
}

.toast-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.toast-item-body { flex: 1; }

.toast-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.toast-item-text {
  font-size: 0.75rem;
  color: var(--news-muted);
}

.toast-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
}

.toast-item.success .toast-accent-bar { background: #28a745; }
.toast-item.error .toast-accent-bar { background: #dc3545; }
.toast-item.info .toast-accent-bar { background: #17a2b8; }
.toast-item.warning .toast-accent-bar { background: #FFD700; }

/* ─── ADMIN PANEL NEWSLETTER ─── */
.newsletter-admin-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2rem;
}

.nl-admin-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
}

.nl-admin-tab {
  flex: 1;
  padding: 14px 8px;
  border: none;
  background: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nl-admin-tab.active {
  color: #fff;
  border-bottom-color: var(--news-red);
  background: rgba(220,53,69,0.06);
}

.nl-admin-content {
  padding: 1.5rem;
}

.nl-admin-tab-panel { display: none; }
.nl-admin-tab-panel.active { display: block; }

/* Compose area */
.nl-compose-area {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  resize: vertical;
  min-height: 140px;
  outline: none;
  transition: border-color 0.25s ease;
}

.nl-compose-area:focus { border-color: rgba(220,53,69,0.4); }

.nl-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 1rem;
}

.nl-template-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  color: inherit;
  font-family: 'Outfit', sans-serif;
}

.nl-template-btn:hover {
  border-color: rgba(220,53,69,0.3);
  background: rgba(220,53,69,0.06);
}

.nl-template-icon { font-size: 1.3rem; margin-bottom: 4px; display: block; }
.nl-template-name { font-size: 0.78rem; font-weight: 700; color: #fff; }
.nl-template-desc { font-size: 0.69rem; color: rgba(255,255,255,0.4); }

/* Subscribers table */
.subscribers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.subscribers-table th {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.subscribers-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
}

.subscribers-table tr:hover td { background: rgba(255,255,255,0.02); }

.sub-badge {
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
}

.sub-badge.active { background: rgba(40,167,69,0.15); color: #28a745; }
.sub-badge.inactive { background: rgba(108,117,125,0.15); color: #6c757d; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .subscribe-fab { bottom: 80px; right: 16px; }
  .notif-drawer { 
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -40%) scale(0.9);
    width: 90vw;
    max-width: 380px;
    max-height: 80vh;
    border-radius: 24px;
    box-shadow: 0 0 100px rgba(0,0,0,0.9), 0 0 0 1000px rgba(0,0,0,0.7); /* Modal effect */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .notif-drawer.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  .notification-bell-btn { bottom: 16px; right: 16px; }
  .topic-grid { grid-template-columns: 1fr; }
  .subscribe-card { padding: 1.5rem; }
  .news-stats { gap: 0.75rem; }
}
