/* ============================================================
   JusSocial — Design System & Styles
   Professional Deep Blue + Gold Institutional Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  /* Mobile App Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f7fa;
  --blue-primary: #005ce6;
  --blue-light: #e6f0ff;
  --blue-gradient: linear-gradient(135deg, #005ce6, #00bfff);
  --text-primary: #111111;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border: #e8ecf1;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f0f2f5; /* Desktop background */
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: scroll;
}

#app-container {
  width: 100%;
  max-width: 480px; /* Mobile constraint */
  min-height: 100vh;
  background: var(--bg-primary);
  position: relative;
  overflow-x: hidden;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--blue-accent); border-radius: 3px; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h4, h5, h6, label, button, input { font-family: 'Inter', sans-serif; }

/* ── Canvas BG ───────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  background: rgba(77, 184, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 119, 255, 0.85);
  box-shadow: var(--shadow-md);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* logo is white — renders perfectly on dark backgrounds */
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-link {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
  border: none;
  letter-spacing: 0.02em;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--surface-3);
}

.nav-link.active { color: var(--blue-bright); }

.nav-pill {
  padding: 0.45rem 1.2rem;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright));
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(74, 158, 218, 0.35);
  letter-spacing: 0.03em;
}
.nav-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(74, 158, 218, 0.5);
}

.nav-active-province {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.nav-active-province.visible { display: flex; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}

/* ── Mobile App Screens ────────────────────────────────────── */
.screen {
  display: none;
  padding: 1.5rem;
  padding-bottom: 90px;
  animation: fadeIn 0.3s ease;
}
.screen.active {
  display: block;
}

.screen-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}
.back-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-left: -0.5rem;
}
.back-btn svg {
  width: 28px; height: 28px; fill: currentColor;
}
.screen-top-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  margin: 0;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-top: 1rem;
}
.screen-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
}
.screen-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--blue-primary);
  cursor: pointer;
  padding: 0.5rem;
}
.icon-btn svg {
  width: 28px; height: 28px; fill: currentColor;
}

/* ── Menu Cards ────────────────────────────────────────────── */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-card {
  display: flex;
  align-items: center;
  background: white;
  border: none;
  border-radius: 24px;
  padding: 1rem 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 0.8rem;
}
.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.menu-icon-box {
  width: 44px; height: 44px;
  background: #1c66d8;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  flex-shrink: 0;
  margin-right: 1.2rem;
}
.menu-icon-box svg {
  width: 20px; height: 20px; fill: currentColor;
}

.menu-content {
  flex: 1;
}
.menu-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  font-family: 'Inter', sans-serif;
}
.menu-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0;
}

.menu-arrow {
  color: #cccccc;
  font-size: 1.5rem;
  font-weight: 300;
  margin-left: 0.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.9s 0.1s ease both;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-subtitle-line {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 2.8rem;
  animation: fadeInUp 0.9s 0.2s ease both;
}

/* Stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.9s 0.3s ease both;
}

.stat-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.8rem;
  text-align: center;
  min-width: 130px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-bright));
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--blue-bright);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  display: block;
}

/* Search bar */
.hero-search-wrap {
  animation: fadeInUp 0.9s 0.4s ease both;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-search {
  display: flex;
  align-items: center;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.hero-search:focus-within {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-glow);
}

.hero-search svg { color: var(--text-muted); flex-shrink: 0; }

.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}
.hero-search input::placeholder { color: var(--text-muted); }

.search-btn {
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright));
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.search-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(74, 158, 218, 0.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: fadeInUp 1s 0.6s ease both;
}
.hero-bottom-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

/* ── Section Layout ──────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section-title-block { max-width: 540px; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Divider line */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Province Grid ────────────────────────────────────────── */
.provinces-section {
  background: transparent;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  transition: var(--transition);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.filter-btn:hover {
  border-color: var(--blue-bright);
  color: var(--text-primary);
  background: var(--surface-3);
}

.filter-btn.active {
  background: var(--blue-primary);
  border-color: var(--blue-bright);
  color: #fff;
  box-shadow: 0 2px 12px var(--blue-glow);
}

.filter-btn .type-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}

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

.province-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.province-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--blue-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.province-card:hover { border-color: var(--blue-accent); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.province-card:hover::before { opacity: 1; }
.province-card.selected { border-color: var(--gold); background: rgba(201, 168, 76, 0.06); }
.province-card.selected::after {
  content: '✓';
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--navy-deep);
  font-weight: 700;
}

.province-icon { font-size: 1.6rem; line-height: 1; }

.province-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.province-region {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.province-count {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-top: auto;
  width: fit-content;
}

/* ── Events Feed ─────────────────────────────────────────── */
.events-section {
  background: transparent;
}

.events-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.events-toolbar .filter-btn { font-size: 0.82rem; }

.events-count-tag {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.events-count-tag strong { color: var(--blue-bright); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.2rem;
}

.event-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.event-card-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  border-radius: 99px;
}

.event-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.event-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.event-priority {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-priority.alta { color: #e74c3c; }
.event-priority.media { color: var(--gold); }
.event-priority.baja { color: #27ae60; }

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.event-meta-row svg { flex-shrink: 0; color: var(--text-muted); }

.event-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-organizer {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-organizer strong { color: var(--text-secondary); }

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-chip {
  padding: 0.2rem 0.6rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.67rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.attendees-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.attendees-avatars {
  display: flex;
}

.attendees-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-primary);
  border: 2px solid var(--navy-deep);
  margin-left: -6px;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
}
.attendees-dot:first-child { margin-left: 0; }

.join-btn {
  padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright));
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.join-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(74, 158, 218, 0.5);
}

.join-btn.joined {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
}

/* ── No Results ───────────────────────────────────────────── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.no-results svg { margin-bottom: 1rem; opacity: 0.3; }
.no-results h3 { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.no-results p { font-size: 0.85rem; }

/* ── Timeline Section ────────────────────────────────────── */
.timeline-section {
  background: transparent;
  overflow: hidden;
}

.timeline-scroll-wrap {
  overflow-x: auto;
  padding-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-accent) transparent;
  cursor: grab;
}
.timeline-scroll-wrap:active { cursor: grabbing; }

.timeline-track {
  display: flex;
  gap: 0;
  position: relative;
  padding: 2rem 2rem 1rem;
  min-width: fit-content;
}

.timeline-line {
  position: absolute;
  top: calc(2rem + 18px);
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-accent), var(--gold), var(--blue-accent), transparent);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 200px;
  flex-shrink: 0;
  position: relative;
  animation: fadeInUp 0.5s ease both;
}

.timeline-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 2px solid var(--navy-deep);
  flex-shrink: 0;
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(74, 158, 218, 0.5);
}

.timeline-connector {
  width: 2px; height: 24px;
  background: var(--border);
}

.timeline-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  width: 100%;
  transition: var(--transition);
  text-align: left;
  cursor: pointer;
}

.timeline-item:hover .timeline-card {
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-glow);
}

.timeline-date {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.timeline-province {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 119, 255, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.modal-box {
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  box-shadow: var(--shadow-lg);
}

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

.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--surface-2); color: var(--text-primary); }

.modal-type { margin-bottom: 0.8rem; }
.modal-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.modal-date-loc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.modal-desc { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.modal-organizer { padding: 0.75rem 1rem; background: var(--surface-2); border-radius: var(--radius-md); border-left: 3px solid var(--gold); margin-bottom: 1.5rem; }
.modal-organizer p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.1em; }
.modal-organizer strong { font-size: 0.9rem; color: var(--text-primary); }
.modal-tags { margin-bottom: 1.8rem; }
.modal-tags-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.modal-footer { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.modal-btn-primary {
  flex: 1; padding: 0.85rem;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright));
  color: #fff; border: none; border-radius: var(--radius-md);
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  min-width: 140px;
}
.modal-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(74,158,218,0.5); }
.modal-btn-secondary {
  padding: 0.85rem 1.5rem;
  background: var(--surface-2); color: var(--text-secondary);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: 0.9rem; cursor: pointer; transition: var(--transition);
}
.modal-btn-secondary:hover { border-color: var(--blue-bright); color: var(--text-primary); }

/* ── Toast ───────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--navy-surface);
  border: 1px solid var(--blue-accent);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.35s ease;
  max-width: 320px;
  pointer-events: all;
}

.toast.success { border-color: #27ae60; }
.toast.gold { border-color: var(--gold); }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(30px); }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.8rem; max-width: 260px; }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hamburger ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger:hover { border-color: var(--blue-bright); }
.hamburger:hover span { background: var(--blue-bright); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2500;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 119, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2rem;
}
.mobile-drawer.open { transform: translateY(0); }

.mobile-drawer-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-drawer-close:hover { background: var(--surface-2); color: var(--text-primary); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3rem;
}

.mobile-nav-link {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.mobile-nav-link:hover {
  border-color: var(--blue-bright);
  background: var(--surface-3);
  color: var(--blue-bright);
  transform: translateX(6px);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2400;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ── Map Section ─────────────────────────────────────────── */
.map-section {
  background: transparent;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.map-legend-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.map-legend-bar {
  width: 100px;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(74,158,218,0.15), rgba(74,158,218,1));
  border: 1px solid var(--border);
}

.map-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 0;
  min-height: 500px;
}

#argentina-map {
  width: 100%;
  max-width: 420px;
  min-height: 500px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(74,158,218,0.15));
}

/* Province paths in the SVG */
#argentina-map .prov-path {
  fill: rgba(30, 58, 95, 0.7);
  stroke: rgba(74, 158, 218, 0.4);
  stroke-width: 1;
  cursor: pointer;
  transition: fill 0.25s ease, stroke 0.25s ease, filter 0.25s ease;
}
#argentina-map .prov-path:hover {
  stroke: var(--blue-bright);
  stroke-width: 1.5;
  filter: brightness(1.3) drop-shadow(0 0 8px rgba(74,158,218,0.6));
}
#argentina-map .prov-path.selected {
  stroke: var(--gold);
  stroke-width: 2;
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(201,168,76,0.6));
}

.map-tooltip {
  position: absolute;
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--text-primary);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  white-space: nowrap;
}
.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.map-tooltip strong { display: block; color: var(--blue-bright); margin-bottom: 0.2rem; }

/* ── Events Toolbar Enhanced ─────────────────────────────── */
.events-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.toolbar-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.toolbar-search-wrap:focus-within {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(74,158,218,0.12);
}
.toolbar-search-wrap svg { color: var(--text-muted); flex-shrink: 0; }
.toolbar-search-wrap input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.83rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  width: 160px;
}
.toolbar-search-wrap input::placeholder { color: var(--text-muted); }

.toolbar-date-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  flex-shrink: 0;
}

.date-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.date-input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  color-scheme: dark;
  cursor: pointer;
}

.date-clear-btn {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.7rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.date-clear-btn:hover { background: rgba(231,76,60,0.2); border-color: #e74c3c; color: #e74c3c; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 0.75rem; }
  .stat-card { padding: 0.9rem 1.2rem; min-width: 110px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .toolbar-date-wrap { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 1.2rem; }
  .hero { padding: 6rem 1.2rem 3.5rem; }
  .province-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand p { max-width: 100%; }
  .modal-box { padding: 1.5rem; }
  .modal-footer { flex-direction: column; }
  .toolbar-search-wrap input { width: 120px; }
}

/* ── History Accordion ───────────────────────────────────── */
.history-section {
  background: transparent;
}

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

.history-item {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.history-item:hover {
  border-color: var(--blue-accent);
}

.history-item.open {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.history-header {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition);
}

.history-header-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.history-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.history-item.open .history-icon {
  background: var(--blue-primary);
  border-color: var(--blue-bright);
  box-shadow: 0 0 15px var(--blue-glow);
}

.history-title-wrap {
  display: flex;
  flex-direction: column;
}

.history-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.history-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}

.history-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.history-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  letter-spacing: 0.05em;
}

.history-toggle-icon {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.4s ease;
}

.history-item.open .history-toggle-icon {
  transform: rotate(180deg);
  color: var(--blue-bright);
}

.history-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.history-content-inner p {
  margin-bottom: 1rem;
}

.history-content-inner p:last-child {
  margin-bottom: 0;
}

.history-content-inner h4 {
  color: var(--blue-bright);
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.05rem;
}

.history-content-inner blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-primary);
  background: var(--surface-2);
  padding: 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.history-content-inner ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.history-content-inner li {
  margin-bottom: 0.5rem;
}

/* ── History Inner Elements ────────────────────────────── */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.tags-grid span {
  padding: 0.4rem 0.8rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--blue-light);
  transition: var(--transition);
}

.tags-grid span:hover {
  background: var(--blue-primary);
  border-color: var(--blue-bright);
}

.highlight-box {
  background: rgba(45, 106, 159, 0.15);
  border: 1px solid var(--blue-accent);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin: 1.5rem 0;
  color: var(--text-primary);
}

.compare-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.compare-box div {
  background: var(--surface-2);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.compare-box div strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.principle {
  background: var(--surface-2);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue-bright);
  font-size: 0.9rem;
}

.principle strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.3rem;
}

.definition-box {
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-surface));
  border: 1px solid var(--blue-bright);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.definition-box h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.definition-box p {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

.history-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}

.flow-item {
  padding: 0.8rem 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.flow-item.highlight {
  background: var(--blue-primary);
  border-color: var(--blue-bright);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 15px var(--blue-glow);
}

.flow-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

@media (max-width: 600px) {
  .history-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .history-header-right {
    width: 100%;
    justify-content: space-between;
  }
  .compare-box {
    grid-template-columns: 1fr;
  }
}

/* ── Bottom Nav ────────────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 480px;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 0.8rem 0.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  border-top: 1px solid #f0f0f0;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 500;
  transition: 0.2s;
}
.nav-item svg {
  width: 22px; height: 22px; fill: currentColor;
}
.nav-item.active {
  color: var(--blue-primary);
}

/* ── Splash Screen ─────────────────────────────────────────── */
.splash-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #1c66d8, #0049be);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transition: opacity 0.6s ease;
}
.splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}
.splash-circle {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, #378eff, #005ce6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 2px 10px rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}
.splash-circle h1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}
.splash-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 4rem;
}
.splash-enter-wrapper {
  position: absolute;
  bottom: 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.splash-enter-btn {
  background: white;
  color: var(--blue-primary);
  border: none;
  border-radius: 100px;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.splash-enter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.splash-enter-btn:active {
  transform: translateY(0);
}
