/* Mobile Viewport Optimization for Samsung S24 FE & Modern Browsers */
html, body {
  height: 100%;
  height: 100dvh;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #090D16;
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Pulse Glow */
.glow-cyan {
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.35);
}

.glow-red {
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}
