/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Background */
body {
  background-color: #0f0f13; /* Deep Prime Video dark */
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Header Section */
header {
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid #222;
}

header h1 {
  font-size: 2.4rem;
  font-weight: 700;
}

header p {
  font-size: 1.1rem;
  color: #a8a8a8;
  margin-top: 10px;
}

/* Content Wrapper */
.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

/* Grid for Bot Cards */
.bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Bot Card Design */
.bot-card {
  background: #18181d;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #1f1f25;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bot-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.4);
}

/* Bot Logo */
.bot-card img {
  width: 110px;
  height: auto;
  margin-bottom: 15px;
}

/* Bot Titles */
.bot-card h3 {
  font-size: 1.4rem;
  margin-top: 10px;
}

/* Bot Description */
.bot-card p {
  font-size: 0.95rem;
  color: #c5c5c5;
  margin: 10px 0 20px;
}

/* Call-To-Action Button */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #0a84ff; /* Prime Video blue */
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.25s ease;
}

.btn:hover {
  background: #006fde;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0 25px;
  color: #7a7a7a;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

footer a {
  color: #0a84ff;
  text-decoration: none;
}

