@layer base {
  body {
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
  }
}

.font-tajawal {
  font-family: 'Tajawal', sans-serif;
}

.font-changa {
  font-family: 'Changa', sans-serif;
}

/* Control Button styling */
.control-btn {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* Custom glow effects */
.glow-cyan {
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
}

/* Speed shimmer lines */
.speed-shimmer {
  background: radial-gradient(circle at center, transparent 40%, rgba(6, 182, 212, 0.08) 75%, rgba(14, 165, 233, 0.2) 100%);
}

/* Range input customization */
input[type=range] {
  -webkit-appearance: none;
  height: 6px;
  background: #1e293b;
  border-radius: 9999px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #38bdf8;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
}