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

:root {
  --bg-main: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-sidebar: rgba(255, 255, 255, 0.9);
  --border-light: rgba(15, 23, 42, 0.08);
  --border-focus: rgba(79, 70, 229, 0.4);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --primary: #4f46e5;
  --primary-hover: #3730a3;
  --primary-glow: rgba(79, 70, 229, 0.15);
  
  /* Category Colors */
  --color-dining: #e11d48;
  --color-clothing: #7c3aed;
  --color-antiques: #d97706;
  --color-live-music: #059669;
  --color-sitting: #2563eb;
  --color-other: #b45309;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.08);
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
}

body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(at 50% 0%, rgba(245, 158, 11, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(244, 63, 94, 0.08) 0px, transparent 50%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: -1;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.1); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.2); }
  50% { box-shadow: 0 0 25px rgba(99, 102, 241, 0.5); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn var(--transition-normal) forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--border-light);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-secondary);
}

.btn-danger {
  background: rgba(244, 63, 94, 0.15);
  color: var(--color-dining);
  border: 1px solid rgba(244, 63, 94, 0.2);
}
.btn-danger:hover {
  background: var(--color-dining);
  color: #fff;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
}

.badge-dining { background: rgba(244, 63, 94, 0.15); color: var(--color-dining); border-color: rgba(244, 63, 94, 0.2); }
.badge-clothing { background: rgba(167, 139, 250, 0.15); color: var(--color-clothing); border-color: rgba(167, 139, 250, 0.2); }
.badge-antiques { background: rgba(245, 158, 11, 0.15); color: var(--color-antiques); border-color: rgba(245, 158, 11, 0.2); }
.badge-live_music { background: rgba(16, 185, 129, 0.15); color: var(--color-live-music); border-color: rgba(16, 185, 129, 0.2); }
.badge-sitting { background: rgba(59, 130, 246, 0.15); color: var(--color-sitting); border-color: rgba(59, 130, 246, 0.2); }
.badge-other { background: rgba(180, 83, 9, 0.15); color: var(--color-other); border-color: rgba(180, 83, 9, 0.2); }

/* Form Elements */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.input-text, .select-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.input-text:focus, .select-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* Custom Leaflet overrides */
.leaflet-container {
  background: var(--bg-main) !important;
  font-family: var(--font-sans) !important;
}

.custom-div-icon {
  background: none !important;
  border: none !important;
}

.pin-container {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: opacity var(--transition-normal), transform var(--transition-fast);
  transform-origin: bottom center;
}

.pin-container.dimmed {
  opacity: 0.15;
  pointer-events: none;
}

.pin-container:hover, .pin-container.highlighted {
  transform: scale(1.15);
  z-index: 1000 !important;
}

.pin-container.highlighted .pin-svg {
  filter: drop-shadow(0 0 8px currentColor);
  animation: bounce 0.6s infinite ease-in-out;
}

.pin-svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transition: filter var(--transition-fast);
}

.pin-label {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  max-width: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Leaflet Popups override */
.leaflet-popup-content-wrapper {
  background: var(--bg-card) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid var(--border-light) !important;
  color: var(--text-primary) !important;
  border-radius: 14px !important;
  padding: 6px !important;
  box-shadow: var(--shadow-lg) !important;
}

.leaflet-popup-tip {
  background: rgba(17, 24, 39, 0.95) !important;
  border: 1px solid var(--border-light) !important;
}

.leaflet-popup-content {
  margin: 8px 12px !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  padding: 12px 20px;
  border-radius: 12px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  min-width: 280px;
}

.toast.success {
  border-left: 4px solid var(--color-live-music);
}

.toast.error {
  border-left: 4px solid var(--color-dining);
}

.toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}
.toast-close:hover {
  color: var(--text-primary);
}

/* Project Selection & Dashboard List */
.project-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.project-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.project-card:hover {
  background: rgba(79, 70, 229, 0.02);
  border-color: var(--border-focus);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.project-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.project-card-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
}
.project-card-actions {
  display: flex;
  gap: 8px;
}

/* Landing Page Styling */
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 60px;
}
.landing-hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 48px;
  margin: 40px auto 80px auto;
  max-width: 1200px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}
.landing-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0f172a 30%, #4f46e5 70%, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 968px) {
  .landing-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 20px auto 60px auto;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .landing-hero h1 {
    font-size: 2.8rem;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 9999px;
  color: var(--color-antiques);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.03);
}

/* Mock Planner Window Styles */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.mock-planner-window {
  width: 100%;
  max-width: 480px;
  height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal);
}
.mock-planner-window:hover {
  transform: translateY(-4px) rotate(0.5deg);
}
.mock-window-header {
  height: 40px;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.mock-dots {
  display: flex;
  gap: 6px;
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-dot.red { background: #f87171; }
.mock-dot.yellow { background: #fbbf24; }
.mock-dot.green { background: #34d399; }

.mock-title-bar {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-right: 20px;
}
.mock-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-antiques);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-antiques);
  box-shadow: 0 0 8px var(--color-antiques);
  animation: pulse-glow 2s infinite;
}

.mock-window-body {
  flex: 1;
  display: flex;
  background: #f8fafc;
}
.mock-sidebar {
  width: 150px;
  border-right: 1px solid var(--border-light);
  background: #f1f5f9;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-sidebar-title {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.mock-sidebar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: grab;
}
.mock-sidebar-item.active {
  border-color: var(--primary);
  background: rgba(79, 70, 229, 0.05);
  color: var(--text-primary);
}
.mock-badge {
  font-size: 0.6rem;
  padding: 1px 4px;
  border-radius: 4px;
  margin-left: auto;
}

.mock-map {
  flex: 1;
  position: relative;
  background-image: 
    radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.01) 1px, transparent 1px);
  background-size: 16px 16px;
  overflow: hidden;
}
.mock-map-park {
  position: absolute;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-map-park-label {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(16, 185, 129, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.mock-map-river {
  position: absolute;
  background: rgba(59, 130, 246, 0.12);
  border-left: 1px solid rgba(59, 130, 246, 0.22);
  border-right: 1px solid rgba(59, 130, 246, 0.22);
  pointer-events: none;
}
.mock-map-street {
  position: absolute;
  background: #ffffff;
}
.mock-map-street::after {
  content: "";
  position: absolute;
  border: 0.5px dashed rgba(0, 0, 0, 0.15);
}
.mock-map-street.horizontal {
  height: 32px;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}
.mock-map-street.horizontal::after {
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
}
.mock-map-street.vertical {
  width: 32px;
  top: 0;
  bottom: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.05);
  border-right: 1px dashed rgba(255, 255, 255, 0.05);
}
.mock-map-street.vertical::after {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
}
.mock-street-name {
  position: absolute;
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.mock-map-street.horizontal .mock-street-name {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.mock-map-street.vertical .mock-street-name {
  left: 50%;
  top: 25px;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center center;
  white-space: nowrap;
}
.mock-booth {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 5;
}
.mock-booth.placed {
  opacity: 0.85;
}
.mock-drag-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.mock-cursor-ptr {
  position: absolute;
  pointer-events: none;
  animation: dragHand 4s infinite ease-in-out;
  z-index: 10;
}
@keyframes dragHand {
  0% { transform: translate(0, 0); opacity: 0; }
  15% { transform: translate(0, 0); opacity: 1; }
  25% { transform: translate(0, 0) scale(0.85); }
  65% { transform: translate(95px, 88px) scale(0.85); }
  75% { transform: translate(95px, 88px) scale(1); }
  90% { transform: translate(95px, 88px); opacity: 1; }
  100% { transform: translate(95px, 88px); opacity: 0; }
}

.mock-dash-flow {
  stroke-dasharray: 4 4;
  animation: dashFlow 30s linear infinite;
}
.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.feature-card {
  padding: 32px;
  transition: transform var(--transition-normal), border-color var(--transition-fast), box-shadow var(--transition-normal);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-focus);
  box-shadow: 0 12px 30px -10px rgba(99, 102, 241, 0.2), var(--shadow-lg);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}
.landing-footer {
  text-align: center;
  padding: 32px 0;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}

/* Authentication tabs & card */
.auth-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}
.auth-tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.auth-tab-btn.active {
  background: var(--primary);
  color: #fff;
}

/* Dark Styled Leaflet Controls */
.leaflet-bar {
  border: 1px solid var(--border-light) !important;
  box-shadow: var(--shadow-md) !important;
}
.leaflet-bar a {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border-light) !important;
  transition: background-color var(--transition-fast) !important;
}
.leaflet-bar a:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
}

/* Back link in Admin sidebar */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}
.back-link:hover {
  color: var(--text-primary);
}

/* Copy Link Area */
.share-link-container {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.share-link-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text-primary);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Modals & Overlays */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.modal-overlay.active {
  display: flex !important;
}
.modal-card {
  width: 440px;
  padding: 32px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

/* Brand styling */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

/* Global Footer */
.global-footer {
  padding: 24px;
  text-align: center;
  background: transparent;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.global-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.global-footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.global-footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}
