body {
  background-color: #0A0A0F;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}
.gold-glow {
  background: radial-gradient(circle at center, rgba(201,162,39,0.08) 0%, transparent 70%);
}
.gold-row { background-color: rgba(201,162,39,0.05); }
.silver-row { background-color: rgba(168,169,173,0.05); }
.bronze-row { background-color: rgba(205,127,50,0.05); }

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-item.active .accordion-content {
  max-height: 500px;
}
.accordion-item.active .chevron {
  transform: rotate(180deg);
}

/* Tab Active State */
.tab.active {
  color: #C9A227;
  border-bottom-color: #C9A227;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}