/* Futuristic Font Selection */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&display=swap');

body {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.05em;
}

/* Terminus Glass Cards */
.card {
  background: rgba(10, 15, 20, 0.6) !important;
  backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(0, 242, 255, 0.15) !important;
  border-left: 3px solid #00f2ff !important; /* Left-side accent bar */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  background: rgba(10, 15, 20, 0.8) !important;
  border-left: 3px solid #ff4655 !important; /* Glows red on interaction */
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
  transform: translateX(5px);
}

/* Header & Text Glow */
h2, h3, .text-sm {
  text-transform: uppercase;
  color: #00f2ff;
  text-shadow: 0 0 8px rgba(0, 242, 255, 0.3);
}

/* Modern Flush Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(#00f2ff, #ff4655);
  border-radius: 2px;
}
