/* TeknoWeb Portal — branding */
:root {
  --bg-color: 15 23 42;          /* slate-900 */
  --bg-card-color: 30 41 59;     /* slate-800 */
  --primary: 59 130 246;         /* blue-500 */
}

/* Header gradient */
header h1, .text-theme-200 {
  background: linear-gradient(90deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

/* Service card hover */
.service-card,
.bookmark {
  transition: all 200ms ease-out;
  border: 1px solid transparent;
}
.service-card:hover,
.bookmark:hover {
  transform: translateY(-2px);
  border-color: rgb(96 165 250 / 0.4);
  box-shadow: 0 8px 16px -4px rgb(0 0 0 / 0.4);
}

/* Group separator */
.services-group h2,
.bookmark-group h2 {
  border-bottom: 1px solid rgb(71 85 105 / 0.4);
  padding-bottom: 6px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: rgb(148 163 184);
}

/* Status dot subtle pulse */
.status-up {
  box-shadow: 0 0 8px rgb(34 197 94 / 0.6);
}

