/* FUNDO */
.bybbot-bg {
  background: radial-gradient(circle at top, #0f1f1c, #050707);
  min-height: 100vh;
  color: #e0f7f4;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

/* CARD HUD */
.bybbot-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(29, 233, 182, 0.25);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(29, 233, 182, 0.08);
  padding: 20px;
}

/* TÍTULOS */
.bybbot-title {
  color: #1de9b6;
  letter-spacing: 1px;
}

.bybbot-subtitle {
  opacity: 0.8;
}

/* STATUS */
.bybbot-status-ok {
  color: #1de9b6;
  font-weight: bold;
}

/* INPUT */
.bybbot-input {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(29,233,182,0.3);
  color: #e0f7f4;
}

/* BOTÃO */
.bybbot-btn {
  background-color: #1de9b6;
  color: #00332c;
  border-radius: 8px;
}

.bybbot-btn:hover {
  background-color: #17c9a0;
}

/* RESPOSTA */
.bybbot-response {
  background: rgba(0,0,0,0.35);
  padding: 12px;
  border-radius: 8px;
  min-height: 120px;
  font-family: monospace;
}

/* LISTA */
.bybbot-list li {
  list-style: none;
  padding: 4px 0;
}

/* DICA */
.bybbot-hint {
  font-size: 0.85em;
  opacity: 0.7;
}

@media (max-width: 600px) {

  body {
    font-size: 16px;
  }

  .bybbot-title {
    font-size: 1.6em;
  }

  .bybbot-subtitle {
    font-size: 0.95em;
  }

  .bybbot-card h4 {
    font-size: 1.2em;
  }

  .bybbot-input {
    font-size: 1em;
    min-height: 100px;
  }

  .bybbot-btn {
    width: 100%;
    font-size: 1em;
    padding: 12px;
  }

  .bybbot-response {
    font-size: 0.95em;
  }

  .w3-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .bybbot-card {
    margin-bottom: 16px;
  }
}
