/* Modern FIFA 3D Arab Tournament Styles */
@layer base {
  * {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    box-sizing: border-box;
  }
}

body {
  touch-action: none;
  overflow: hidden;
  background-color: #050914;
}

/* Action button bounce & active states */
.action-btn {
  box-shadow: 0 8px 20px -2px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.action-btn:active {
  transform: scale(0.9) !important;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.7);
}

/* Custom Goal celebration animation */
@keyframes goalPop {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(40px);
  }
  60% {
    opacity: 1;
    transform: scale(1.08) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.goal-anim {
  animation: goalPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Scrollbar polish */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.35);
}