/* About section */
#about {
  text-align: center;
  padding: 80px 20px;
}

/* Text styling */
.about-text {
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #ddd;
}

/* Button styling */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #ff0033;
  color: #ff0033;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

/* Hover effect */
.btn:hover {
  background-color: #ff0033;
  color: #000;
  box-shadow: 0 0 12px #ff0033;
}

/* 👉 ADD THIS */
.btn.red {
  background-color: #ff0033;
  color: #000;
}


.game-image {
  display: block;
  margin: 40px auto 20px auto; /* top / sides / bottom */
  max-width: 1000px; /* 👈 increased size */
  width: 100%;
  border-radius: 8px;
}
