/* 
  =========================================
  "FROM CADDIE TO COACH" CAMPAIGN STYLESHEET
  Premium Golf & Community STEM Aesthetics
  =========================================
*/

/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables & Color Tokens --- */
:root {
  /* Colors */
  --color-green-deep: hsl(145, 45%, 15%);
  --color-green-dark: hsl(145, 50%, 8%);
  --color-green-light: hsl(142, 20%, 25%);
  --color-gold: hsl(43, 80%, 55%);
  --color-gold-hover: hsl(43, 90%, 48%);
  --color-gold-light: hsla(43, 80%, 55%, 0.15);
  --color-slate-light: hsl(210, 20%, 98%);
  --color-slate-muted: hsl(210, 10%, 75%);
  --color-slate-dark: #0F172A;
  --color-slate-muted-dark: #475569;
  --color-maroon: #6B1D2A;
  --color-white: hsl(0, 0%, 100%);
  
  /* Glassmorphic Surfaces */
  --bg-glass-dark: hsla(145, 45%, 8%, 0.85);
  --bg-glass-light: hsla(0, 0%, 100%, 0.05);
  --border-glass: hsla(43, 80%, 55%, 0.25);
  --border-glass-light: hsla(0, 0%, 100%, 0.1);
  --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--color-green-dark);
  color: var(--color-slate-light);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 10% 20%, hsla(145, 45%, 10%, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, hsla(43, 80%, 10%, 0.3) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
}

/* --- Premium Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gold {
  color: var(--color-gold);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  border: 1px solid var(--border-glass);
}

/* --- Sticky Modern Navigation --- */
header.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass-light);
  transition: all 0.3s ease;
}

header.sticky-header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

header.sticky-header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

header.sticky-header .brand-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
}

header.sticky-header .brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

header.sticky-header nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

header.sticky-header nav a {
  text-decoration: none;
  color: var(--color-slate-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

header.sticky-header nav a:hover,
header.sticky-header nav a.active {
  color: var(--color-white);
}

.cta-button {
  background: linear-gradient(135deg, var(--color-gold) 0%, hsl(43, 90%, 45%) 100%);
  color: var(--color-green-dark);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-display);
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(212, 175, 55, 0.4);
}

/* --- Hero Section & Story Centerpiece --- */
.hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-badge-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--color-slate-light);
}

.hero p.tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-slate-muted);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Story Highlight Box */
.story-box {
  background: var(--bg-glass-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-premium);
  border-radius: 12px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.story-box::before {
  content: "“";
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--color-gold);
  opacity: 0.15;
  line-height: 1;
}

.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
}

.story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background: radial-gradient(circle, var(--color-gold) 0%, var(--color-green-deep) 100%);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-green-dark);
  font-weight: 700;
}

.story-meta h4 {
  font-weight: 600;
  font-size: 0.95rem;
}

.story-meta p {
  font-size: 0.8rem;
  color: var(--color-slate-muted);
}

/* --- Interactive Goal Dashboard --- */
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: hsla(145, 45%, 6%, 0.6);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.panel-title-icon {
  color: var(--color-gold);
}

/* Live Goal Bar UI */
.progress-container {
  margin-bottom: 2rem;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.progress-track {
  width: 100%;
  height: 24px;
  background-color: var(--color-green-dark);
  border-radius: 12px;
  border: 1px solid var(--border-glass-light);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%; /* Dynamic update */
  background: linear-gradient(90deg, var(--color-green-deep) 0%, var(--color-gold) 100%);
  border-radius: 12px;
  position: relative;
  transition: width 0.8s cubic-bezier(0.1, 0.8, 0.2, 1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shine-bar 2.5s infinite;
}

@keyframes shine-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Stats Metrics Block */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background-color: hsla(0, 0%, 100%, 0.02);
  border: 1px solid var(--border-glass-light);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-slate-muted);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-white);
  transition: color 0.3s;
}

.stat-card.goal-stat .stat-value {
  color: var(--color-gold);
}

/* Live Feed / Activity Panel */
.feed-box {
  display: flex;
  flex-direction: column;
  height: 290px;
}

.feed-items {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 0.5rem;
}

.feed-items::-webkit-scrollbar {
  width: 4px;
}

.feed-items::-webkit-scrollbar-thumb {
  background-color: var(--border-glass-light);
  border-radius: 4px;
}

.feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: hsla(0, 0%, 100%, 0.03);
  border-left: 3px solid var(--color-gold);
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  animation: feed-slide-in 0.3s cubic-bezier(0.1, 0.8, 0.2, 1);
}

@keyframes feed-slide-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.feed-item-detail {
  display: flex;
  flex-direction: column;
}

.feed-item-name {
  font-weight: 600;
  color: var(--color-white);
}

.feed-item-desc {
  font-size: 0.75rem;
  color: var(--color-slate-muted);
}

.feed-item-amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gold);
}

/* --- Sponsorship Calculator & Configurator --- */
.calculator-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-slate-muted);
  max-width: 600px;
  margin: 0 auto;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }
}

.calc-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: hsla(0, 0%, 100%, 0.02);
  border: 1px solid var(--border-glass-light);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.calc-item-row:hover {
  border-color: hsla(43, 80%, 55%, 0.4);
}

.calc-item-meta {
  max-width: 60%;
}

.calc-item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-item-price {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
}

.calc-item-desc {
  font-size: 0.8rem;
  color: var(--color-slate-muted);
  margin-top: 0.25rem;
}

.calc-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc-btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: var(--color-green-deep);
  border: 1px solid var(--border-glass-light);
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
}

.calc-btn:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-green-dark);
}

.calc-btn:active {
  transform: scale(0.95);
}

.calc-input {
  width: 48px;
  text-align: center;
  background-color: var(--color-green-dark);
  border: 1px solid var(--border-glass-light);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.25rem 0;
  border-radius: 4px;
}

.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-input[type=number] {
  -moz-appearance: textfield;
}

/* Sponsorship Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.package-card {
  background: hsla(145, 45%, 6%, 0.5);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
}

.package-card.popular {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px hsla(43, 80%, 55%, 0.15);
}

.package-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--color-gold);
  color: var(--color-green-dark);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--color-slate-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.package-features li::before {
  content: "✓";
  color: var(--color-gold);
  font-weight: 700;
}

.package-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
  background-color: transparent;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.package-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-green-dark);
  border-color: var(--color-gold);
}

/* --- Interactive Timeline Schedule --- */
.schedule-section {
  padding: 4rem 0;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background-color: hsla(0, 0%, 100%, 0.03);
  border: 1px solid var(--border-glass-light);
  color: var(--color-slate-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  color: var(--color-white);
  border-color: var(--border-glass);
}

.tab-btn.active {
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.schedule-panel {
  display: none;
  animation: tab-fade-in 0.4s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.schedule-panel.active {
  display: block;
}

@keyframes tab-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background-color: var(--border-glass-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

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

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background-color: var(--color-green-deep);
  border: 3px solid var(--color-gold);
}

.timeline-time {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.timeline-card {
  background-color: hsla(0, 0%, 100%, 0.02);
  border: 1px solid var(--border-glass-light);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.timeline-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.timeline-card p {
  font-size: 0.85rem;
  color: var(--color-slate-muted);
}

/* --- Interactive Silent Auction Block --- */
.auction-section {
  padding: 4rem 0;
}

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

.auction-card {
  background: hsla(145, 45%, 6%, 0.5);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}

.auction-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
}

.auction-img-placeholder {
  height: 160px;
  background: linear-gradient(135deg, var(--color-green-deep) 0%, var(--color-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-gold);
  border-bottom: 1px solid var(--border-glass-light);
  position: relative;
}

.auction-img-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.auction-img-container {
  height: 160px;
  background: linear-gradient(135deg, var(--color-green-deep) 0%, var(--color-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-glass-light);
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.auction-img-container::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.auction-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
}

.auction-card:hover .auction-logo-img {
  transform: scale(1.1) translateY(-2px);
}

.auction-logo-icon {
  width: 56px;
  height: 56px;
  color: var(--color-gold);
  filter: drop-shadow(0 4px 10px rgba(201, 168, 76, 0.4));
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
}

.auction-card:hover .auction-logo-icon {
  transform: scale(1.1) rotate(5deg);
}

.auction-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.auction-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.auction-body p {
  font-size: 0.8rem;
  color: var(--color-slate-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.auction-bid-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: hsla(0, 0%, 100%, 0.03);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.auction-bid-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-slate-muted);
  font-weight: 500;
}

.auction-bid-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-gold);
}

.auction-bid-holder {
  font-size: 0.7rem;
  color: var(--color-slate-light);
  text-align: right;
}

.bid-form {
  display: flex;
  gap: 0.5rem;
}

.bid-input {
  flex-grow: 1;
  background-color: var(--color-green-dark);
  border: 1px solid var(--border-glass-light);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.bid-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.bid-btn {
  background-color: var(--color-gold);
  color: var(--color-green-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.bid-btn:hover {
  background-color: var(--color-gold-hover);
}

/* --- Live Paddle Raise Console --- */
.paddle-raise-section {
  padding: 4rem 0;
}

.paddle-console {
  background: hsla(145, 45%, 6%, 0.4);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.paddle-console h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.paddle-console p {
  color: var(--color-slate-muted);
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.paddle-buttons-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.paddle-btn {
  background: linear-gradient(135deg, hsla(145, 45%, 12%, 0.8) 0%, hsla(145, 45%, 6%, 0.8) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 1.25rem 2rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.paddle-btn:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
}

.paddle-btn:active {
  transform: scale(0.97);
}

.paddle-btn-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.paddle-btn-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--color-slate-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* --- Detroit Corporate Target Pitch Builder --- */
.pitch-section {
  padding: 4rem 0;
}

.pitch-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .pitch-container {
    grid-template-columns: 1fr;
  }
}

.pitch-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pitch-select-btn {
  background-color: hsla(0, 0%, 100%, 0.02);
  border: 1px solid var(--border-glass-light);
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.pitch-select-btn:hover {
  border-color: var(--border-glass);
  background-color: hsla(0, 0%, 100%, 0.04);
}

.pitch-select-btn.active {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold);
}

.pitch-select-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.95rem;
}

.pitch-select-tag {
  font-size: 0.75rem;
  color: var(--color-slate-muted);
  margin-top: 0.15rem;
}

.pitch-select-btn.active .pitch-select-tag {
  color: var(--color-slate-light);
}

.pitch-box {
  background-color: hsla(145, 45%, 4%, 0.7);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pitch-header-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  border: 1px solid var(--border-glass);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-green-dark);
}

.pitch-letter {
  flex-grow: 1;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
  color: var(--color-slate-light);
  overflow-y: auto;
  max-height: 400px;
  padding-right: 0.5rem;
  border: 1px solid transparent;
}

.pitch-letter::-webkit-scrollbar {
  width: 4px;
}

.pitch-letter::-webkit-scrollbar-thumb {
  background-color: var(--border-glass-light);
  border-radius: 4px;
}

/* --- Footer --- */
footer {
  background-color: var(--color-green-deep);
  border-top: 1px solid var(--border-glass-light);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: var(--color-slate-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-branding {
  font-size: 0.8rem;
  color: var(--color-slate-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.2);
}

/* --- Modal Dialog Overlay & Animations --- */
dialog {
  background: var(--bg-glass-dark);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  max-width: 500px;
  width: 90%;
  margin: auto;
  padding: 2.5rem;
  color: var(--color-slate-light);
  position: fixed;
  inset: 0;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.75);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dialog-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
}

.dialog-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-slate-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.dialog-close:hover {
  color: var(--color-white);
}

.dialog-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-slate-muted);
}

.form-group input,
.form-group select {
  background-color: var(--color-green-dark);
  border: 1px solid var(--border-glass-light);
  border-radius: 6px;
  padding: 0.75rem;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.dialog-submit {
  background: linear-gradient(135deg, var(--color-gold) 0%, hsl(43, 90%, 45%) 100%);
  color: var(--color-green-dark);
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.dialog-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

/* --- Native Top-Layer Modal Transitions --- */
dialog[open] {
  opacity: 1;
  transform: scale(1) translateY(0);

  @starting-style {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }
}

dialog {
  opacity: 0;
  transform: scale(0.95) translateY(15px);
  transition-property: opacity, transform, display, overlay;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.1, 0.8, 0.2, 1);
  transition-behavior: allow-discrete;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0);
  transition:
    display 0.3s allow-discrete,
    overlay 0.3s allow-discrete,
    background-color 0.3s ease-out;
}

dialog[open]::backdrop {
  background-color: rgba(0, 0, 0, 0.75);

  @starting-style {
    background-color: rgba(0, 0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  dialog {
    transform: none;
    transition-duration: 0.1s;
  }
  @starting-style {
    dialog[open] {
      transform: none;
    }
  }
}

/* --- Success Celebration Visual Overlay --- */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(6, 25, 14, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.celebration-box {
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.1, 0.8, 0.2, 1);
  padding: 3rem;
  max-width: 500px;
}

.success-overlay.active .celebration-box {
  transform: scale(1);
}

.celebration-trophy {
  font-size: 5rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  animation: bounce-trophy 2s infinite ease-in-out;
}

@keyframes bounce-trophy {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.celebration-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.celebration-desc {
  font-size: 0.95rem;
  color: var(--color-slate-muted);
  margin-bottom: 2rem;
}

/* --- High-Tech Gamified Hole Sponsor Auction Styles --- */
.hole-card {
  background: hsla(145, 45%, 6%, 0.55); /* Premium dark glassmorphic background */
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.hole-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.25);
}

.hole-card.locked {
  border-top: 4px solid var(--color-slate-muted);
}

.hole-card.active {
  border-top: 4px solid var(--color-gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.12);
}

.hole-card.active:hover {
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.3);
}

.hole-card.secured {
  border-top: 4px solid var(--color-maroon);
  background: hsla(349, 57%, 12%, 0.45); /* Elegant dark maroon glassmorphic background */
  box-shadow: 0 0 15px rgba(107, 29, 42, 0.25);
}

/* Status Badges */
.hole-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.hole-status-badge.locked {
  background: rgba(100, 116, 139, 0.1);
  color: var(--color-slate-muted);
}

.hole-status-badge.active {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

.hole-status-badge.secured {
  background: rgba(107, 29, 42, 0.1);
  color: var(--color-maroon);
  border: 1px solid rgba(107, 29, 42, 0.2);
}

/* Timer line */
.hole-timer-line {
  font-size: 0.8rem;
  color: var(--color-slate-muted);
  margin-bottom: 0.5rem;
}

.countdown-timer {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: var(--color-gold);
}

/* Hole Action Buttons */
.hole-btn {
  padding: 0.65rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hole-btn.primary {
  background: var(--color-gold);
  color: var(--color-slate-dark);
}

.hole-btn.primary:hover {
  background: var(--color-gold-light);
  transform: scale(1.02);
}

.hole-btn.secondary {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.hole-btn.secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: scale(1.02);
}

/* Pulse Animation */
.pulse {
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-icon {
  width: 12px;
  height: 12px;
}

.hole-card p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* --- Light Card Styling & Contrast Fixes --- */
.package-card-light {
  background: var(--color-slate-light) !important;
  border-top: 4px solid var(--color-gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s;
}

.package-card-light:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold) !important;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15) !important;
}

.package-card-light h3 {
  color: var(--color-maroon) !important;
}

.package-card-light .package-price {
  color: var(--color-slate-dark) !important;
}

.package-card-light p {
  color: var(--color-slate-muted-dark) !important;
}

.package-card-light .package-features li {
  color: var(--color-slate-dark) !important;
}


.package-card-light .badge {
  background-color: rgba(201, 168, 76, 0.15) !important;
  color: hsl(43, 90%, 30%) !important; /* Premium high-contrast amber/gold */
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
}

.package-card-light .package-btn {
  border: 1.5px solid var(--color-maroon) !important;
  color: var(--color-maroon) !important;
  background-color: transparent !important;
}

.package-card-light .package-btn:hover {
  background-color: var(--color-maroon) !important;
  color: var(--color-white) !important;
  border-color: var(--color-maroon) !important;
}

/* --- Legend / Outing Highlights Panel --- */
.legend-panel {
  background: var(--color-slate-light) !important;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: bold;
}

.legend-item.active {
  color: var(--color-slate-dark) !important;
}

.legend-item.locked {
  color: var(--color-slate-muted-dark) !important;
}

.legend-item.secured {
  color: var(--color-maroon) !important;
}

.legend-badge {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--color-maroon) !important;
  background: rgba(107, 29, 42, 0.08) !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(107, 29, 42, 0.2) !important;
}


/* =========================================
   EQUIPMENT SPONSOR CATALOG & CAPITOL CAMPAIGN
   ========================================= */

.catalog-banner {
  display: flex;
  gap: 1rem;
  background: rgba(107, 29, 42, 0.08);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--color-gold);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.catalog-banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.15rem;
}

.catalog-banner-text {
  font-size: 0.95rem;
  color: var(--color-slate-light);
  line-height: 1.5;
  margin: 0;
}

/* Dashboard Categories Grid */
.category-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.category-stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.cat-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-slate-muted);
}

.cat-stat-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-white);
  font-family: var(--font-display);
}

.cat-icon {
  width: 14px;
  height: 14px;
  stroke: var(--color-gold);
}

.cat-stat-pct {
  font-family: var(--font-display);
  font-weight: bold;
  color: var(--color-gold);
}

.cat-stat-values {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  color: var(--color-slate-muted);
  gap: 0.25rem;
}

.cat-stat-values span:first-child {
  color: var(--color-white);
  font-weight: 600;
}

/* Impact Index Styles */
.catalog-impact-showcase {
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  padding: 1.75rem;
}

.impact-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 2px solid var(--color-maroon);
  transition: all 0.2s ease;
}

.impact-card:hover {
  background: rgba(107, 29, 42, 0.1);
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateX(3px);
}

.impact-amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-gold);
}

.impact-item {
  font-size: 0.8rem;
  color: var(--color-slate-light);
  line-height: 1.3;
}

/* Catalog Filter Tabs */
.catalog-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-slate-muted);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.catalog-tab-btn:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
}

.catalog-tab-btn.active {
  border-color: var(--color-gold);
  background: var(--color-gold-light);
  color: var(--color-gold);
}

.tab-icon {
  width: 13px;
  height: 13px;
}

/* Catalog Grid Card Styles */
.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-glass-dark);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 480px;
}

.catalog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-maroon);
  opacity: 0.8;
  transition: height 0.3s ease, background 0.3s ease;
}

.catalog-card:hover {
  border-color: var(--border-glass);
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}

.catalog-card:hover::before {
  height: 5px;
  background: var(--color-gold);
}

.catalog-card.fully-funded::before {
  background: #10B981;
}

.catalog-img-container {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.catalog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-img {
  transform: scale(1.05);
}

.catalog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(15, 23, 42, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
}

.catalog-card-cat {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-gold);
  font-weight: bold;
  text-transform: uppercase;
}

.catalog-card-qty {
  color: var(--color-slate-muted);
}

.catalog-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.catalog-card-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-slate-muted);
  margin-bottom: 1rem;
  min-height: 58px;
}

.catalog-specs-list {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  list-style: none;
}

.catalog-specs-list li {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.catalog-specs-list li:last-child {
  margin-bottom: 0;
}

.catalog-specs-list li::before {
  content: '⚡';
  font-size: 0.65rem;
  color: var(--color-gold);
}

.catalog-funding-box {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

.catalog-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.catalog-price-val {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-white);
  font-family: var(--font-display);
}

.catalog-price-lbl {
  font-size: 0.7rem;
  color: var(--color-slate-muted);
  text-transform: uppercase;
}

.catalog-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-slate-muted);
  margin-bottom: 0.3rem;
}

.catalog-progress-amt {
  font-weight: 600;
  color: var(--color-white);
}

.catalog-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: var(--color-gold);
  color: var(--color-slate-dark);
  margin-top: 0.75rem;
}

.catalog-card-btn:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
}

.catalog-card-btn.fully-funded {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #10B981 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  cursor: not-allowed;
}

.catalog-card-btn.fully-funded:hover {
  transform: none;
}

/* =========================================
   PREMIUM E-COMMERCE & STRIPE CHECKOUT SYSTEM
   ========================================= */

/* Unified Cart Multi-Step Dialog */
.unified-checkout-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  max-width: 900px;
  width: 100%;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .unified-checkout-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checkout-sidebar {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Stripe Payment Sheet Elements Mock */
.stripe-container {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stripe-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.stripe-title {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.stripe-badge {
  font-size: 0.7rem;
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.stripe-input-row {
  display: flex;
  gap: 0.75rem;
}

.stripe-input {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-white) !important;
  padding: 0.75rem !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  width: 100%;
  font-family: monospace;
  letter-spacing: 0.05em;
  transition: border-color 0.2s;
}

.stripe-input:focus {
  border-color: var(--color-gold) !important;
  outline: none;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.2) !important;
}

.stripe-trust-seals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--color-slate-muted);
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.5rem;
}

/* Apple & Google Pay Mock Button */
.express-pay-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  font-family: var(--font-sans);
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, filter 0.2s;
  margin-bottom: 0.75rem;
}

.express-pay-btn.apple-pay {
  background: #000000;
  color: #ffffff;
}

.express-pay-btn.google-pay {
  background: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
}

.express-pay-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.express-divider {
  text-align: center;
  position: relative;
  margin: 1rem 0;
  font-size: 0.75rem;
  color: var(--color-slate-muted);
  text-transform: uppercase;
}

.express-divider::before,
.express-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.express-divider::before { left: 0; }
.express-divider::after { right: 0; }

/* Dynamic Sponsor Logo Showcase Strip */
.sponsor-wall-section {
  background: rgba(15, 23, 42, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2rem 0;
  margin: 3rem 0;
  width: 100%;
  overflow: hidden;
}

.sponsor-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 1.5rem;
}

.sponsor-logo-card {
  height: 50px;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%) contrast(80%) brightness(150%);
  opacity: 0.65;
  transition: all 0.3s ease;
}

.sponsor-logo-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.sponsor-logo-card:hover {
  filter: grayscale(0%) contrast(100%) brightness(100%);
  opacity: 1;
  transform: scale(1.05);
}

/* =========================================
   DYNAMIC DIGITAL TICKET LAYOUT
   ========================================= */
.ticket-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.digital-ticket {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.ticket-header-strip {
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--color-gold);
  text-transform: uppercase;
}

.ticket-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-hero {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
  text-align: center;
}

.ticket-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.ticket-subtitle {
  font-size: 0.75rem;
  color: var(--color-slate-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticket-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.ticket-label {
  color: var(--color-slate-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.ticket-value {
  color: var(--color-white);
  font-weight: bold;
}

.ticket-perforation-divider {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
  position: relative;
}

.ticket-perforation-divider::before {
  content: '';
  position: absolute;
  left: -20px;
  width: 16px;
  height: 16px;
  background: var(--color-green-dark);
  border-radius: 50%;
  border-right: 2px solid var(--color-gold);
}

.ticket-perforation-divider::after {
  content: '';
  position: absolute;
  right: -20px;
  width: 16px;
  height: 16px;
  background: var(--color-green-dark);
  border-radius: 50%;
  border-left: 2px solid var(--color-gold);
}

.ticket-dash-line {
  border-top: 2px dashed rgba(201, 168, 76, 0.4);
  width: 100%;
}

.ticket-stub-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.ticket-qr-canvas-holder {
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ticket-barcode-num {
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

/* =========================================
   SECURE ADMIN DASHBOARD PANEL
   ========================================= */
.admin-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.85) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 1rem;
}

.admin-tabs-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.admin-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-slate-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.admin-tab-btn:hover {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--color-white);
}

.admin-tab-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-slate-dark);
}

.admin-data-container {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.35);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.admin-table th {
  background: rgba(15, 23, 42, 0.8);
  color: var(--color-gold);
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  vertical-align: middle;
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.admin-action-btn {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.admin-action-btn.approve {
  background: #10b981;
  color: #ffffff;
}

.admin-action-btn.reject {
  background: #ef4444;
  color: #ffffff;
}

.admin-action-btn:hover {
  opacity: 0.85;
}

.admin-logo-preview {
  height: 30px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  padding: 0.15rem;
  border-radius: 4px;
}

/* --- Premium Campaign Video Styles --- */
.video-container-box {
  background: var(--bg-glass-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-premium);
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  margin: 3rem auto;
  text-align: left;
}

.video-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding-bottom: 0.75rem;
}

.video-header-icon {
  color: var(--color-gold);
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: #000;
  aspect-ratio: 16/9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Premium Play Overlay Styles */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.play-btn-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s ease, box-shadow 0.25s ease;
}

.play-icon-gold {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
  fill: var(--color-gold);
}

.play-btn-text {
  margin-top: 1.15rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(18, 25, 20, 0.85);
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

/* Hover & Active Effects */
.video-play-overlay:hover .play-btn-circle {
  transform: scale(1.12);
  background: rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.7);
}

.video-play-overlay:hover .play-btn-text {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(2px);
}

.video-caption {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-slate-muted);
  text-align: center;
  font-family: var(--font-sans);
}

/* --- Volunteer & Support Center Overhaul Styles --- */
.volunteer-section {
  padding: 4rem 0;
}

.volunteer-panel {
  display: none;
  animation: tab-fade-in 0.4s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.volunteer-panel.active {
  display: block;
}

.volunteer-card {
  background: var(--bg-glass-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-panel);
  transition: transform 0.2s, border-color 0.2s;
}

.volunteer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 191, 36, 0.25);
}

.volunteer-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-white);
}

.volunteer-card select.stripe-input {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass-light);
  color: var(--color-white);
  border-radius: 6px;
  padding: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.volunteer-card select.stripe-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
  outline: none;
}

.volunteer-card select.stripe-input option {
  background-color: #0b150c; /* Matches deep forest dark scheme */
  color: var(--color-white);
}

/* --- Floating Support Ticket Widget --- */
.support-widget-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  font-family: var(--font-sans);
}

.support-trigger-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-slate-dark) 0%, #1e293b 100%);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(201, 168, 76, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.support-trigger-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(201, 168, 76, 0.4);
  color: var(--color-white);
  border-color: var(--color-white);
}

.support-panel {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: 350px;
  background: var(--bg-glass-dark);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.support-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.support-panel-header {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(15, 23, 42, 0) 100%);
  border-bottom: 1px solid var(--border-glass-light);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.support-panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.1rem;
}

.support-panel-close {
  background: none;
  border: none;
  color: var(--color-slate-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.support-panel-close:hover {
  color: var(--color-white);
}

.support-panel-body {
  padding: 1.25rem;
}

.support-form-group {
  margin-bottom: 1rem;
}

.support-form-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-slate-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.support-form-input, .support-form-textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  color: var(--color-white);
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.support-form-input:focus, .support-form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.2);
}

.support-form-textarea {
  resize: none;
  height: 100px;
}

.support-submit-btn {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #b2933d 100%);
  color: var(--color-slate-dark);
  border: none;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.support-submit-btn:hover {
  background: var(--color-white);
  color: var(--color-slate-dark);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.support-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .support-widget-container {
    bottom: 1rem;
    right: 1rem;
  }
  .support-panel {
    width: 290px;
    bottom: 4rem;
  }
}

/* --- Committee User Manual & Tour Guide Styles --- */
.tour-guide-panel {
  position: fixed;
  right: 20px;
  bottom: 85px;
  width: 380px;
  max-width: calc(100vw - 40px);
  background: linear-gradient(135deg, rgba(8, 26, 18, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  box-shadow: var(--shadow-premium), 0 0 15px rgba(201, 168, 76, 0.2);
  z-index: 105;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: tour-panel-slide 0.3s cubic-bezier(0.1, 0.8, 0.2, 1);
  overflow: hidden;
}

@keyframes tour-panel-slide {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.tour-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-white);
}

.tour-icon {
  stroke: var(--color-gold);
  width: 18px;
  height: 18px;
}

.tour-close-btn {
  background: none;
  border: none;
  color: var(--color-slate-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.tour-close-btn:hover {
  color: var(--color-white);
}

.tour-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-step-indicator {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-step-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-top: -0.25rem;
  margin-bottom: 0;
  font-weight: 700;
}

.tour-step-desc {
  font-size: 0.88rem;
  color: var(--color-slate-muted);
  line-height: 1.5;
}

.tour-incentive-box {
  background: rgba(201, 168, 76, 0.06);
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.tour-incentive-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: bold;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tour-incentive-content {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.tour-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

/* Page Spotlight / Highlight Overlay */
.tour-highlight {
  outline: 3px solid var(--color-gold) !important;
  outline-offset: 10px !important;
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.55) !important;
  border-color: var(--color-gold) !important;
  scroll-margin-top: 120px !important;
  position: relative;
  z-index: 101 !important;
  transition: all 0.3s ease-in-out;
}

/* Tour overlay backdrop */
.tour-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 26, 18, 0.6);
  backdrop-filter: blur(2px);
  z-index: 100;
  pointer-events: none;
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 480px) {
  .tour-guide-panel {
    right: 10px;
    left: 10px;
    bottom: 75px;
    width: auto;
  }
}

/* Center the Lessons card under Tigers card on desktop */
@media (min-width: 992px) {
  .auction-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  #item-lessons {
    grid-column: 2 !important;
  }

  /* Center Michigan State Championship Registration under other Travel products (5 items total) - Sorting-proof */
  #catalogGrid.cat-travel-competition {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  #catalogGrid.cat-travel-competition #travel-2 {
    grid-column: 2 / span 2 !important;
    order: 9999 !important;
    justify-self: center;
    width: 100%;
    max-width: 320px;
  }
}

/* Tablet (2-column grid) centering for auction and travel catalog */
@media (min-width: 640px) and (max-width: 991px) {
  .auction-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #catalogGrid.cat-travel-competition {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #catalogGrid.cat-travel-competition #travel-2 {
    grid-column: 1 / span 2 !important;
    order: 9999 !important;
    justify-self: center;
    width: 100%;
    max-width: 320px;
  }
}

/* Mobile (1-column grid) styling */
@media (max-width: 639px) {
  .auction-grid {
    grid-template-columns: 1fr !important;
  }
  #catalogGrid.cat-travel-competition #travel-2 {
    order: 9999 !important;
    justify-self: center;
    width: 100%;
    max-width: 320px;
  }
}

/* Responsive Sticky Navigation for Mobile, Tablet, and Watch viewports */
@media (max-width: 991px) {
  header.sticky-header .nav-container {
    display: grid !important;
    grid-template-areas: 
      "brand btn"
      "nav nav" !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    height: auto !important;
    padding: 0.6rem 1rem !important;
    gap: 0.6rem !important;
  }
  header.sticky-header .brand {
    grid-area: brand !important;
  }
  header.sticky-header nav {
    grid-area: nav !important;
    width: 100% !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  header.sticky-header nav::-webkit-scrollbar {
    display: none !important;
  }
  header.sticky-header nav ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.25rem !important;
    padding: 0.25rem 0 !important;
    margin: 0 !important;
  }
  header.sticky-header nav li {
    flex-shrink: 0 !important;
  }
  header.sticky-header .nav-container > div:last-child {
    grid-area: btn !important;
  }
}

/* Touch-friendly close targets - minimum 44x44px for all screen sizes */
.dialog-close {
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  margin-top: -10px !important;
  margin-right: -10px !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  transition: all 0.2s !important;
}

.dialog-close:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

.support-panel-close, .tour-close-btn {
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s !important;
  border-radius: 50% !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
}

.support-panel-close:hover, .tour-close-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-white) !important;
}

/* Touch target size improvements for buttons on mobile, tablet, and watch */
@media (max-width: 900px) {
  .cta-button, .package-btn, .bid-btn, .support-submit-btn, .tour-controls button {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .bid-input {
    min-height: 44px !important;
    box-sizing: border-box !important;
  }
}

/* Viewport and dialog optimizations for mobile, tablet, and watch architectures */
@media (max-width: 768px) {
  dialog {
    padding: 2rem !important;
    width: 92% !important;
  }
}

@media (max-width: 480px) {
  dialog {
    padding: 1.5rem !important;
    width: 95% !important;
  }
  .dialog-header h3 {
    font-size: 1.15rem !important;
  }
}

@media (max-width: 320px) { /* Watch friendly adjustments */
  dialog {
    padding: 1rem !important;
    width: 96% !important;
  }
  .dialog-header h3 {
    font-size: 1rem !important;
  }
  .container {
    padding: 0 0.75rem !important;
  }
  body {
    font-size: 14px !important;
  }
  header.sticky-header .brand-text {
    font-size: 0.9rem !important;
  }
  .cta-button {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
  }
}
