:root {
  --bg: #0b0b10;
  --card: #151520;
  --text: #f2f2f7;
  --muted: #a1a1b3;
  --accent: #7c5cff;
  --accent-soft: rgba(124,92,255,0.15);
  --premium: linear-gradient(135deg, #7c5cff, #4b3cff);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: radial-gradient(circle at top, #12121a, var(--bg));
  color: var(--text);
  min-height: 100vh;
  padding: 48px 24px;
}

.page-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.page-header h1 {
  font-size: 2.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.05rem;
}

.bots-section {
  max-width: 1200px;
  margin: 0 auto 72px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 24px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.bots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.bot-card {
  background: linear-gradient(180deg, var(--card), #101018);
  border-radius: 22px;
  padding: 28px 24px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border .35s ease;
}

.bot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none; /* <--- isso permite clicar nos botões abaixo */
}


.bot-card:hover::before {
  opacity: 1;
}

.bot-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(124,92,255,0.5);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.bot-card.premium {
  border: none;
  background: linear-gradient(180deg, #1b1b2e, #121225);
}

.bot-card.premium::after {
  content: "PREMIUM";
  position: absolute;
  top: 18px;
  right: -36px;
  transform: rotate(45deg);
  background: var(--premium);
  color: #fff;
  font-size: 0.7rem;
  padding: 6px 40px;
  letter-spacing: 0.12em;
}

.bot-image {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.bot-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.bot-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.invite-button {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #5a3bff);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease;
}

.invite-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124,92,255,0.4);
}

.invite-button.premium {
  background: var(--premium);
}

.page-footer {
  margin-top: 80px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}