:root {
  --navy: #0A1628;
  --navy-light: #132040;
  --navy-mid: #1A2D52;
  --red: #C8102E;
  --red-dark: #A00E24;
  --white: #FFFFFF;
  --off-white: #F0F4FF;
  --silver: #8A9BB5;
  --silver-light: #B8C5D8;
  --divider: rgba(255,255,255,0.08);
  --card-bg: #132040;
  --card-border: rgba(200,16,46,0.3);
}

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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  background: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

body {
  display: flex;
  flex-direction: column;
}

.app {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Tab Content */
.tab-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 80px;
}

.tab-page { display: none; }
.tab-page.active { display: block; }

/* Bottom Tab Bar */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(19, 32, 64, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: center;
  padding-bottom: env(safe-area-inset-bottom, 8px);
  z-index: 100;
}

.tab-bar-inner {
  display: flex;
  max-width: 480px;
  width: 100%;
}

.tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px 6px;
  background: none;
  border: none;
  color: var(--silver);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.tab-btn.active {
  color: var(--red);
}

.tab-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 60px 20px 32px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.hero-sponsor {
  color: var(--silver);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.hero-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.red-bar {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 12px;
}

.hero-dates {
  font-size: 18px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 4px;
}

.hero-location {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 20px;
}

.venue-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--silver-light);
}

.venue-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

/* Stats Row */
.stats-row {
  display: flex;
  background: var(--navy-light);
  margin: -16px 16px 0;
  border-radius: 16px;
  border: 1px solid var(--divider);
  position: relative;
  z-index: 1;
}

.stat-card {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
}

.stat-card + .stat-card {
  border-left: 1px solid var(--divider);
}

.stat-icon {
  color: var(--red);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 11px;
  color: var(--silver);
}

/* Section Cards */
.section {
  margin: 20px 16px 0;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--divider);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-accent {
  width: 3px;
  height: 18px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.body-text {
  color: var(--silver-light);
  font-size: 14px;
  line-height: 1.6;
}

.body-text + .body-text {
  margin-top: 12px;
}

ul.body-text {
  padding-left: 30px;
  margin-top: 10px;
}

ul.body-text li + li {
  margin-top: 16px;
  margin-bottom: 10px;
}

/* Circuit Card */
.circuit-card {
  display: flex;
  align-items: center;
  margin-top: 16px;
  background: var(--navy);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--card-border);
}

.circuit-item {
  flex: 1;
  text-align: center;
}

.circuit-venue {
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}

.circuit-team {
  font-size: 11px;
  color: var(--silver);
  margin-top: 2px;
}

.circuit-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.circuit-summary {
  text-align: center;
  margin-top: 14px;
}

.circuit-summary-text {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.circuit-summary-sub {
  color: var(--silver-light);
  font-size: 12px;
  margin-top: 4px;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list + .body-text {
  margin-top: 14px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-row svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}

.info-row span {
  color: var(--silver-light);
  font-size: 14px;
  line-height: 1.4;
}

.app-store-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 12px;
}

.store-image-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

.store-image-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  border: 1px solid #3c3c3c;
  border-radius: 10px;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  min-width: 140px;
}

.app-store-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-caption {
  font-size: 9px;
  letter-spacing: 0.6px;
  opacity: 0.9;
  text-transform: uppercase;
}

.store-title {
  font-size: 18px;
  font-weight: 600;
}

/* ---- AGENDA PAGE ---- */
.page-header {
  background: linear-gradient(180deg, var(--navy), var(--navy-mid));
  padding: 60px 20px 20px;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.page-sub {
  color: var(--silver);
  font-size: 13px;
  margin-top: 2px;
}

/* Day Picker */
.day-picker {
  display: flex;
  background: var(--navy);
  border-radius: 12px;
  padding: 4px;
  border: 1px solid var(--divider);
  margin-top: 16px;
}

.day-tab {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  background: none;
  color: var(--silver);
  -webkit-tap-highlight-color: transparent;
}

.day-tab.active {
  background: var(--red);
  color: var(--white);
}

.day-tab-day {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.day-tab-date {
  display: block;
  font-size: 10px;
  margin-top: 2px;
}

.day-label {
  color: var(--silver);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 20px 16px 12px;
}

/* Event Cards */
.day-events { padding: 0 16px; }

.event-card {
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid var(--divider);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

.event-card-inner {
  display: flex;
  align-items: center;
  padding: 14px;
  gap: 12px;
}

.event-left {
  width: 60px;
  text-align: right;
  flex-shrink: 0;
}

.event-time {
  font-size: 12px;
  font-weight: 600;
}

.event-duration {
  font-size: 11px;
  color: var(--silver);
}

.event-divider-line {
  width: 2px;
  height: 36px;
  background: var(--red);
  border-radius: 1px;
  opacity: 0.7;
  flex-shrink: 0;
}

.event-content {
  flex: 1;
  min-width: 0;
}

.event-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-title {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.flag-badge {
  background: var(--red);
  border-radius: 4px;
  padding: 3px;
  display: flex;
  flex-shrink: 0;
}

.flag-badge svg {
  width: 10px;
  height: 10px;
  fill: var(--white);
}

.event-subtitle {
  font-size: 12px;
  color: var(--silver);
  margin-top: 2px;
}

.event-location-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.event-location-row svg {
  width: 12px;
  height: 12px;
  fill: var(--silver);
}

.event-location-row span {
  font-size: 11px;
  color: var(--silver);
}

.chevron-icon {
  width: 16px;
  height: 16px;
  fill: var(--silver);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.event-card.expanded .chevron-icon {
  transform: rotate(180deg);
}

.event-details {
  border-top: 1px solid var(--divider);
  padding: 12px 14px;
  display: none;
}

.event-card.expanded .event-details {
  display: block;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.detail-row:last-child { margin-bottom: 0; }

.detail-row svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-row .detail-icon { fill: var(--silver); }
.detail-row .detail-icon-red { fill: var(--red); }

.detail-row span {
  font-size: 12px;
  color: var(--silver-light);
  line-height: 1.5;
}

.detail-row .detail-highlight {
  color: var(--off-white);
}

/* ---- PEOPLE PAGE ---- */
.group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 12px;
}

.group-badge {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.group-badge.alt {
  background: var(--navy-mid);
}

.group-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  flex: 1;
}

.group-count {
  background: var(--navy-light);
  border-radius: 10px;
  padding: 2px 8px;
  border: 1px solid var(--divider);
  font-size: 12px;
  font-weight: 600;
  color: var(--silver-light);
}

.people-list { padding: 0 16px; }

.person-card {
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid var(--divider);
  margin-bottom: 8px;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.person-row {
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar.marshal {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.avatar.driver {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

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

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

.person-name {
  font-size: 14px;
  font-weight: 600;
}

.nickname-badge {
  background: rgba(200,16,46,0.15);
  border-radius: 4px;
  padding: 2px 6px;
  border: 1px solid rgba(200,16,46,0.3);
  font-size: 11px;
  color: var(--red);
}

.person-location {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
}

.person-location svg {
  width: 11px;
  height: 11px;
  fill: var(--silver);
}

.person-location span {
  font-size: 12px;
  color: var(--silver);
}

.contact-details {
  border-top: 1px solid var(--divider);
  padding: 12px;
  display: none;
}

.person-card.expanded .contact-details {
  display: block;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--divider);
  text-decoration: none;
  color: var(--silver-light);
  margin-bottom: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.contact-btn:last-child { margin-bottom: 0; }

.contact-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(200,16,46,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 15px;
  height: 15px;
  fill: var(--red);
}

.contact-text {
  flex: 1;
  font-size: 13px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-arrow {
  width: 13px;
  height: 13px;
  fill: var(--silver);
  flex-shrink: 0;
}

/* ---- LODGING PAGE ---- */
.summary-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 14px;
  margin: 0 16px 16px;
  border: 1px solid var(--divider);
}

.summary-card svg {
  width: 16px;
  height: 16px;
  fill: var(--silver);
  flex-shrink: 0;
  margin-top: 2px;
}

.summary-card span {
  color: var(--silver-light);
  font-size: 13px;
  line-height: 1.5;
}

.lodging-card {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--divider);
  margin: 0 16px 16px;
  overflow: hidden;
}

.lodging-header {
  padding: 20px;
}

.lodging-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lodging-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--divider);
}

.lodging-icon-wrap.airbnb {
  background: var(--red);
  border-color: var(--red-dark);
}

.lodging-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.lodging-type-badge {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--silver-light);
  letter-spacing: 1px;
}

.lodging-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lodging-address {
  font-size: 14px;
  color: var(--silver-light);
}

.lodging-city {
  font-size: 13px;
  color: var(--silver);
  margin-top: 2px;
}

.lodging-body {
  padding: 16px;
}

.distance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.distance-item svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
}

.distance-value {
  font-size: 16px;
  font-weight: 700;
}

.distance-label {
  font-size: 12px;
  color: var(--silver);
}

.map-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  border-radius: 10px;
  padding: 8px 14px;
  border: none;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.map-btn svg {
  width: 15px;
  height: 15px;
  fill: var(--white);
}

.note-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--navy);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 14px;
}

.note-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.note-row span {
  font-size: 12px;
  line-height: 1.5;
}

.note-row.positive svg { fill: #4CAF50; }
.note-row.positive span { color: #4CAF50; }
.note-row.caution svg { fill: #FFC107; }
.note-row.caution span { color: #FFC107; }

.guests-section { margin-top: 0; }

.guests-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.guest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.guest-chip {
  background: var(--navy);
  border-radius: 8px;
  padding: 5px 10px;
  border: 1px solid var(--divider);
  font-size: 12px;
  font-weight: 500;
  color: var(--silver-light);
}

/* ---- ACCESS PAGE ---- */
.credential-card {
  margin: 0 16px 20px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 20px;
}

.credential-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.credential-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.credential-title {
  font-size: 19px;
  font-weight: 700;
}

.credential-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.credential-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.credential-detail-row:last-child { margin-bottom: 0; }

.credential-detail-row svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.8);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-detail-row span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 20px;
  margin: 0 16px 20px;
}

.timeline-line {
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--navy-light);
  border-radius: 1px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--navy);
  margin-top: 3px;
  margin-left: -20px;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  flex: 1;
}

.timeline-time {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.timeline-event {
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
}

.timeline-note {
  color: var(--silver-light);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 2px;
}

/* Pass Cards */
.passes-list { padding: 0 16px; }

.pass-card {
  border-radius: 14px;
  border: 1px solid;
  padding: 16px;
  margin-bottom: 10px;
}

.pass-card.platinum {
  background: rgba(200,16,46,0.12);
  border-color: rgba(200,16,46,0.4);
}

.pass-card.gold {
  background: rgba(255,193,7,0.08);
  border-color: rgba(255,193,7,0.3);
}

.pass-card.standard {
  background: rgba(138,155,181,0.08);
  border-color: var(--divider);
}

.pass-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pass-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pass-title-area {
  flex: 1;
}

.pass-title {
  font-size: 15px;
  font-weight: 600;
}

.tier-badge {
  display: inline-block;
  border-radius: 4px;
  padding: 2px 7px;
  border: 1px solid;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 4px;
}

.tier-badge.platinum {
  background: rgba(200,16,46,0.13);
  border-color: rgba(200,16,46,0.26);
  color: var(--red);
}

.tier-badge.gold {
  background: rgba(255,193,7,0.13);
  border-color: rgba(255,193,7,0.26);
  color: #FFC107;
}

.tier-badge.standard {
  background: rgba(138,155,181,0.13);
  border-color: rgba(138,155,181,0.26);
  color: var(--silver);
}

.pass-description {
  color: var(--silver-light);
  font-size: 13px;
  line-height: 1.55;
}

/* Cold Pass */
.cold-pass-card {
  margin: 8px 16px 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  padding: 20px;
  text-align: center;
}

.cold-pass-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.cold-pass-text {
  color: var(--silver-light);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 10px;
}

.cold-pass-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  border-radius: 8px;
  padding: 6px 12px;
  margin-top: 14px;
}

.cold-pass-time svg {
  width: 14px;
  height: 14px;
  fill: var(--silver);
}

.cold-pass-time span {
  font-size: 13px;
  font-weight: 600;
  color: var(--silver-light);
}

/* PWA Install Banner */
.install-banner {
  display: none;
  position: fixed;
  bottom: 64px;
  left: 16px;
  right: 16px;
  max-width: 448px;
  margin: 0 auto;
  background: var(--navy-light);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 16px;
  z-index: 200;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
}

.install-banner.show { display: flex; }

.install-banner-text {
  flex: 1;
  font-size: 13px;
  color: var(--silver-light);
  line-height: 1.4;
}

.install-banner-text strong {
  color: var(--white);
}

.install-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.install-dismiss {
  background: none;
  border: none;
  color: var(--silver);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

/* Spacer at bottom of content */
.bottom-spacer {
  height: 40px;
}
