:root {
  --red: #c41e3a;
  --blue: #002868;
  --dark-blue: #0d2137;
}
body {
  font-family: 'Source Sans 3', sans-serif;
  background: url('bg.png') center/cover no-repeat fixed;
  background-color: #f8f9fa;
  color: #333;
  min-height: 100vh;
}
.script-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--red);
  font-size: 1.5rem;
}
.section-title-red {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
}
.nav-link {
  color: var(--blue) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-link:hover { color: var(--red) !important; }
.nav-link.active {
  color: var(--red) !important;
  font-weight: 700;
}

/* Mobile nav enhancements */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.5rem;
    padding: 1rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 40, 104, 0.12);
    border-top: 2px solid var(--red);
  }
  .navbar-nav {
    padding: 0.25rem 0;
  }
  .nav-item {
    border-bottom: 1px solid rgba(0, 40, 104, 0.08);
  }
  .nav-item:last-child { border-bottom: none; }
  .nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-link .bi {
    font-size: 1.1rem;
    opacity: 0.85;
  }
  .nav-link:hover {
    background: rgba(0, 40, 104, 0.05);
  }
  .nav-link.active {
    background: linear-gradient(90deg, rgba(206, 20, 39, 0.12) 0%, rgba(206, 20, 39, 0.06) 100%);
    border-left: 4px solid var(--red);
    margin-left: 0;
    padding-left: calc(1.25rem - 4px);
  }
}
header, header.py-2 {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: none;
  padding: 0 !important;
}
nav.navbar.navbar-expand-lg.navbar-light.py-0 {
  border-top: 3px solid #ce1427;
  border-bottom: 3px solid #ce1427;
}
.container.bg-light {
  padding: 0;
}
.header-logo { height: 56px; width: auto; }
.hero-logo { max-width: 500px; width: 100%; }
.america250-logo { width: 260px; }
.performer-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e9ecef;
}
.performer-name { color: var(--red); font-weight: 700; text-transform: uppercase; }
.performer-role { color: var(--blue); font-size: 0.9rem; text-transform: uppercase; }
.benefit-list { color: var(--blue); list-style: none; padding-left: 0; }
.benefit-list li::before { content: "• "; color: var(--red); font-weight: bold; }
.sponsor-list { color: var(--red); list-style: none; padding-left: 0; }
.sponsor-list li::before { content: "• "; color: var(--red); }
/* Logos + Benefitting + Sponsorship section (patriotic block) */
.logos-beneficiaries-section {
  background: #fff;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.logos-beneficiaries-section .logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.logos-beneficiaries-section .logo-freedom {
  max-width: 70%;
  width: 100%;
  height: auto;
  min-height: 80px;
  object-fit: contain;
  background: transparent;
}
.logos-beneficiaries-section .logo-divider {
  width: 1px;
  height: 80px;
  background: #d0d0d0;
  flex-shrink: 0;
}
.logos-beneficiaries-section .logo-america250 {
  max-width: 200px;
  width: 100%;
  height: auto;
  min-height: 60px;
  object-fit: contain;
  background: transparent;
}
.benefitting-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.benefitting-heading .line {
  flex: 1;
  max-width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
}
.benefitting-heading .script-heading {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-cards li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 40, 104, 0.04);
  border-radius: 10px;
  border-left: 4px solid var(--red);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
  transition: background 0.2s ease, transform 0.2s ease;
}
.benefit-cards li:hover {
  background: rgba(0, 40, 104, 0.08);
  transform: translateX(4px);
}
.benefit-cards .benefit-star {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.sponsorship-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.sponsorship-block .block-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 0;
}
.sponsor-tiers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sponsor-tiers li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(206, 20, 39, 0.2);
  color: var(--blue);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sponsor-tiers li:hover {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(206, 20, 39, 0.1);
}
.sponsor-tiers .tier-star {
  color: var(--red);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.production-box, .tickets-box {
  border: none;
  background: #fff;
  padding: 0;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 40, 104, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.production-box:hover, .tickets-box:hover {
  box-shadow: 0 8px 32px rgba(0, 40, 104, 0.12);
}
.production-box .title, .tickets-box .title {
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #a01830 100%);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  padding: 1rem 1.5rem;
  border-bottom: none;
  font-size: 0.95rem;
}
.production-box .team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.25rem 1.5rem;
}
.production-box .team-col {
  width: 50%;
  padding-right: 1.25rem;
}
@media (max-width: 575px) {
  .production-box .team-col { width: 100%; padding-right: 0; }
}
.production-box .role-name {
  font-size: 0.875rem;
  color: #444;
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.production-box .role-name .role-label {
  display: block;
  margin-bottom: 0.2rem;
}
.production-box .role-name .person {
  display: block;
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
}
.production-box .role-name:last-child,
.production-box .team-col .role-name:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.tickets-box .ticket-body {
  font-size: 0.9rem;
  color: #444;
  padding: 1.25rem 1.5rem;
}
.tickets-box .ticket-body p { margin-bottom: 0.75rem; line-height: 1.5; }
.tickets-box .ticket-body .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.tickets-box .pricing-item {
  background: rgba(0, 40, 104, 0.06);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border-left: 3px solid var(--blue);
}
.tickets-box .buy-box {
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(206, 20, 39, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(206, 20, 39, 0.15);
}
.tickets-box .buy-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  flex-wrap: wrap;
}
.tickets-box .buy-cta {
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.tickets-box .qr-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
}
.tickets-box .or-block {
  margin: 0.5rem 0 0.25rem;
  font-size: 0.8rem;
  color: #666;
}
.tickets-box .ticket-url {
  display: inline-block;
  background: linear-gradient(135deg, #f0a020 0%, #e09510 100%);
  color: #000;
  padding: 0.35rem 0.75rem;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tickets-box .ticket-url:hover {
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 160, 32, 0.4);
}
/* Marketing section - modern card */
.marketing-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 40, 104, 0.08);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-left: 4px solid var(--red);
  transition: box-shadow 0.3s ease;
}
.marketing-section:hover {
  box-shadow: 0 8px 32px rgba(0, 40, 104, 0.12);
}
.marketing-section .marketing-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, #a01830 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.marketing-section .marketing-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--red);
  font-size: 1.5rem;
  margin: 0;
  display: inline;
}
.marketing-section .marketing-text {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  display: inline;
}
.marketing-section .marketing-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
/* Event Overview - modern cards */
.overview-section .section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.overview-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(0, 40, 104, 0.08);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.overview-card:hover {
  box-shadow: 0 12px 40px rgba(0, 40, 104, 0.12);
}
.overview-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red) 0%, #a01830 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.overview-card .card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.overview-card .card-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.footer-bar {
  background: url('footer-bg.png') center/cover no-repeat;
  background-color: var(--dark-blue);
  color: #fff;
  padding: 3rem 0 1.5rem; 
}
.footer-bar .footer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.footer-bar .footer-contact-block p {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.footer-bar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer-bar a:hover { color: #fff; opacity: 0.9; }
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* Contact page */
.contact-hero {
  margin-bottom: 2.5rem;
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 40, 104, 0.08);
  padding: 1.75rem;
  height: 100%;
  border-left: 4px solid var(--red);
  transition: box-shadow 0.3s ease;
}
.contact-card:hover {
  box-shadow: 0 8px 32px rgba(0, 40, 104, 0.12);
}
.contact-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, #a01830 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact-card .card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.contact-card .card-value {
  font-size: 0.95rem;
  color: #333;
}
.contact-card .card-value a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-card .card-value a:hover {
  color: var(--red);
}
.contact-email-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-email-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-email-item .label { font-size: 0.8rem; color: #666; margin-bottom: 0.2rem; }
.contact-phone {
  font-size: 1.25rem;
  font-weight: 600;
}
.contact-address {
  line-height: 1.6;
  font-size: 0.95rem;
}
.contact-address .org { font-weight: 600; color: var(--blue); }

/* Sponsorship page */
.sponsor-page-hero {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 40, 104, 0.1);
  padding: 2.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
}
.sponsor-page-hero .hero-logo { max-width: 220px; }
.sponsor-hero-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-left: 4px solid var(--red);
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 0 0 1.25rem 0;
  background: linear-gradient(90deg, rgba(206, 20, 39, 0.06) 0%, transparent 100%);
}
.sponsor-page-hero p { color: #444; line-height: 1.65; }
.sponsor-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sponsor-section-heading .star { color: var(--red); font-size: 1.2rem; }
.sponsor-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 40, 104, 0.06);
  border: 1px solid rgba(0, 40, 104, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sponsor-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 40, 104, 0.12);
}
.sponsor-box .box-title {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.sponsor-box .box-text { color: #444; font-size: 0.9rem; line-height: 1.55; margin: 0; }
.sponsor-logos-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(0, 40, 104, 0.03) 100%);
  border-radius: 20px;
  margin: 2.5rem 0;
  box-shadow: 0 4px 24px rgba(0, 40, 104, 0.08);
  border: 1px solid rgba(0, 40, 104, 0.06);
}
.sponsor-logos-banner .logo-freedom {
  max-width: 70%;
  height: auto;
}
.sponsor-logos-banner .logo-america250 { max-width: 180px; height: auto; }
.sponsor-table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 40, 104, 0.1);
}
.sponsor-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.sponsor-table th {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0f2d4a 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1.1rem 1.25rem;
  text-align: left;
}
.sponsor-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  vertical-align: top;
}
.sponsor-table tbody tr { transition: background 0.2s ease; }
.sponsor-table tbody tr:hover { background: rgba(0, 40, 104, 0.03); }
.sponsor-table tr:last-child td { border-bottom: none; }
.sponsor-table tr:nth-child(even) { background: #fafbfc; }
.sponsor-table tr:nth-child(even):hover { background: rgba(0, 40, 104, 0.04); }
.sponsor-table .level-name { font-weight: 700; color: var(--blue); }
.sponsor-table .level-count { font-size: 0.8rem; color: #666; font-weight: 400; }
.sponsor-table .contribution { font-weight: 700; color: #333; }
.sponsor-table .benefits-list { margin: 0; padding-left: 1.25rem; line-height: 1.55; }
.sponsor-table-note { font-size: 0.8rem; color: #666; margin-top: 0.75rem; padding-left: 0.25rem; }
.sponsor-impact-text {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #444;
  line-height: 1.65;
}
.sponsor-table-section .section-title-red { border: none; border-left: 4px solid var(--red); padding-left: 1rem; background: linear-gradient(90deg, rgba(206, 20, 39, 0.06) 0%, transparent 100%); display: inline-block; }
.sponsor-table-section { text-align: center; }
.sponsor-table-section .sponsor-table-wrap { text-align: left; }

/* Tickets page */
.tickets-page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}
.ticket-visuals-row { margin-bottom: 1.5rem; }
.ticket-hall-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  background: #e9ecef;
}
.ticket-qr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  height: 100%;
  min-height: 200px;
}
.ticket-qr-wrap .qr-img { width: 180px; height: 180px; object-fit: contain; }
.ticket-buy-btn {
  display: inline-block;
  background: linear-gradient(135deg, #5ba3e8 0%, #4a90d4 100%);
  color: #000 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ticket-buy-btn:hover { color: #000 !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74, 144, 212, 0.4); }
.ticket-seating-chart {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0, 40, 104, 0.06);
  font-size: 0.8rem;
  overflow: hidden;
}
.ticket-seating-chart-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.ticket-pricing-box {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(0, 40, 104, 0.08);
  box-shadow: 0 8px 32px rgba(0, 40, 104, 0.1);
  height: 100%;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.ticket-pricing-box:hover {
  box-shadow: 0 12px 40px rgba(0, 40, 104, 0.12);
}
.ticket-pricing-box-header {
  background: linear-gradient(135deg, var(--red) 0%, #a01830 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 1.5rem;
}
.ticket-pricing-box-body {
  padding: 1.5rem 1.5rem 1.25rem;
}
.ticket-pricing-box-body .ticket-pricing-intro {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.ticket-pricing-tiers {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.ticket-pricing-tiers li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  margin-bottom: 0.5rem;
  background: rgba(0, 40, 104, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--blue);
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.ticket-pricing-tiers li:hover {
  background: rgba(0, 40, 104, 0.08);
}
.ticket-pricing-tiers .tier-name {
  font-weight: 600;
  color: var(--blue);
}
.ticket-pricing-tiers .tier-seats {
  font-size: 0.85rem;
  color: #666;
}
.ticket-pricing-box-body .ticket-patrons {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.ticket-note-box {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border-left: 3px solid #999;
}
.ticket-note-box .ticket-note {
  font-size: 0.8rem;
  color: #555;
  font-style: italic;
  margin: 0;
  line-height: 1.45;
}

/* Beneficiaries page */
.beneficiaries-page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, rgba(206, 20, 39, 0.06) 0%, transparent 100%);
}
.beneficiaries-intro {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(0, 40, 104, 0.06);
  box-shadow: 0 2px 16px rgba(0, 40, 104, 0.04);
}
.beneficiary-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 40, 104, 0.08);
  padding: 0;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 40, 104, 0.06);
}
.beneficiary-card:hover {
  box-shadow: 0 12px 40px rgba(0, 40, 104, 0.12);
  transform: translateY(-2px);
}
.beneficiary-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
  border-bottom: none;
}
.beneficiary-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding: 1.75rem 1.5rem;
}
.beneficiary-card-content.text-logo { flex-direction: row-reverse; }
.beneficiary-card-text { flex: 1; min-width: 280px; }
.beneficiary-card-text p { margin-bottom: 0.75rem; font-size: 0.95rem; color: #444; line-height: 1.6; }
.beneficiary-card-text ul { margin: 0.5rem 0 1rem 1.25rem; padding: 0; }
.beneficiary-card-text li { margin-bottom: 0.35rem; font-size: 0.95rem; color: #444; line-height: 1.55; }
.beneficiary-card-logo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8f9fa 0%, #eef0f2 100%);
  border-radius: 14px;
  border: 1px solid rgba(0, 40, 104, 0.08);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 40, 104, 0.06);
}
.beneficiary-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.beneficiary-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--red) 0%, #a01830 100%);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.beneficiary-learn-more:hover {
  color: #fff !important;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(206, 20, 39, 0.35);
}

/* Performers page */
.performers-page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.performers-page-title .script-part {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--blue);
  font-size: 1.6rem;
}
.performers-page-title .bold-part {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.performers-page-title .line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  border-radius: 2px;
}
.performer-block {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 40, 104, 0.08);
  padding: 0;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 40, 104, 0.06);
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.performer-block:hover { box-shadow: 0 12px 40px rgba(0, 40, 104, 0.12); transform: translateY(-2px); }
.performer-block.no-img { border-left: 4px solid var(--red); }
.performer-block.no-img .performer-block-img { display: none; }
.performer-block.no-img .performer-block-content { padding: 2rem; }
.performer-block-img {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e9ecef;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .performer-block-img { border-radius: 20px 0 0 20px; }
}
.performer-block-content {
  flex: 1;
  min-width: 280px;
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.performer-block-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #a01830 100%);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.performer-block-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.performer-block-text p { margin-bottom: 0.75rem; font-size: 0.95rem; color: #444; line-height: 1.65; }
.performer-block-text p:last-child { margin-bottom: 0; }
.performer-separator {
  text-align: center;
  color: var(--red);
  font-size: 1.5rem;
  margin: 1.25rem 0;
  opacity: 0.9;
}
.performers-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(0, 40, 104, 0.05) 100%);
  border-radius: 20px;
  margin: 2.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 40, 104, 0.08);
  border: 1px solid rgba(0, 40, 104, 0.06);
}
.performers-banner .logo-freedom {
  height: auto;
  width: 70%;
}
.performers-banner .logo-america250 { max-width: 150px; height: auto; }
.performers-continued-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(90deg, rgba(206, 20, 39, 0.06) 0%, transparent 50%, rgba(206, 20, 39, 0.06) 100%);
  border-radius: 12px;
}
.performers-continued-title .script-part { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue); font-size: 1.3rem; }
.performers-continued-title .bold-part { font-size: 1.5rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.04em; }

/* ========== Mobile enhancements (all pages) ========== */
@media (max-width: 767px) {
  main.container { padding: 1.5rem 1rem !important; }
  
  /* Index - Hero */
  .hero-logo { max-width: 280px; }
  .america250-logo { width: 100%; max-width: 220px; }
  
  /* Index - Overview cards */
  .overview-section .section-heading { font-size: 1.4rem; margin-bottom: 1.5rem; }
  .overview-card { padding: 1.25rem; }
  .overview-card .card-icon { width: 42px; height: 42px; font-size: 1.2rem; }
  
  /* Index - Logos + Benefitting + Sponsorship */
  .logos-beneficiaries-section { padding: 1.5rem 1rem; }
  .logos-beneficiaries-section .logos-strip { padding-bottom: 1.5rem; margin-bottom: 1.5rem; gap: 1rem; }
  .logos-beneficiaries-section .logo-freedom { max-width: 85%; }
  .benefitting-heading .script-heading { font-size: 1.35rem; }
  .benefit-cards { grid-template-columns: 1fr; }
  .benefit-cards li { padding: 0.9rem 1rem; }
  .sponsorship-block { margin-top: 1.5rem; padding-top: 1.5rem; }
  .sponsorship-block .row > [class*="col-"] { margin-bottom: 1rem; }
  .sponsor-tiers li { padding: 0.75rem 0.9rem; }
  
  /* Index - Production & Tickets */
  .production-box .team-row, .tickets-box .ticket-body { padding: 1rem 1.25rem; }
  .production-box .title, .tickets-box .title { padding: 0.9rem 1rem; font-size: 0.9rem; }
  .tickets-box .pricing-grid { grid-template-columns: 1fr; }
  .tickets-box .buy-box { padding: 0.85rem; }
  .tickets-box .qr-img { width: 80px; height: 80px; }
  
  /* Marketing section */
  .marketing-section { padding: 1.25rem 1.5rem; }
  .marketing-section .marketing-icon { width: 48px; height: 48px; font-size: 1.25rem; }
  .marketing-section .marketing-title { font-size: 1.25rem; }
  
  /* Footer */
  .footer-bar { padding: 2rem 1rem 1.25rem; }
  .footer-bar .row { flex-direction: column; text-align: center !important; }
  .footer-bar .text-lg-end { text-align: center !important; }
  .footer-bar .footer-contact-block { margin-top: 1rem; }
  
  /* Sponsorship page */
  .sponsor-page-hero { padding: 1.5rem; margin-bottom: 2rem; }
  .sponsor-page-hero .hero-logo { max-width: 180px; }
  .sponsor-hero-title { font-size: 1.35rem; }
  .sponsor-section-heading { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .sponsor-box { padding: 1.25rem; }
  .sponsor-logos-banner { padding: 1.5rem; margin: 1.5rem 0; }
  .sponsor-logos-banner .logo-freedom { width: 90%; max-width: none; }
  .sponsor-table-wrap { border-radius: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .sponsor-table th, .sponsor-table td { padding: 0.85rem 1rem; font-size: 0.85rem; }
  .sponsor-table .benefits-list { padding-left: 1rem; font-size: 0.8rem; }
  
  /* Tickets page */
  .tickets-page-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
  .ticket-visuals-row .row { flex-direction: column; }
  .ticket-hall-img { aspect-ratio: 16/9; }
  .ticket-qr-wrap { min-height: 160px; }
  .ticket-buy-btn { padding: 0.9rem 2rem; font-size: 0.9rem; }
  .ticket-seating-chart { padding: 0; }
  .ticket-pricing-box-header { padding: 0.9rem 1rem; font-size: 0.9rem; }
  .ticket-pricing-box-body { padding: 1.25rem; }
  .ticket-pricing-tiers li { padding: 0.6rem 0.9rem; }
  
  /* Contact page */
  .contact-card { padding: 1.25rem; }
  .contact-card .card-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 0.75rem; }
  .contact-email-item { padding: 0.5rem 0; }
  .contact-phone { font-size: 1.1rem; }
  
  /* Beneficiaries page */
  .beneficiaries-page-title { font-size: 1.5rem; padding: 0.75rem 1rem; }
  .beneficiaries-intro { padding: 1.25rem; font-size: 0.95rem; margin-bottom: 2rem; }
  .beneficiary-card-title { padding: 0.9rem 1rem; font-size: 0.85rem; }
  .beneficiary-card-content { padding: 1.25rem; gap: 1.25rem; }
  .beneficiary-card-logo { width: 120px; height: 120px; }
  .beneficiary-learn-more { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
  
  /* Performers page */
  .performers-page-title { margin-bottom: 2rem; gap: 0.75rem; }
  .performers-page-title .script-part { font-size: 1.35rem; }
  .performers-page-title .bold-part { font-size: 1.5rem; }
  .performers-page-title .line { width: 40px; }
  .performer-block-img { width: 100%; max-width: 100%; aspect-ratio: 4/3; }
  .performer-block-content { padding: 1.5rem; }
  .performer-block-name { font-size: 1.25rem; }
  .performer-separator { margin: 1rem 0; }
  .performers-banner { padding: 1.5rem; margin: 1.5rem 0; }
  .performers-banner .logo-freedom { width: 85%; }
  .performers-continued-title { padding: 0.6rem 1rem; margin-bottom: 1.5rem; }
  .performers-continued-title .script-part { font-size: 1.1rem; }
  .performers-continued-title .bold-part { font-size: 1.25rem; }
}

@media (max-width: 575px) {
  main.container { padding: 1.25rem 0.75rem !important; }
  
  .section-title-red { font-size: 0.95rem; }
  .logos-beneficiaries-section { padding: 1.25rem 0.75rem; }
  .sponsor-page-hero { padding: 1.25rem; }
  .sponsor-hero-title { font-size: 1.2rem; }
  .tickets-page-title { font-size: 1.35rem; }
  .beneficiaries-page-title { font-size: 1.35rem; }
  .performers-page-title .bold-part { font-size: 1.35rem; }
  .performer-block-role { font-size: 0.65rem; padding: 0.3rem 0.6rem; }
  .performer-block-name { font-size: 1.15rem; }
  .beneficiary-card-logo { width: 100px; height: 100px; }
}
