:root {
  /* Dark navy palette */
  --bg-primary: #0b1120;
  --bg-secondary: #0f1629;
  --bg-tertiary: #141c32;
  --text-primary: #eef1f7;
  --text-secondary: #a8b8cc;
  --border: rgba(255, 255, 255, 0.08);

  /* Accent colors */
  --accent-blue: #7db8ff;
  --accent-green: #4ade80;
  --accent-amber: #fbbf24;
  --accent-red: #f87171;

  /* Timezone colors - muted */
  --boston-color: #5b8def;
  --melbourne-color: #52c41a;
  --dallas-color: #9254de;

  /* Event type colors */
  --flight-color: #5b8def;
  --birthday-color: #eb2f96;
  --restaurant-color: #52c41a;
  --activity-color: #faad14;

  /* Glass effect */
  --glass-bg: rgba(11, 17, 32, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.5);
  --glass-hover: rgba(255, 255, 255, 0.04);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #7db8ff;
}

a:hover {
  color: #a8d4ff;
}

/* Main Navigation */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 6px 12px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05);
  position: relative;
  scroll-behavior: smooth;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.nav-scroll-hint {
  position: fixed;
  top: 16px;
  right: 12px;
  z-index: 101;
  background: rgba(100, 70, 150, 0.8);
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 3px;
  width: 24px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  opacity: 0.6;
}

.nav-scroll-hint.show {
  display: flex;
}

.nav-scroll-hint:hover {
  background: rgba(120, 90, 170, 0.9);
  opacity: 1;
  color: #fff;
}

.nav-scroll-hint:active {
  transform: scale(0.95);
}

.nav-tab {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-family: inherit;
  opacity: 0.6;
}

.nav-tab:hover {
  opacity: 1;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

a.nav-tab {
  text-decoration: none;
  color: var(--text-secondary);
}

.nav-tab.active {
  opacity: 1;
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 2px solid var(--accent-blue);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.nav-archive {
  position: relative;
  flex-shrink: 0;
}

.nav-archive-toggle {
  opacity: 0.5;
}

.nav-archive-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 4px;
  min-width: 160px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  flex-direction: column;
}

.nav-archive-menu.open {
  display: flex;
}

.nav-archive-menu .nav-tab {
  text-align: left;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  width: 100%;
}

.content-section {
  display: none;
  animation: fadeIn 0.3s ease;
}

.content-section.active {
  display: block;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: rgba(11, 17, 32, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.trip-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.header-countdown {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
  font-weight: 500;
  opacity: 0.5;
  text-align: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.date-selector-btn {
  padding: 8px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.date-selector-btn:hover {
  background: rgba(91, 159, 255, 0.1);
  border-color: var(--accent-blue);
}

.calendar-view-toggle {
  display: flex;
  gap: 6px;
  background: var(--glass-bg);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.calendar-view-btn {
  padding: 6px 12px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.calendar-view-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.calendar-view-btn.active {
  background: linear-gradient(135deg, var(--accent-blue), #3d7bef);
  color: white;
  box-shadow: 0 2px 8px rgba(91, 159, 255, 0.3);
}

.view-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.toggle-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.4;
  font-weight: 600;
  padding: 0 6px;
  white-space: nowrap;
}

.view-btn {
  padding: 8px 16px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.view-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.view-btn.active {
  background: linear-gradient(135deg, var(--accent-blue), #3d7bef);
  color: white;
  box-shadow: 0 4px 12px rgba(91, 159, 255, 0.4);
}

.live-clock {
  display: flex;
  gap: 8px;
}

.clock-tz {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 100px;
  text-align: right;
}

.clock-tz:hover {
  background: rgba(255, 255, 255, 0.05);
}

.clock-tz.boston {
  border-color: rgba(91, 141, 239, 0.2);
}

.clock-tz.melbourne {
  border-color: rgba(82, 196, 26, 0.2);
}

.clock-tz.dallas {
  display: none;
}

.clock-city {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  font-weight: 600;
}

.clock-time {
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.clock-date {
  font-size: 0.8rem;
  opacity: 0.5;
  font-weight: 400;
}

.clock-temp {
  font-size: 0.75rem;
  opacity: 0.4;
  font-variant-numeric: tabular-nums;
}

.schedule-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
}

.timeline-section {
  margin: 12px 0;
  position: relative;
}

.timeline-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.6;
  padding: 8px 0;
}

.timeline-scroll-hint span {
  font-size: 1.3rem;
  animation: nudgeRight 1.5s ease-in-out infinite;
}

@keyframes nudgeRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (max-width: 768px) {
  .timeline-scroll-hint {
    display: flex;
  }
}

.section-title {
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.5;
}

.section-title::before {
  display: none;
}

.timeline-container {
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.timeline-container::-webkit-scrollbar {
  height: 8px;
}

.timeline-container::-webkit-scrollbar-track {
  background: transparent;
}

.timeline-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.timeline-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.timeline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: min-content;
  padding: 4px 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.day-card {
  animation: slideIn 0.5s ease-out backwards;
}

.day-card:nth-child(1) { animation-delay: 0.05s; }
.day-card:nth-child(2) { animation-delay: 0.1s; }
.day-card:nth-child(3) { animation-delay: 0.15s; }
.day-card:nth-child(4) { animation-delay: 0.2s; }
.day-card:nth-child(5) { animation-delay: 0.25s; }
.day-card:nth-child(n+6) { animation-delay: 0.3s; }

.day-card {
  flex-shrink: 0;
  width: 300px;
  background: rgba(15, 22, 41, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.day-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.day-card.empty {
  width: 80px;
  opacity: 0.4;
}

.day-card.empty:hover {
  opacity: 0.4;
}

.day-card.empty .day-events {
  min-height: 30px;
  padding: 8px;
}

.day-card.in-flight {
  width: 130px;
  opacity: 0.6;
  border-color: rgba(91, 141, 239, 0.1);
}

.day-card.in-flight .tz-row,
.day-card.empty .tz-row {
  padding: 8px 10px;
  justify-content: center;
  text-align: center;
}

.day-card.empty .tz-city {
  display: none;
}

.day-card.in-flight .tz-date-block,
.day-card.empty .tz-date-block {
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.day-card.empty .tz-date,
.day-card.empty .tz-day {
  font-size: 0.8rem;
}

.day-card.in-flight .tz-date,
.day-card.in-flight .tz-day {
  font-size: 0.85rem;
}

.empty-day-label {
  padding: 12px 8px;
  font-size: 0.75rem;
  opacity: 0.45;
  text-align: center;
}

.tz-row.in-flight-header {
  justify-content: center;
  text-align: center;
  background: none;
}

.in-flight-date-block {
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
}

.in-flight-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 8px;
  text-align: center;
}

.in-flight-icon {
  font-size: 1rem;
  animation: flyNudge 5s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes flyNudge {
  0%, 85%, 100% { transform: translateX(0) rotate(0deg); }
  89% { transform: translateX(3px) rotate(3deg); }
  93% { transform: translateX(-2px) rotate(-2deg); }
}

.in-flight-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
}

.in-flight-route {
  font-size: 0.75rem;
  opacity: 0.4;
}

.day-kangaroo {
  text-align: center;
  font-size: 1rem;
  padding: 8px 0 12px;
  opacity: 0.4;
  animation: kangarooHop 6s ease-in-out infinite;
  margin-top: auto;
}

@keyframes kangarooHop {
  0%, 80%, 100% { transform: translateY(0); }
  84% { transform: translateY(-4px); }
  88% { transform: translateY(0); }
  91% { transform: translateY(-3px); }
  94% { transform: translateY(0); }
}

.tz-row {
  padding: 10px 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  flex-wrap: wrap;
}

.tz-row::before {
  display: none;
}

.tz-row:last-child {
  border-bottom: none;
}

.tz-row.boston {
  background: rgba(91, 141, 239, 0.05);
  color: var(--boston-color);
}

.tz-row.melbourne {
  background: rgba(82, 196, 26, 0.05);
  color: var(--melbourne-color);
}

.tz-row.dallas {
  background: rgba(146, 84, 222, 0.05);
  color: var(--dallas-color);
}

.tz-city {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  font-weight: 700;
}

.tz-date-block {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

.tz-date {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tz-day {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tz-time {
  font-size: 0.8rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  opacity: 0.5;
  color: var(--text-primary);
  white-space: nowrap;
}

.tz-offset {
  font-size: 0.75rem;
  opacity: 0.5;
  font-style: italic;
  font-weight: 500;
}

.day-events {
  padding: 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.event-card {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.event-card.flight {
  border-left-color: var(--flight-color);
}

.event-card.birthday {
  border-left-color: var(--birthday-color);
  background: rgba(244, 114, 182, 0.06);
}

.event-card.birthday .event-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.event-card.birthday .event-icon {
  font-size: 1.2rem;
}

.event-card.restaurant {
  border-left-color: var(--restaurant-color);
}

.event-card.activity {
  border-left-color: var(--activity-color);
}

.event-header {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.event-icon {
  font-size: 1.125rem;
}

.event-title {
  font-weight: 500;
  font-size: 0.875rem;
}

.event-time {
  font-size: 0.75rem;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

.event-notes {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.5;
}

/* Flight Cards */
.flight-card { padding: 14px !important; }

.flight-times {
  display: flex;
  gap: 12px;
  margin: 8px 0 4px;
}

.flight-col { flex: 1; min-width: 0; }

.flight-col-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-bottom: 4px;
  font-weight: 600;
}

.flight-arr-date {
  font-size: 0.75rem;
  opacity: 0.7;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.flight-tz-times {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flight-tz-time {
  font-size: 0.8rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.tz-label {
  font-size: 0.75rem;
  opacity: 0.5;
  font-weight: 400;
}

.flight-duration { margin: 6px 0 4px; }

.flight-duration-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.flight-duration-fill {
  height: 100%;
  width: 100%;
  border-radius: 2px;
}

.flight-duration-label {
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.5;
  margin-top: 3px;
}

.event-time-multi {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
}

.event-gap {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
  padding: 6px 0;
}

.event-gap span {
  background: var(--bg-tertiary);
  padding: 0 6px;
}

/* Flight List Card */
.flight-list-times {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.flight-list-leg {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.9rem;
}

.flight-list-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
  min-width: 48px;
  font-weight: 600;
}

.flight-list-date {
  font-size: 0.75rem;
  opacity: 0.4;
  margin-left: auto;
}

/* Expandable cards */
.expandable { cursor: pointer; }

.expand-toggle {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 0.4;
  transition: transform 0.2s;
}

.expandable.expanded .expand-toggle { transform: rotate(180deg); }

.flight-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, margin 0.25s ease;
  margin-top: 0;
}

.expandable.expanded .flight-details {
  max-height: 300px;
  margin-top: 8px;
}

.flight-link {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent-blue);
  text-decoration: none;
  padding: 4px 0;
  opacity: 0.8;
}

.flight-link:hover { opacity: 1; text-decoration: underline; }

.flight-status-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.flight-status-btn {
  flex: 1;
  display: block;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.flight-status-depart {
  background: rgba(91, 141, 239, 0.15);
  border: 1px solid rgba(91, 141, 239, 0.3);
  color: var(--accent-blue);
}

.flight-status-depart:hover {
  background: rgba(91, 141, 239, 0.25);
}

.flight-status-arrive {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--accent-green);
}

.flight-status-arrive:hover {
  background: rgba(74, 222, 128, 0.25);
}

.events-section {
  margin: 40px 0;
}

.events-list {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.event-list-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.event-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.event-list-card.flight {
  border-left-color: var(--flight-color);
}

.event-list-card.birthday {
  border-left-color: var(--birthday-color);
  border-left-width: 4px;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(251, 191, 36, 0.06));
}

.event-list-card.birthday .event-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.event-list-card.birthday .event-icon {
  font-size: 1.2rem;
}

.event-list-card.restaurant {
  border-left-color: var(--restaurant-color);
}

.event-list-card.activity {
  border-left-color: var(--activity-color);
}

.fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), #3d7bef);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(91, 159, 255, 0.4), 0 0 0 0 rgba(91, 159, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
  display: none; /* Hidden by default, shown only on schedule tab */
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(91, 159, 255, 0.4), 0 0 0 0 rgba(91, 159, 255, 0.4);
  }
  50% {
    box-shadow: 0 8px 24px rgba(91, 159, 255, 0.4), 0 0 0 12px rgba(91, 159, 255, 0);
  }
}

.fab:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 32px rgba(91, 159, 255, 0.6);
  animation: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--bg-secondary);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.close-btn:hover {
  opacity: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.875rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(91, 159, 255, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.category-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.category-btn {
  padding: 18px;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.category-btn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.category-btn.selected {
  border-color: var(--accent-blue);
  background: rgba(91, 159, 255, 0.15);
  box-shadow: 0 4px 16px rgba(91, 159, 255, 0.3);
}

.category-btn.flight.selected {
  border-color: var(--flight-color);
  background: rgba(91, 159, 255, 0.15);
  box-shadow: 0 4px 16px rgba(91, 159, 255, 0.3);
}

.category-btn.birthday.selected {
  border-color: var(--birthday-color);
  background: rgba(236, 72, 153, 0.15);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.category-btn.restaurant.selected {
  border-color: var(--restaurant-color);
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.category-btn.activity.selected {
  border-color: var(--activity-color);
  background: rgba(245, 158, 11, 0.15);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.category-icon {
  font-size: 1.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), #3d7bef);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(91, 159, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 159, 255, 0.4);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  opacity: 0.4;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.6;
}

.empty-state-text {
  font-size: 1.125rem;
  opacity: 0.7;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(91, 159, 255, 0.3);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .trip-title {
    font-size: 1.35rem;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .view-toggle {
    flex: 1;
  }

  .view-btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .live-clock {
    gap: 12px;
    width: 100%;
  }

  .clock-tz {
    flex: 1;
    min-width: 0;
  }

  .clock-time {
    font-size: 1.1rem;
  }

  .day-card {
    width: 260px;
  }

  .day-card.empty {
    width: 60px;
  }

  .day-card.in-flight {
    width: 110px;
  }

  .category-select {
    grid-template-columns: 1fr;
  }

  .fab {
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
  }

  .modal-content {
    padding: 24px;
  }
}

/* Date Selector Modal */
.date-selector-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.date-selector-modal.show {
  display: flex;
}

.date-selector-content {
  background: var(--bg-secondary);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.date-selector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.date-selector-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.date-selector-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.selector-action-btn {
  flex: 1;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.selector-action-btn:hover {
  background: rgba(91, 159, 255, 0.1);
  border-color: var(--accent-blue);
}

.mini-calendar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 0;
}

.calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--glass-bg);
  border: 1px solid transparent;
}

.calendar-day.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: transparent;
}

.calendar-day.in-trip:hover {
  background: rgba(91, 159, 255, 0.15);
  border-color: var(--accent-blue);
}

.calendar-day.selected {
  background: linear-gradient(135deg, var(--accent-blue), #3d7bef);
  color: white;
  border-color: var(--accent-blue);
  box-shadow: 0 2px 8px rgba(91, 159, 255, 0.4);
}

/* Hourly View */
.hourly-view {
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-height: calc(100vh - 250px);
}

.hourly-header {
  display: grid;
  grid-template-columns: 50px repeat(var(--num-dates, 5), 1fr);
  gap: 0;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.hourly-time-label {
  padding: 6px 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hourly-date-header {
  padding: 6px 8px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hourly-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1px;
}

.hourly-day {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.hourly-grid {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: auto;
}

.hourly-row {
  display: grid;
  grid-template-columns: 50px repeat(var(--num-dates, 5), 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hourly-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.hourly-cell {
  padding: 3px 4px;
  min-height: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  transition: background 0.15s ease;
}

.hourly-cell:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hourly-cell.has-events {
  background: rgba(255, 255, 255, 0.02);
}

.hourly-event {
  padding: 2px 4px;
  border-radius: 3px;
  border-left: 2px solid;
  font-size: 0.75rem;
  margin-bottom: 2px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hourly-event:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-width: 3px;
}

.hourly-event.flight {
  border-color: var(--flight-color);
}

.hourly-event.birthday {
  border-color: var(--birthday-color);
}

.hourly-event.restaurant {
  border-color: var(--restaurant-color);
}

.hourly-event.activity {
  border-color: var(--activity-color);
}

.hourly-event-icon {
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hourly-event-title {
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hourly-event-time {
  font-size: 0.75rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.hourly-night-section {
  margin-top: 12px;
  border-top: 1px solid var(--border);
}

.hourly-night-toggle {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.hourly-night-toggle:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.toggle-icon {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.hourly-night-section.expanded .toggle-icon {
  transform: rotate(90deg);
}

.toggle-text {
  font-weight: 500;
}

.hourly-night-hours {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hourly-night-section.expanded .hourly-night-hours {
  max-height: 2000px;
}

@media (max-width: 768px) {
  .header-controls {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .calendar-view-toggle,
  .date-selector-btn {
    width: 100%;
  }

  .hourly-header {
    grid-template-columns: 50px repeat(auto-fit, minmax(85px, 1fr));
  }

  .hourly-row {
    grid-template-columns: 50px repeat(auto-fit, minmax(85px, 1fr));
  }

  .hourly-time-label {
    font-size: 0.75rem;
    padding: 8px 6px;
  }

  .hourly-cell {
    min-height: 30px;
    padding: 3px 4px;
  }

  .hourly-event {
    font-size: 0.75rem;
    padding: 3px 5px;
  }

  .hourly-event-icon {
    font-size: 0.8rem;
  }
}

/* Sync Status Indicator */
.sync-indicator {
  display: none; /* Hidden - not using sync yet */
}

#sync-status {
  font-size: 1rem;
  line-height: 1;
  animation: pulse-sync 2s ease-in-out infinite;
}

@keyframes pulse-sync {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Bird Guide */
.bird-guide-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.bird-guide {
  max-width: 900px;
  margin: 0 auto;
}

.bird-guide-header {
  text-align: center;
  margin-bottom: 48px;
}

.bird-guide-header h2 {
  font-size: 2.5rem;
  margin: 0 0 12px 0;
  color: var(--text-primary);
  font-weight: 700;
}

.bird-guide-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0 0 24px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bird-checklist-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(74, 158, 255, 0.15);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 24px;
  margin-top: 12px;
}

.checklist-count {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.checklist-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.bird-tips {
  background: rgba(250, 173, 20, 0.08);
  border: 1px solid rgba(250, 173, 20, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.bird-tips h3 {
  font-size: 1.4rem;
  margin: 0 0 16px 0;
  color: var(--text-primary);
  font-weight: 700;
}

.tips-list {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.tips-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  padding-left: 8px;
}

.tips-list li::before {
  content: "→";
  position: absolute;
  left: -16px;
  color: var(--accent-amber);
}

.official-birds {
  margin-bottom: 48px;
}

.official-birds h3 {
  font-size: 1.5rem;
  margin: 0 0 24px 0;
  color: var(--text-primary);
  font-weight: 700;
}

.official-birds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.official-bird-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.official-bird-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.official-bird-emoji {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.official-bird-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.official-bird-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.official-bird-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.april-season-note {
  background: rgba(74, 158, 255, 0.1);
  border-left: 3px solid var(--accent-blue);
  padding: 12px 16px;
  margin-bottom: 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.bird-species-list {
  margin-bottom: 48px;
}

.bird-species-list h3 {
  font-size: 1.5rem;
  margin: 0 0 24px 0;
  color: var(--text-primary);
  font-weight: 700;
}

.bird-species-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px) {
  .bird-species-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bird-species-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.bird-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bird-card-info {
  flex: 1;
  min-width: 0;
}

.bird-species-card.spotted {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(74, 222, 128, 0.1) inset;
}

.bird-species-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.bird-species-card.spotted:hover {
  background: rgba(74, 222, 128, 0.1);
}

.bird-species-card .expand-icon {
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  opacity: 0.4;
  flex-shrink: 0;
}

.bird-species-card.open .expand-icon {
  transform: rotate(180deg);
}

.bird-checkbox-top {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  z-index: 10;
}

.bird-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.bird-checkbox input,
.bird-checkbox-top input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bird-checkbox:hover .checkmark,
.bird-checkbox-top:hover .checkmark {
  border-color: var(--accent-green);
  background: rgba(82, 196, 26, 0.2);
  transform: scale(1.1);
}

.bird-checkbox input:checked ~ .checkmark,
.bird-checkbox-top input:checked ~ .checkmark {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.bird-checkbox input:checked ~ .checkmark::after,
.bird-checkbox-top input:checked ~ .checkmark::after {
  content: "✓";
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

.expand-icon {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.bird-species-photo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.bird-species-emoji {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bird-species-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bird-species-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.bird-difficulty {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bird-difficulty-easy {
  background: rgba(82, 196, 26, 0.2);
  color: var(--accent-green);
}

.bird-difficulty-medium {
  background: rgba(250, 173, 20, 0.2);
  color: var(--accent-amber);
}

.bird-difficulty-hard {
  background: rgba(255, 77, 79, 0.2);
  color: var(--accent-red);
}

.bird-likelihood {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.bird-species-body {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
}

.bird-species-body.expanded {
  display: flex;
}

.bird-detail-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.bird-detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bird-detail strong {
  color: var(--text-primary);
  font-weight: 600;
}

.bird-fun-fact {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(250, 173, 20, 0.08);
  border-left: 2px solid var(--accent-amber);
  border-radius: 6px;
  margin-top: 4px;
}

.best-spots {
  margin-bottom: 48px;
}

.best-spots h3 {
  font-size: 1.5rem;
  margin: 0 0 24px 0;
  color: var(--text-primary);
  font-weight: 700;
}

.fawkner-spots {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.fawkner-spots h3 {
  color: var(--accent-green);
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.spot-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.spot-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.spot-distance {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.spot-birds {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.spot-birds strong {
  color: var(--text-primary);
}

.spot-tip {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 8px;
  background: rgba(74, 158, 255, 0.08);
  border-radius: 6px;
}

.bird-guide-footer {
  text-align: center;
  padding: 24px;
  background: rgba(82, 196, 26, 0.08);
  border: 1px solid rgba(82, 196, 26, 0.2);
  border-radius: 12px;
  margin-top: 32px;
}

.bird-guide-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .bird-guide-header h2 {
    font-size: 2rem;
  }

  .checklist-count {
    font-size: 1.5rem;
  }

  .bird-tips {
    padding: 20px;
  }

  .bird-tips h3 {
    font-size: 1.2rem;
  }

  .official-birds-grid {
    grid-template-columns: 1fr;
  }

  .bird-species-grid {
    grid-template-columns: 1fr;
  }

  .bird-species-photo {
    width: 44px;
    height: 44px;
  }

  .bird-species-emoji {
    font-size: 3rem;
  }

  .bird-species-name {
    font-size: 1.1rem;
  }

  .bird-likelihood {
    font-size: 0.8rem;
  }

  .expand-hint {
    padding: 3px 8px;
  }

  .expand-text {
    font-size: 0.75rem;
  }

  .expand-icon {
    font-size: 0.75rem;
  }

  .spots-grid {
    grid-template-columns: 1fr;
  }

  .bird-checkbox-top {
    top: 12px;
    right: 12px;
  }

  .checkmark {
    width: 24px;
    height: 24px;
  }
}

/* Guide Sections - Universal Styling */
.guide-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.guide-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.guide-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.guide-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
  opacity: 0.7;
}

/* Priority Alert Box */
.priority-alert {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(74, 222, 128, 0.1) inset;
}

.priority-alert p {
  margin: 6px 0;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

.priority-alert strong {
  color: var(--accent-green);
  font-size: 1rem;
  margin-right: 6px;
}

/* Guide Sections */
.guide-section {
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.guide-section:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.collapsible-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.collapse-icon {
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.collapsible-content.expanded {
  max-height: 5000px;
  padding: 16px;
}

.guide-section:has(.collapsible-content.expanded) .collapse-icon {
  transform: rotate(180deg);
}

/* Food Cards */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.food-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.2s ease;
}

.food-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.food-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.food-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.food-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.food-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.food-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.food-where {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.food-where strong {
  color: var(--accent-blue);
}

.food-tip {
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 8px 12px;
  background: rgba(250, 173, 20, 0.1);
  border-left: 3px solid var(--accent-amber);
  border-radius: 6px;
}

/* Restaurant Cards */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.restaurant-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: all 0.2s ease;
}

.restaurant-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.restaurant-card.priority-1 {
  border-left-color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.restaurant-card.priority-2 {
  border-left-color: #c0c0c0;
}

.restaurant-card.priority-3 {
  border-left-color: #cd7f32;
}

.restaurant-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.restaurant-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.restaurant-price {
  font-size: 1rem;
  color: var(--accent-green);
  font-weight: 600;
}

.restaurant-cuisine {
  font-size: 0.85rem;
  color: var(--accent-blue);
  margin-bottom: 6px;
  font-weight: 500;
}

.restaurant-address {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  opacity: 0.7;
}

.food-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.food-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 3px;
}

.food-badge.must-visit {
  background: rgba(251, 191, 36, 0.15);
  color: var(--accent-amber);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.food-badge.family {
  background: rgba(74, 222, 128, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.must-visit-card {
  border-color: rgba(251, 191, 36, 0.2);
}

.food-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.food-jump-link {
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.food-jump-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.restaurant-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.tips-column {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.tips-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.compact-list {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.compact-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  padding-left: 8px;
}

.compact-list li::before {
  content: "•";
  position: absolute;
  left: -12px;
  color: var(--accent-blue);
  font-weight: bold;
}

.highlight-list li::before {
  content: "✓";
  color: var(--accent-green);
}

/* Safety & Wildlife Cards */
.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.wildlife-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wildlife-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.wildlife-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.wildlife-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.wildlife-title {
  flex: 1;
}

.wildlife-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.wildlife-danger {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wildlife-danger.danger-low,
.wildlife-danger.danger-low-\(annoying\) {
  background: rgba(82, 196, 26, 0.2);
  color: var(--accent-green);
}

.wildlife-danger.danger-low-medium,
.wildlife-danger.danger-low-medium-\(beaches\) {
  background: rgba(250, 173, 20, 0.2);
  color: var(--accent-amber);
}

.wildlife-danger.danger-mythical {
  background: rgba(146, 84, 222, 0.2);
  color: #a78bfa;
}

.wildlife-danger.danger-very-low-\(urban\) {
  background: rgba(74, 158, 255, 0.2);
  color: var(--accent-blue);
}

.wildlife-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.wildlife-action {
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 10px 12px;
  background: rgba(74, 158, 255, 0.1);
  border-left: 3px solid var(--accent-blue);
  border-radius: 6px;
}

.wildlife-action strong {
  color: var(--accent-blue);
}

/* Safety Hero Image */
.safety-hero-image {
  margin: 24px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.safety-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Delivery Notice */
.delivery-notice {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.delivery-notice strong {
  color: var(--accent-amber);
}

/* Travel Guide Styles */
.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.airport-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.airport-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.airport-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.airport-emoji {
  font-size: 2.5rem;
}

.airport-title {
  flex: 1;
}

.airport-code {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 1px;
}

.airport-name {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.airport-tips {
  list-style: none;
  padding: 0;
  margin: 0;
}

.airport-tips li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.airport-tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.packing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.packing-category {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.packing-category:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.packing-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.packing-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.packing-items li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.packing-items li::before {
  content: "□";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

/* Laws & Regulations */
.laws-notice {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.laws-notice strong {
  color: var(--accent-amber);
}

.laws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.law-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.law-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.law-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.law-category {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.law-severity {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.law-severity.severity-serious-can-be-arresteddeported,
.law-severity.severity-very-serious-heavy-fines-420-2664 {
  background: rgba(248, 113, 113, 0.2);
  color: var(--accent-red);
}

.law-severity.severity-medium-fines-100-400,
.law-severity.severity-medium-fines-181,
.law-severity.severity-medium-high-fines-criminal-charges {
  background: rgba(251, 191, 36, 0.2);
  color: var(--accent-amber);
}

.law-severity.severity-high-fines-license-suspension {
  background: rgba(255, 152, 0, 0.2);
  color: #fb923c;
}

.law-severity.severity-low-fines-93 {
  background: rgba(74, 158, 255, 0.2);
  color: var(--accent-blue);
}

.law-severity.severity-none-cultural-note {
  background: rgba(146, 84, 222, 0.2);
  color: #a78bfa;
}

.law-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.law-action {
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 10px 12px;
  background: rgba(74, 158, 255, 0.1);
  border-left: 3px solid var(--accent-blue);
  border-radius: 6px;
}

.law-action strong {
  color: var(--accent-blue);
}

/* Rideshare & Transport */
.rideshare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.rideshare-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.rideshare-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.rideshare-logo {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.rideshare-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.rideshare-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.rideshare-download {
  font-size: 0.8rem;
  color: var(--accent-blue);
  font-weight: 500;
}

.public-transport-card {
  background: rgba(74, 158, 255, 0.1);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.public-transport-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.public-transport-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 8px 0;
}

.public-transport-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Slang Cards */
.slang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.slang-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.slang-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.slang-word {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.slang-meaning {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 500;
}

.slang-example {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
}

.phrases-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phrase-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-green);
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.2s ease;
}

.phrase-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.phrase-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 6px;
}

.phrase-meaning {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.phrase-meaning strong {
  color: var(--accent-green);
}

.phrase-explanation {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.warnings-list,
.funfacts-list,
.safety-tips-list,
.birding-tips {
  margin: 0;
  padding-left: 24px;
  list-style: none;
}

.warnings-list li,
.funfacts-list li,
.safety-tips-list li,
.birding-tips li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 8px;
}

.warnings-list li::before {
  content: "⚠️";
  position: absolute;
  left: -24px;
  font-size: 1rem;
}

.funfacts-list li::before,
.safety-tips-list li::before,
.birding-tips li::before {
  content: "→";
  position: absolute;
  left: -16px;
  color: var(--accent-blue);
  font-weight: bold;
}

.funfacts-list li strong,
.safety-tips-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Birding Spots */
.spots-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.spot-card-large {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  transition: all 0.2s ease;
}

.spot-card-large:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.spot-card-large.fawkner-highlight {
  border-left: 4px solid var(--accent-green);
  background: rgba(82, 196, 26, 0.05);
}

.spot-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.spot-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.spot-distance {
  font-size: 0.8rem;
  color: var(--accent-blue);
  font-weight: 500;
}

.spot-birds {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.spot-birds strong {
  color: var(--text-primary);
}

.spot-tip {
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 10px 12px;
  background: rgba(250, 173, 20, 0.1);
  border-left: 3px solid var(--accent-amber);
  border-radius: 6px;
}

/* Common Birds Grid */
.common-birds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.common-bird-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.common-bird-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.common-bird-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 6px;
}

.common-bird-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.common-bird-sound {
  font-size: 0.8rem;
  color: var(--text-primary);
  padding: 6px 10px;
  background: rgba(91, 159, 255, 0.1);
  border-left: 2px solid var(--accent-blue);
  border-radius: var(--radius-sm);
}

.common-bird-sound strong {
  color: var(--accent-blue);
}

/* Prep Guide Styles */

/* Famous Australians */
.famous-aussies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.famous-aussie-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.famous-aussie-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.famous-aussie-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.famous-aussie-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.famous-aussie-category {
  font-size: 0.75rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  background: rgba(91, 159, 255, 0.15);
  border-radius: 12px;
}

.famous-aussie-known,
.famous-aussie-fun {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.famous-aussie-known strong,
.famous-aussie-fun strong {
  color: var(--text-primary);
  font-weight: 600;
}

.prep-movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.prep-movie-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.prep-movie-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.prep-movie-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.prep-movie-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.prep-movie-year {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.prep-movie-quote {
  font-size: 0.95rem;
  color: var(--accent-blue);
  font-style: italic;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgba(91, 159, 255, 0.08);
  border-left: 2px solid var(--accent-blue);
  border-radius: var(--radius-sm);
}

.prep-movie-why {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.prep-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prep-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.prep-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.prep-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.prep-item-quote {
  font-size: 0.9rem;
  color: var(--accent-green);
  font-style: italic;
  margin-bottom: 6px;
}

.prep-item-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.prep-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.prep-blog-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.prep-blog-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.prep-blog-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.prep-blog-type {
  font-size: 0.8rem;
  color: var(--accent-amber);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prep-blog-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.prep-blog-url {
  font-size: 0.8rem;
  margin-top: 8px;
}

.prep-blog-url a {
  color: var(--accent-blue);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.prep-blog-url a:hover {
  opacity: 1;
  text-decoration: underline;
}

.prep-social-section {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.prep-social-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 10px 0;
}

.cultural-notes-list {
  margin: 0;
  padding-left: 24px;
  list-style: none;
}

.cultural-notes-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  padding-left: 8px;
}

.cultural-notes-list li::before {
  content: "→";
  position: absolute;
  left: -16px;
  color: var(--accent-amber);
  font-weight: bold;
}

@media (max-width: 768px) {
  /* Hide date filter on mobile */
  .header-controls {
    display: none;
  }

  .schedule-controls {
    flex-direction: column;
    gap: 12px;
  }

  .schedule-controls .view-toggle,
  .schedule-controls .calendar-view-toggle,
  .schedule-controls .date-selector-btn {
    width: 100%;
  }

  /* Compact single-line clocks on mobile */
  .live-clock {
    width: 100%;
    gap: 8px;
    justify-content: center;
    font-size: 0.8rem;
  }

  .clock-tz {
    min-width: 0;
    padding: 4px 10px;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex: 0 1 auto;
  }

  .clock-tz.dallas {
    display: none;
  }

  .clock-city {
    font-size: 0.75rem;
    opacity: 0.7;
  }

  .clock-time {
    font-size: 0.85rem;
    font-weight: 600;
  }

  .clock-date {
    display: none;
  }

  .clock-temp {
    font-size: 0.75rem;
    opacity: 0.5;
  }

  .header-content {
    justify-content: center;
    gap: 12px;
  }

  .prep-movies-grid,
  .prep-blogs-grid {
    grid-template-columns: 1fr;
  }
}
  .guide-header h2 {
    font-size: 1.75rem;
  }

  .guide-subtitle {
    font-size: 0.95rem;
  }

  .food-grid,
  .restaurant-grid,
  .wildlife-grid,
  .rideshare-grid,
  .slang-grid,
  .spots-grid-large,
  .common-birds-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .collapsible-header {
    font-size: 1.2rem;
    padding: 14px 18px;
  }

  .collapsible-content.expanded {
    padding: 18px;
  }
}

/* Links & Resources Section */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.app-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.app-card.priority-1 {
  border-left: 3px solid var(--accent-green);
}

.app-card.priority-2 {
  border-left: 3px solid var(--accent-blue);
}

.app-card.priority-3 {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.app-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.app-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.app-priority {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(74, 222, 128, 0.2);
  color: var(--accent-green);
}

.app-card.priority-2 .app-priority {
  background: rgba(91, 143, 255, 0.2);
  color: var(--accent-blue);
}

.app-card.priority-3 .app-priority {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.app-category {
  font-size: 0.8rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 8px;
}

.app-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.app-links {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.app-link {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.app-link.ios {
  background: rgba(91, 143, 255, 0.2);
  color: var(--accent-blue);
  border: 1px solid rgba(91, 143, 255, 0.3);
}

.app-link.ios:hover {
  background: rgba(91, 143, 255, 0.3);
  border-color: var(--accent-blue);
}

.app-link.android {
  background: rgba(74, 222, 128, 0.2);
  color: var(--accent-green);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.app-link.android:hover {
  background: rgba(74, 222, 128, 0.3);
  border-color: var(--accent-green);
}

.app-setup {
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 8px 10px;
  background: rgba(251, 191, 36, 0.1);
  border-left: 2px solid var(--accent-amber);
  border-radius: 4px;
}

.app-setup strong {
  color: var(--accent-amber);
}

/* SIM Cards */
.sim-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.sim-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sim-card.priority-1 {
  border-left: 3px solid var(--accent-green);
}

.sim-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.sim-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sim-priority {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(74, 222, 128, 0.2);
  color: var(--accent-green);
}

.sim-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.sim-url {
  margin-bottom: 10px;
}

.sim-url a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.sim-url a:hover {
  text-decoration: underline;
}

.sim-note {
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 8px 10px;
  background: rgba(74, 158, 255, 0.1);
  border-left: 2px solid var(--accent-blue);
  border-radius: 4px;
  margin-top: 10px;
}

.sim-note strong {
  color: var(--accent-blue);
}

/* Websites */
.websites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.website-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.website-card.priority-1 {
  border-left: 3px solid var(--accent-green);
}

.website-card.priority-2 {
  border-left: 3px solid var(--accent-blue);
}

.website-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.website-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.website-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.website-priority {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(74, 222, 128, 0.2);
  color: var(--accent-green);
}

.website-card.priority-2 .website-priority {
  background: rgba(91, 143, 255, 0.2);
  color: var(--accent-blue);
}

.website-category {
  font-size: 0.8rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 8px;
}

.website-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.website-url a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.website-url a:hover {
  text-decoration: underline;
}

/* Social Media */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.social-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.social-card.priority-1 {
  border-left: 3px solid var(--accent-green);
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.social-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.social-platform {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  background: rgba(146, 84, 222, 0.2);
  color: #a78bfa;
}

.social-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.social-url a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.social-url a:hover {
  text-decoration: underline;
}

/* Timeline */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-phase {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.timeline-phase:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.timeline-when {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-tasks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-tasks li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.timeline-tasks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Trip Countdown Widget */
.countdown-widget {
  background: linear-gradient(135deg, rgba(91, 143, 255, 0.15), rgba(74, 222, 128, 0.15));
  border: 2px solid rgba(91, 143, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.countdown-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.countdown-time {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.countdown-weeks,
.countdown-days {
  color: var(--accent-blue);
  text-shadow: 0 0 20px rgba(91, 143, 255, 0.5);
}

.countdown-date {
  font-size: 0.95rem;
  color: var(--accent-green);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.countdown-started {
  color: var(--accent-green);
  font-size: 1.5rem;
  animation: pulse-celebrate 1s ease-in-out infinite;
}

@keyframes pulse-celebrate {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .countdown-time {
    font-size: 1.8rem;
  }

  .countdown-label {
    font-size: 0.9rem;
  }
}

#schedule-section #now-container {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   NOW TAB STYLES
   ========================================== */

.now-header {
  text-align: center;
  margin-bottom: 32px;
}

.now-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.now-times {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.now-time {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.now-time.boston {
  border-left: 4px solid var(--boston-blue);
}

.now-time.melbourne {
  border-left: 4px solid var(--melbourne-orange);
}

.now-time-city {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.now-time-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.now-time-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.now-phase-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 6px solid var(--accent-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.now-phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.now-phase-icon {
  font-size: 3rem;
  line-height: 1;
}

.now-phase-info {
  flex: 1;
}

.now-phase-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.now-phase-countdown {
  font-size: 1rem;
  color: var(--accent-green);
  font-weight: 600;
}

.now-phase-section {
  margin-bottom: 24px;
}

.now-phase-section h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.now-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.now-tips-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.now-tips-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.now-phase-upcoming {
  background: rgba(91, 143, 255, 0.1);
  border-left: 4px solid var(--accent-blue);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.now-phase-upcoming strong {
  color: var(--accent-blue);
}

.now-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
}

.now-nav-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  flex: 1;
}

.now-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.now-nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.now-nav-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.now-quick-links {
  margin-top: 32px;
}

.now-quick-links h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.now-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.now-quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(91, 143, 255, 0.1);
  border: 1px solid rgba(91, 143, 255, 0.3);
  color: var(--text-primary);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.now-quick-link:hover {
  background: rgba(91, 143, 255, 0.2);
  border-color: rgba(91, 143, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 143, 255, 0.2);
}

@media (max-width: 768px) {
  .now-phase-icon {
    font-size: 2.5rem;
  }

  .now-phase-name {
    font-size: 1.3rem;
  }

  .now-time-value {
    font-size: 1.5rem;
  }

  .now-nav-bar {
    padding: 6px 8px;
  }

  .now-nav-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .now-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   EMERGENCY TAB STYLES
   ========================================== */

.emergency-alert {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(251, 146, 60, 0.15));
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
}

.emergency-alert h3 {
  color: #ef4444;
  margin-bottom: 16px;
  font-size: 1.5rem;
  text-align: center;
}

.emergency-numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px) {
  .emergency-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.emergency-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.emergency-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.emergency-phone {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.emergency-phone:hover {
  color: #dc2626;
  text-decoration: underline;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}

.contact-card h4 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 8px 0;
}

.contact-card a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .info-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-list--single {
    grid-template-columns: 1fr;
  }
}

.info-item {
  background: rgba(255, 255, 255, 0.02);
  border-left: 4px solid var(--accent-blue);
  padding: 16px;
  border-radius: var(--radius-md);
}

.info-item h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.info-item p, .info-item ul {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 4px 0;
}

.info-item ul {
  padding-left: 20px;
  margin-top: 8px;
}

.info-item li {
  margin: 6px 0;
}

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

.tip-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.tip-content h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.tip-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .emergency-number {
    flex-direction: column;
    gap: 8px;
  }

  .emergency-phone {
    font-size: 1.5rem;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CHECKLIST STYLES
   ========================================== */

.checklist-item {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  transition: opacity 0.2s ease;
}

.checklist-item.checked {
  opacity: 0.5;
}

.checklist-item.checked .checklist-text {
  text-decoration: line-through;
  color: var(--text-secondary);
}

.checklist-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  width: 100%;
}

.checklist-checkbox {
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent-green);
}

.checklist-text {
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.checklist-progress-container {
  margin: 16px 0 24px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.checklist-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transition: width 0.3s ease;
  border-radius: 6px;
}

.progress-text {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.packing-items .checklist-item {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.packing-items .checklist-item::before {
  display: none;
}

.packing-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.packing-subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  font-style: italic;
}

.packing-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.packing-toggle-all {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.packing-toggle-all:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-primary);
}

.packing-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bag-tag {
  display: inline-block;
  font-size: 0.8rem;
  padding: 1px 7px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 600;
  white-space: nowrap;
}

.bag-carry {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.bag-check {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.bag-forgot {
  background: rgba(250, 204, 21, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(250, 204, 21, 0.25);
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-progress-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 36px;
  text-align: center;
  transition: all 0.2s ease;
}

.cat-progress-badge.cat-complete {
  color: var(--accent-green);
  background: rgba(74, 222, 128, 0.12);
}

/* Dallas Layover Guide */
.dfw-guide {
  max-width: 900px;
}

.dfw-header {
  margin-bottom: 24px;
}

.dfw-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dallas-color);
}

.dfw-subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 4px;
}

.dfw-countdown-widget {
  background: linear-gradient(135deg, rgba(146, 84, 222, 0.15), rgba(146, 84, 222, 0.05));
  border: 1px solid rgba(146, 84, 222, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.dfw-countdown-route {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dfw-countdown-departs {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.dfw-countdown-timer {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dallas-color);
  font-variant-numeric: tabular-nums;
  margin: 12px 0 4px;
}

.dfw-countdown-timer.boarding-now {
  color: var(--accent-green);
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.dfw-countdown-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dfw-section {
  margin-bottom: 20px;
}

.dfw-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.dfw-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px) {
  .dfw-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dfw-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.dfw-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.dfw-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.dfw-terminal {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dallas-color);
  background: rgba(146, 84, 222, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
}

.dfw-item-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Olinda color override */
.olinda-title {
  color: var(--accent-green) !important;
}

.olinda-guide .dfw-terminal {
  color: var(--accent-green);
  background: rgba(74, 222, 128, 0.15);
}

/* Tennis Guide */
.tennis-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.tennis-detail {
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tennis-detail strong {
  color: var(--text-primary);
}

.tennis-list {
  margin: 8px 0 12px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tennis-list li {
  margin-bottom: 4px;
}

.tennis-steps {
  margin: 8px 0 12px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.tennis-steps li {
  margin-bottom: 6px;
}

.tennis-steps a {
  color: var(--accent-blue);
}

.tennis-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tennis-book-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--accent-green);
  color: #000;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.tennis-book-btn:hover {
  opacity: 0.85;
}

.tennis-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.tennis-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 0.9rem;
}

.tennis-price-table th {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 500;
}

.tennis-price-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.tennis-price-table tr:last-child td {
  border-bottom: none;
}

/* What's On - AFL & Comedy Festival */
.guide-intro {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.subsection-title {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

/* AFL Game Cards */
.afl-games-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.afl-game-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.afl-game-card.recommended {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.15);
}

.recommended-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent-green);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.afl-game-header {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.afl-game-date {
  color: var(--accent-amber);
  font-weight: 600;
  font-size: 0.85rem;
}

.afl-game-time {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.afl-game-match {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.afl-game-venue {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.afl-game-notes {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.afl-no-games {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.85rem;
  margin: 0.75rem 0;
  padding: 0.75rem;
  background: var(--bg-tertiary);
  border-radius: 8px;
}

/* Ticket Prices */
.ticket-prices {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-tertiary);
  border-radius: 8px;
  overflow: hidden;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.ticket-row:last-child {
  border-bottom: none;
}

.ticket-type {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.ticket-price {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Comedy Acts Grid */
.comedy-acts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.comedy-act-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
}

.comedy-act-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.comedy-act-origin {
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.comedy-act-show {
  color: var(--accent-amber);
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 0.25rem;
}

.comedy-act-notes {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Comedy Venues */
.comedy-venues-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.comedy-venue-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
}

.comedy-venue-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.comedy-venue-location {
  color: var(--accent-blue);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.comedy-venue-notes {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Family Shows */
.birthday-idea {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.family-shows-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.family-show-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem;
}

.family-show-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
  gap: 0.5rem;
}

.family-show-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.family-show-appeal {
  color: var(--accent-blue);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.family-show-details {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}

.family-show-dates,
.family-show-time,
.family-show-price {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.family-show-price {
  color: var(--accent-green);
  font-weight: 600;
}

.family-show-venue {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.family-show-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Activity Cards */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.activity-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem;
}

.activity-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
  gap: 0.5rem;
}

.activity-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.activity-type {
  color: var(--accent-amber);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.activity-address {
  color: var(--accent-blue);
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.activity-price {
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.activity-note {
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.5;
}

/* Past Days Toggle */
#past-days-container {
  padding: 0 16px;
}

.past-days-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  cursor: pointer;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.2s;
  font-family: inherit;
}

.past-days-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.past-days-toggle.active {
  background: rgba(82, 196, 26, 0.08);
  border-color: rgba(82, 196, 26, 0.2);
  color: var(--melbourne-color);
}

/* Arrival Banner */
.arrival-banner {
  background: linear-gradient(135deg, rgba(82, 196, 26, 0.1), rgba(82, 196, 26, 0.03));
  border: 1px solid rgba(82, 196, 26, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin: 0 16px 20px;
}

.arrival-banner-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.arrival-banner-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.arrival-banner-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--melbourne-color);
}

.arrival-banner-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 3px;
}

.arrival-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.arrival-info-item {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.arrival-info-item.highlight {
  border-color: rgba(82, 196, 26, 0.25);
  background: rgba(82, 196, 26, 0.08);
}

.arrival-info-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 5px;
  opacity: 0.8;
}

.arrival-info-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.arrival-info-detail {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 3px;
}

.arrival-pickup-section {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(82, 196, 26, 0.15);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 18px;
}

.arrival-pickup-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--melbourne-color);
  margin-bottom: 10px;
}

.arrival-pickup-details p {
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 8px;
}

.arrival-pickup-details p:last-child {
  margin-bottom: 0;
}

.arrival-pickup-details strong {
  color: var(--melbourne-color);
}

.arrival-tips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.arrival-tip {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.arrival-tip::before {
  content: '·';
  position: absolute;
  left: 5px;
  color: var(--melbourne-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.arrival-track {
  text-align: center;
}

.arrival-track a {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(82, 196, 26, 0.12);
  border: 1px solid rgba(82, 196, 26, 0.25);
  border-radius: 8px;
  color: var(--melbourne-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.arrival-track a:hover {
  background: rgba(82, 196, 26, 0.22);
  border-color: rgba(82, 196, 26, 0.4);
}

/* Jet Lag Guide */
.jetlag-day {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.jetlag-day-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.jetlag-day-icon {
  font-size: 1.4rem;
}

.jetlag-day-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.jetlag-day-tips {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jetlag-day-tips li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 5px 0 5px 18px;
  position: relative;
}

.jetlag-day-tips li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent-amber);
  font-weight: 700;
  font-size: 1.1rem;
}

.jetlag-strategies {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.jetlag-strategy {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 14px 16px;
}

.jetlag-strategy-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-amber);
  margin-bottom: 5px;
}

.jetlag-strategy-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Trip Log / Done */
.done-entries {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.done-entry {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 14px 16px;
}

.done-entry-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.done-check {
  color: var(--accent-green, #52c41a);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Photo album cards */

.photo-album-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
}

.photo-album-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.photo-album-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.photo-album-link {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #7db8ff;
  text-decoration: none;
}

.photo-album-link:hover {
  text-decoration: underline;
}

.photo-album-placeholder {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.photo-album-featured {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(245, 158, 11, 0.08));
  border-color: rgba(249, 115, 22, 0.2);
}

.photo-album-link--big {
  font-size: 1.15rem;
  padding: 10px 20px;
  background: rgba(249, 115, 22, 0.15);
  border-radius: 8px;
  display: inline-block;
  margin-top: 4px;
}

/* Today tab color labels */
.today-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}
.today-label--vegan {
  background: rgba(82, 196, 26, 0.15);
  color: #52c41a;
}
.today-label--free {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}
.today-label--tip {
  background: rgba(249, 115, 22, 0.15);
  color: #f59e0b;
}

.done-entry-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.done-entry-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 26px;
}

.done-entry-fact {
  font-size: 0.88rem;
  color: var(--accent-amber, #f59e0b);
  line-height: 1.55;
  padding-left: 26px;
  margin-top: 6px;
  font-style: italic;
}

.done-day {
  margin-bottom: 24px;
}

.done-day-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-blue, #60a5fa);
  margin: 0 0 10px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.done-placeholder {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  padding: 8px 16px;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .arrival-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arrival-banner {
    margin: 0 8px 16px;
    padding: 18px;
  }

  .arrival-banner-title {
    font-size: 1.1rem;
  }

  .arrival-info-value {
    font-size: 1rem;
  }
}
