/* Custom theme enhancements for Nabdh Al-Malaeb */

:root {
  color-scheme: dark;
}

body {
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  background-color: #090D16;
  overscroll-behavior-y: none;
}

/* Tab indicator highlights */
.active-tab {
  color: #22C55E !important;
  border-color: #22C55E !important;
}

.active-mobile {
  color: #22C55E !important;
}

/* Custom subtle scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0F172A;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Hide scrollbar utility */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Pulse animation for live games */
@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.15);
  }
}

.pulse-live-dot {
  animation: live-pulse 1.8s infinite ease-in-out;
}

/* Card hover & active transitions */
.match-card {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.match-card:hover {
  border-color: #334155;
  transform: translateY(-2px);
}

.news-card {
  transition: all 0.2s ease-out;
}
.news-card:hover {
  border-color: #38BDF8;
}

/* Safe touch target padding */
button, input, select {
  touch-action: manipulation;
}