* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #0f0f0f;
  color: #e4e4e4;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.header {
  background: #1a1a1a;
  padding: 16px 20px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header h1 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.header .status {
  font-size: 12px;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header .status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 32px;
}
.content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
.bots {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}
.bot-card {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 18px;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
}
.bot-card:hover {
  border-color: #007aff;
  background: #2e2e2e;
}
.bot-card:active {
  transform: scale(0.99);
}
.bot-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.bot-card p {
  font-size: 13px;
  color: #9a9a9a;
  line-height: 1.4;
}
