.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stadium-pattern {
  background-color: #040A14;
  background-image: radial-gradient(#0B4DA2 0.5px, transparent 0.5px);
  background-size: 24px 24px;
}

.gold-gradient {
  background: linear-gradient(45deg, #B38F2D, #F2D472);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-scheduled {
  background: rgba(11, 77, 162, 0.15);
  color: #adc6ff;
}

.status-live {
  background: rgba(242, 212, 114, 0.15);
  color: #F2D472;
  animation: pulse-glow 2s ease-in-out infinite;
}

.status-finished {
  background: rgba(141, 144, 157, 0.15);
  color: #8d909d;
}

.status-suspended {
  background: rgba(255, 180, 171, 0.15);
  color: #ffb4ab;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 212, 114, 0); }
  50% { box-shadow: 0 0 8px 2px rgba(242, 212, 114, 0.3); }
}

/* Mobile menu animation */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#mobile-menu.open {
  display: block;
  max-height: 300px;
}

/* Custom cursor */
html {
  cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="4" fill="%23F2D472" opacity="0.9"/><circle cx="10" cy="10" r="9" stroke="%23F2D472" stroke-width="1" fill="none" opacity="0.4"/></svg>') 10 10, auto;
}

a, button, [role="button"] {
  cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="6" fill="%23F2D472" opacity="0.9"/><circle cx="12" cy="12" r="11" stroke="%23F2D472" stroke-width="1" fill="none" opacity="0.5"/></svg>') 12 12, pointer;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #040A14;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0B4DA2, #B38F2D);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #adc6ff, #F2D472);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #0B4DA2 #040A14;
}
