/* Updated CSS to match exact design */

body {
  font-family: 'Pixelify Sans', sans-serif;
  background-color: #d0eaff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.card {
  width: 100%;
  max-width: 440px; /* max width on larger screens */
  background-color: #add8ff;
  border: 2px solid #1e3a8a;
  border-radius: 8px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px; /* margin on small screens */
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ✅ centers all children horizontally */
  justify-content: center;
  padding: 16px 0;
  background-color: #add8ff;
  border-bottom: 2px solid #1e3a8a;
  width: 100%;
}

.cat-icon {
  display: block;         /* ✅ treats image as a block so margin works */
  margin: 0 auto;         /* ✅ horizontally center */
  width: 80px;
  height: 80px;
  margin-bottom: 0px;
}

.card-header h1 {
  font-size: 25px;
  color: #1e3a8a;
  margin: 0;
  text-align: center;
}



.card-body {
  background-color: #fffce8;
  width: 90%;
  margin: 24px auto;
  border: 2px solid #1e3a8a;
  border-radius: 20px;
  padding: 24px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-body img {
  height: 200px;
  margin-top: 10px;
  margin-bottom: 16px;
}

.credit {
  text-align: center;
  margin-bottom: 24px;
  line-height: 0.8;
}

.credit-by {
  font-size: 16px;
  color: #1e3a8a;
  display: block;
  margin:0
}

.credit-brand {
  font-size: 18px;
  color: #1e3a8a;
  font-family: 'Pixelify Sans', sans-serif;
}

.start-button {
  background-color: #bce3ff;
  font-family: 'Pixelify Sans';
  color: #1e3a8a;
  padding: 16px 48px;
  font-size: 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 3px 3px 0 #000;
  text-transform: uppercase;
  text-decoration: none;
}

.start-button:hover {
  background-color: #a5d8ff;
  transform: scale(1.05);
}

.options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
}

.option-button {
  width: 250px; /* ⬅️ Reduced width */
  margin: 0 auto; /* ⬅️ Center the buttons */
  background-color: #add8ff;
  font-family: 'Pixelify Sans';
  color: #1e3a8a;
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #1e3a8a;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
}

.option-button:hover {
  background-color: #93cfff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.option-button:active {
  transform: translateY(0);
  box-shadow: none;
}


.back-button {
  margin-top: 30px;
  background-color: #bce3ff;
  color: #1e3a8a;
  font-family: 'Pixelify Sans';
  font-size: 1rem;
  padding: 10px 20px;
  border: 2px solid #1e3a8a;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-button:hover {
  background-color: #bce3ff;
  transform: translateY(-1px);
}
.card-body h2 {
  text-align: center;
  font-size: 20px;
  color: #1e3a8a; /* 🔵 Change this to whatever color you want */
  margin-bottom: 24px;
  font-family: 'Pixelify Sans', sans-serif;
}

