/* Agent Launcher - Stream Deck Command Center */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #0c0c1d;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
}

.header h1 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff00c8, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.header p {
  color: #94a3b8;
  font-size: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  width: 100%;
}

.card {
  background: #1a1a2e;
  border: 1px solid #2d2d4a;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #ff00c8;
  box-shadow: 0 8px 32px rgba(255, 0, 200, 0.15);
  background: #1e1e35;
}

.card .emoji {
  font-size: 3rem;
  line-height: 1;
}

.card .name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e2e8f0;
}

.card .role {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.card .shortcut {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  color: #475569;
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: #12122a;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 0, 200, 0.15);
  border: 1px solid rgba(255, 0, 200, 0.3);
  border-radius: 6px;
  font-size: 0.65rem;
  color: #ff00c8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer {
  margin-top: 2.5rem;
  color: #475569;
  font-size: 0.75rem;
  text-align: center;
}

.footer a {
  color: #64748b;
}
