/* ============================================
   AZURA BAY - bot.css
   ============================================ */

/* HERO */
.bot-hero {
  padding-top: 48px;
  padding-bottom: 12px;
}

.bot-hero-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  transform: translateY(-8px);
}

.bot-avatar {
  font-size: 4rem;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}

.bot-hero-inner .label {
  display: inline-block;
  margin-bottom: 6px;
}

.bot-hero-inner h1 {
  margin-bottom: 8px;
}

.bot-hero-inner p {
  margin-top: 0;
}

.bot-code {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: monospace;
  font-size: .85rem;
  color: var(--corail);
}

/* CATÉGORIES */
.bot-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bot-cat-btn {
  padding: 9px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.bot-cat-btn:hover {
  border-color: var(--corail);
  color: var(--corail);
}

.bot-cat-btn.active {
  background: var(--corail);
  border-color: var(--corail);
  color: #fff;
}

/* PANELS */
.bot-panel { display: none; }
.bot-panel.active { display: block; }

.bot-panel-header {
  margin-bottom: 28px;
}

.bot-panel-header h2 { margin-bottom: 8px; }

.bot-section-title {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin: 28px 0 12px;
}

/* COMMANDES */
.bot-cmds {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bot-cmd {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.bot-cmd:last-child { border-bottom: none; }
.bot-cmd:hover { background: var(--bg-secondary); }

.bot-cmd-name {
  font-family: monospace;
  font-size: .875rem;
  font-weight: 600;
  color: var(--corail);
  flex-shrink: 0;
  min-width: 220px;
}

.bot-cmd-desc {
  font-size: .875rem;
  color: var(--text-secondary);
}

/* INFO */
.bot-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(26,188,156,.08);
  border: 1px solid rgba(26,188,156,.2);
  border-radius: var(--radius);
  font-size: .875rem;
  color: var(--text-secondary);
}

.bot-info-icon { flex-shrink: 0; font-size: 1rem; }

@media (max-width: 600px) {
  .bot-hero {
    padding-top: 32px;
  }

  .bot-hero-inner {
    flex-direction: column;
    text-align: center;
    transform: none;
  }

  .bot-cmd {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .bot-cmd-name {
    min-width: unset;
  }
}