/* =============================================
   OperaUSA Marketplace — Shared Mockup Styles
   ============================================= */

* { box-sizing: border-box; }

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  color: #222;
  background: #fff;
  padding-top: 0;
}

/* ---- Preview Banner ---- */
.preview-banner {
  background: #f0ad4e;
  color: #5a3e00;
  text-align: center;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 2px solid #d4870a;
}

/* ---- Navigation ---- */
.navbar-operausa {
  background: #0d0d1e;
  border: none;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.navbar-operausa .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #FFD700 !important;
  font-weight: 700;
  letter-spacing: 1px;
}
.navbar-right-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar-right-links .nav-link {
  color: #ccc;
  text-decoration: none;
  padding: 6px 14px;
  font-size: 15px;
  transition: color 0.2s;
}
.navbar-right-links .nav-link:hover,
.navbar-right-links .nav-link.active {
  color: #FFD700;
}
.btn-gold-outline {
  border: 2px solid #FFD700;
  color: #FFD700 !important;
  background: transparent;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.btn-gold-outline:hover {
  background: #FFD700;
  color: #0d0d1e !important;
}

/* ---- Hero ---- */
.hero-section {
  background: linear-gradient(135deg, #0d0d1e 0%, #1a1a4e 40%, #2d1a5e 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><circle cx="200" cy="200" r="300" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="60"/><circle cx="600" cy="300" r="200" fill="none" stroke="rgba(255,215,0,0.04)" stroke-width="40"/></svg>') no-repeat center;
  background-size: cover;
}
.hero-overlay {
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-tagline {
  color: #FFD700;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
}
.hero-subtitle {
  color: #bbb;
  font-size: 20px;
  margin: 0;
}
.btn-gold {
  background: #FFD700;
  color: #0d0d1e !important;
  border: none;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 17px;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-gold:hover { background: #e6c200; }
.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600;
  padding: 12px 30px;
  font-size: 17px;
  border-radius: 4px;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ---- Sections ---- */
.section-white { background: #fff; padding: 72px 0; }
.section-light { background: #f8f8fc; padding: 72px 0; }
.section-dark  { background: #12122a; padding: 72px 0; color: #ccc; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a4e;
  text-align: center;
  margin: 0 0 12px;
}
.section-dark .section-title { color: #FFD700; }
.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 18px;
  margin: 0;
}
.section-dark .section-subtitle { color: #aaa; }

/* ---- Role Cards ---- */
.role-card {
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.role-card-artist { background: #f0f6ff; border-color: #337ab7; }
.role-card-producer { background: #1a1a4e; border-color: #FFD700; color: #fff; }
.role-card-venue { background: #f0fff4; border-color: #5cb85c; }

.role-card-icon {
  font-size: 52px;
  margin-bottom: 20px;
  color: #337ab7;
}
.role-card-producer .role-card-icon { color: #FFD700; }
.role-card-venue .role-card-icon { color: #5cb85c; }

.role-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 0 0 20px;
  font-weight: 700;
}
.role-card-producer h3 { color: #FFD700; }

.role-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.role-card-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.4;
}
.role-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5cb85c;
  font-weight: 700;
}
.role-card-producer .role-card-list li { color: #ddd; }
.role-card-producer .role-card-list li::before { color: #FFD700; }

/* ---- Urgent Strip ---- */
.urgent-strip {
  background: #1a0a0a;
  border-top: 3px solid #d9534f;
  border-bottom: 3px solid #d9534f;
  padding: 20px 0;
  overflow: hidden;
}
.urgent-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.urgent-label {
  color: #d9534f;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(217,83,79,0.15);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #d9534f;
}
.urgent-cards-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}
.urgent-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(217,83,79,0.4);
  border-radius: 6px;
  padding: 14px 20px;
  white-space: nowrap;
  min-width: 280px;
}
.urgent-card-title {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.urgent-card-detail {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 10px;
}

/* ---- Production Cards ---- */
.production-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.production-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.production-card-img {
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 16px;
  position: relative;
}
.production-field-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #337ab7;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
}
.production-card-img-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.production-card-body {
  padding: 20px 20px 24px;
}
.production-meta {
  color: #555;
  font-size: 14px;
  margin-bottom: 4px;
}
.production-meta i { width: 18px; color: #888; }

/* ---- How It Works ---- */
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #bbb;
  line-height: 1.5;
}
.how-num {
  background: #FFD700;
  color: #12122a;
  font-weight: 700;
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: linear-gradient(135deg, #0d0d1e 0%, #1a1a4e 100%);
  padding: 40px 0;
  border-top: 3px solid #FFD700;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
}
.stat-label {
  color: #aaa;
  font-size: 15px;
  margin-top: 8px;
}

/* ---- Venue Cards ---- */
.venue-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.2s;
}
.venue-card:hover { transform: translateY(-3px); }
.venue-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-card-body { padding: 16px 18px 20px; }
.venue-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a4e;
  margin: 0 0 8px;
}
.venue-meta {
  color: #666;
  font-size: 13px;
  margin-bottom: 4px;
}

/* ---- Footer ---- */
.site-footer {
  background: #0d0d1e;
  color: #aaa;
  padding: 52px 0 24px;
  font-size: 15px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: #aaa; text-decoration: none; }
.footer-links a:hover { color: #FFD700; }

/* ---- Page Header ---- */
.page-header-band {
  background: linear-gradient(135deg, #1a1a4e 0%, #2a2a6e 100%);
  padding: 48px 0 40px;
  border-bottom: 3px solid #FFD700;
}
.page-header-band h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 40px;
  margin: 0 0 8px;
}
.page-header-band p {
  color: #aaa;
  font-size: 18px;
  margin: 0;
}

/* ---- Sidebar Filters ---- */
.filter-panel {
  background: #f8f8fc;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px 20px;
}
.filter-panel h4 {
  font-weight: 700;
  color: #1a1a4e;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-size: 17px;
}
.filter-group { margin-bottom: 20px; }
.filter-group label {
  font-weight: 600;
  font-size: 14px;
  color: #444;
  display: block;
  margin-bottom: 6px;
}
.filter-group .form-control {
  font-size: 14px;
}
.filter-group .checkbox {
  margin: 4px 0;
  font-size: 15px;
}

/* ---- Production List Cards (job board) ---- */
.prod-list-card {
  background: #fff;
  border: 1px solid #e0e0e8;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.prod-list-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.prod-list-thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(255,255,255,0.6);
}
.prod-list-info { flex: 1; }
.prod-list-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a4e;
  margin: 0 0 4px;
}
.prod-list-sub {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}
.prod-list-sub span { margin-right: 16px; }
.prod-list-sub i { color: #888; margin-right: 4px; }
.prod-list-badges { margin-bottom: 0; }
.prod-list-badges .label { font-size: 13px; padding: 5px 10px; margin-right: 6px; }
.prod-list-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

/* ---- Role Cards (production detail) ---- */
.role-detail-card {
  background: #fff;
  border: 1px solid #e0e0e8;
  border-left: 5px solid #337ab7;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.role-detail-card.urgent { border-left-color: #d9534f; }
.role-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a4e;
  margin: 0 0 4px;
}
.role-detail-subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 16px;
}
.role-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 16px;
}
.role-spec {
  font-size: 14px;
  color: #444;
}
.role-spec strong { color: #1a1a4e; }
.role-notes {
  background: #f8f8fc;
  border-left: 3px solid #ccc;
  padding: 12px 16px;
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  border-radius: 0 4px 4px 0;
  font-style: italic;
}

/* ---- Match Score Bar ---- */
.match-card {
  background: #fff;
  border: 1px solid #e0e0e8;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.match-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.match-headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(255,255,255,0.7);
}
.match-info { flex: 1; }
.match-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a4e;
  margin: 0 0 4px;
}
.match-attrs {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}
.match-attrs span { margin-right: 16px; }
.match-criteria { font-size: 14px; line-height: 2; }
.match-criteria .yes { color: #5cb85c; font-weight: 600; }
.match-criteria .no  { color: #d9534f; }
.match-score-wrap { text-align: right; flex-shrink: 0; min-width: 120px; }
.match-score-pct {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #5cb85c;
}
.match-score-label { font-size: 12px; color: #888; margin-bottom: 6px; }
.match-actions { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }

/* ---- Venue Detail ---- */
.venue-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 15px;
}
.venue-spec-row { display: flex; justify-content: space-between; }
.venue-spec-row span:first-child { color: #888; }
.venue-spec-row span:last-child { font-weight: 600; color: #222; }

.venue-amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fff4;
  border: 1px solid #5cb85c;
  color: #3a7a3a;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 4px 4px 4px 0;
}
.venue-amenity-no {
  background: #fff5f5;
  border-color: #ddd;
  color: #999;
}

/* ---- Producer Info Strip ---- */
.producer-strip {
  background: #f0f4ff;
  border: 1px solid #ccd4f0;
  border-radius: 6px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 15px;
}
.producer-avatar {
  width: 48px;
  height: 48px;
  background: #337ab7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

/* ---- Apply Modal customizations ---- */
.modal-header { background: #1a1a4e; color: #fff; border-radius: 6px 6px 0 0; }
.modal-header h4 { color: #FFD700; font-family: 'Playfair Display', serif; }
.modal-header .close { color: #fff; opacity: 0.7; }
.profile-match-box {
  background: #f0fff4;
  border: 1px solid #5cb85c;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.profile-match-box h5 { color: #2a6a2a; font-weight: 700; margin: 0 0 10px; }
.profile-match-box ul { margin: 0; padding-left: 20px; }
.profile-match-box li { font-size: 14px; color: #333; margin-bottom: 4px; }

/* ---- Breadcrumb ---- */
.page-breadcrumb {
  background: #f8f8fc;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8f0;
  font-size: 14px;
}
.page-breadcrumb a { color: #337ab7; }
.page-breadcrumb .sep { color: #999; margin: 0 6px; }

/* ---- Availability Calendar Placeholder ---- */
.calendar-placeholder {
  background: #f8f8fc;
  border: 1px solid #ddd;
  border-radius: 8px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  gap: 12px;
}
.calendar-placeholder i { font-size: 40px; color: #ccc; }
.cal-legend { display: flex; gap: 16px; margin-top: 8px; font-size: 13px; }
.cal-legend-dot {
  width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-right: 5px; vertical-align: middle;
}

/* ---- American Red accent ---- */
.btn-red {
  background: #C8102E;
  color: #fff !important;
  border: none;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 17px;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-red:hover { background: #a00d24; }
.btn-red-outline {
  background: transparent;
  color: #C8102E !important;
  border: 2px solid #C8102E;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 4px;
}
.btn-red-outline:hover { background: #C8102E; color: #fff !important; }
.american-stripe {
  height: 5px;
  background: linear-gradient(90deg, #C8102E 33%, #fff 33%, #fff 66%, #2a2a4e 66%);
}

/* ---- Singer Cards (repertoire directory) ---- */
.singer-card {
  background: #fff;
  border: 1px solid #e0e0e8;
  border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 14px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.singer-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-color: #2a2a4e;
}
.singer-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0.85);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.singer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a4e;
  margin: 0 0 3px;
}
.singer-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}
.singer-meta span { margin-right: 14px; }
.singer-meta i { color: #999; margin-right: 4px; }
.singer-roles-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.role-tag {
  background: #f0f0f8;
  color: #2a2a4e;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid #d0d0e8;
}
.role-tag.opera { background: #e8f0ff; border-color: #b0c4f0; color: #1a3a8e; }
.role-tag.musical { background: #fff0f0; border-color: #f0b0b0; color: #8e1a1a; }

/* ---- Role Browse Tree ---- */
.browse-tree { list-style: none; padding: 0; margin: 0; }
.browse-tree li { border-bottom: 1px solid #f0f0f8; }
.browse-tree .composer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  cursor: pointer;
  font-weight: 700;
  color: #1a1a4e;
  font-size: 15px;
}
.browse-tree .composer-row:hover { background: #f8f8fc; }
.browse-tree .work-list {
  list-style: none;
  padding: 0 0 0 20px;
  background: #fafafc;
  display: none;
}
.browse-tree .work-list.open { display: block; }
.browse-tree .work-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 8px;
  border-top: 1px solid #f0f0f8;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
.browse-tree .work-row:hover { background: #f0f0f8; }
.browse-tree .role-list {
  list-style: none;
  padding: 0 0 0 20px;
  background: #f4f4fa;
  display: none;
}
.browse-tree .role-list.open { display: block; }
.browse-tree .role-row {
  padding: 8px 8px;
  border-top: 1px solid #eaeaf4;
  cursor: pointer;
  font-size: 13px;
  color: #555;
}
.browse-tree .role-row:hover { background: #eaeaf4; color: #1a1a4e; font-weight: 600; }
.browse-tree .role-row.active { background: #2a2a4e; color: #FFD700; font-weight: 700; }
.voice-badge {
  font-size: 11px;
  background: #2a2a4e;
  color: #FFD700;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 8px;
}
.voice-badge.mt { background: #C8102E; color: #fff; }

/* ---- Non-profit Badge (nav) ---- */
.nonprofit-nav-badge {
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: #FFD700;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ---- Non-profit Hero Badge ---- */
.nonprofit-hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.35);
  color: #FFD700;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ---- Mission Band ---- */
.mission-band {
  background: linear-gradient(135deg, #12122a 0%, #1e1e3e 100%);
  border-top: 3px solid #FFD700;
  border-bottom: 3px solid #FFD700;
  padding: 40px 0;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 8px;
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  height: 100%;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: #FFD700;
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f0f0f8;
  padding-top: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: #1a1a4e;
  font-size: 15px;
}
.testimonial-title {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

/* ---- Board Ticker ---- */
.board-ticker-wrap {
  background: #f8f8fc;
  border: 1px solid #e0e0ee;
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.board-ticker-label {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.board-ticker-names {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Pricing Cards ---- */
.pricing-card {
  background: #fff;
  border: 1px solid #e0e0e8;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.pricing-card-featured {
  border-color: #FFD700;
  box-shadow: 0 4px 24px rgba(255,215,0,0.2);
}
.pricing-popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FFD700;
  color: #0d0d1e;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-header {
  background: linear-gradient(135deg, #2a2a4e, #4a4a8e);
  padding: 28px 24px 24px;
  text-align: center;
}
.pricing-icon {
  font-size: 36px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.pricing-tier {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin: 0 0 12px;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.pricing-price::before {
  content: '$';
  font-size: 22px;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.pricing-price.no-dollar::before { content: ''; }
.pricing-cadence {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 4px;
}
.pricing-features {
  list-style: none;
  padding: 20px 24px;
  margin: 0;
  flex: 1;
}
.pricing-features li {
  padding: 7px 0;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f0f0f8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i.fa-check { color: #5cb85c; flex-shrink: 0; }
.pricing-features li i.fa-times { color: #ddd; flex-shrink: 0; }
.pricing-feature-no { color: #bbb !important; }
.pricing-card .btn { margin: 0 24px 24px; }

/* ---- Donate Section ---- */
.donate-section {
  background: linear-gradient(135deg, #1a0a00 0%, #3a1a00 50%, #1a0a00 100%);
  border-top: 3px solid #c4692a;
  border-bottom: 3px solid #c4692a;
  padding: 64px 0;
}

/* ---- Board Cards ---- */
.board-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.board-card:hover {
  box-shadow: 0 6px 24px rgba(42,42,78,0.18);
  transform: translateY(-3px);
}
.board-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #e8e8f0;
}
.board-card-body {
  padding: 14px 16px;
  border-top: 3px solid #2a2a4e;
}
.board-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #2a2a4e;
  margin: 0 0 4px;
  line-height: 1.3;
}
.board-card-post {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
.director-card .board-card-body {
  border-top-color: #C8102E;
}
.board-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #2a2a4e;
  margin: 0 0 6px;
}
.board-section-sub {
  color: #888;
  font-size: 14px;
  margin-bottom: 32px;
}
.modal-board-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero-title { font-size: 34px; }
  .navbar-right-links { display: none; }
  .prod-list-card { flex-direction: column; }
  .match-card { flex-direction: column; }
  .urgent-strip .container { flex-wrap: wrap; }
  .pricing-card { margin-bottom: 16px; }
  .board-ticker-wrap { flex-direction: column; align-items: flex-start; }
  .board-ticker-names { white-space: normal; }
}
