/* css/components.css */
.glass-panel {
  background: rgba(16, 29, 47, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.tgs-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; font-weight: 500; transition: all 0.3s ease;
  border-radius: 0; position: relative; overflow: hidden;
}

.tgs-btn-primary {
  background: var(--blue); color: white; border: 1px solid var(--blue);
}
.tgs-btn-primary:hover {
  background: transparent; border-color: var(--cyan); color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.tgs-btn-secondary {
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.2);
}
.tgs-btn-secondary:hover { border-color: white; }

.tech-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.tech-label::before { content: ''; display: block; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }

.metric-card {
  background: var(--surface); border: 1px solid rgba(148,163,184,0.1);
  padding: 1.5rem; transition: transform 0.3s, border-color 0.3s;
}
.metric-card:hover { transform: translateY(-2px); border-color: rgba(0, 217, 255, 0.3); }

.glow-text { text-shadow: 0 0 20px rgba(0, 217, 255, 0.4); }

.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; box-shadow: 0 0 8px currentColor; }
.status-green { background: #22C55E; color: #22C55E; }