        body {
            font-family: 'Roboto', sans-serif;
            background-color: #E6ECF5;
        }

        /* Hero Section */
.hero-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(43, 76, 126, 0.9), rgba(43, 76, 126, 0.7)), url('https://www.mnthen.com/images/bg/trivia_bg.jpg') center/cover no-repeat;
  padding: 2rem;
  color: white;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.025);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 3rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.025);
  line-height: 1.6;
}

/* Games Section */
.games-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2D4059;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
}

/* Info Card */
.info-card {
  background-color: #fff;
  padding: 2rem;
  border: 2px solid #ddd; /* More prominent border */
  border-radius: 12px; /* Rounded corners */
}

.info-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2D4059;
  margin-bottom: 1.5rem;
}

.info-card-list {
  list-style: none;
  padding: 0;
}

.info-card-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-primary {
  font-size: 1.5rem;
  color: #1e6bb8;
  margin-right: 1rem;
}

.info-card-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.info-card-footer {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Quick Links Card */
.quick-links-card {
  background-color: #fff;
  padding: 2rem;
  border: 2px solid #ddd; /* More prominent border */
  border-radius: 12px; /* Rounded corners */
}

.quick-links-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2D4059;
  margin-bottom: 1.5rem;
}

.quick-links-list {
  list-style: none;
  padding: 0;
}

.quick-links-item {
  margin-bottom: 1rem;
}

.quick-links-link {
  display: flex;
  align-items: center;
  text-decoration: none; /* No decoration */
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.icon-secondary {
  font-size: 1.5rem;
  color: #1e6bb8;
  margin-right: 1rem;
}

/* Trivia Categories Section */
.category-card {
  background-color: #fff;
  border: 2px solid #ddd; /* Prominent border */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden;
  height: 100%; /* Ensure cards take full height */
  display: flex;
  flex-direction: column;
}

/* Trivia Categories Section */
.category-card {
  background-color: #fff;
  border: 2px solid #ddd; /* Prominent border */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden;
  height: 100%; /* Ensure cards take full height */
  display: flex;
  flex-direction: column;
}

.category-card-img {
  width: 100%;
  height: 200px; /* Fixed height for images */
  object-fit: cover; /* Ensure images cover the area */
}

.category-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D4059;
  margin-bottom: 1rem;
}

.category-card-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  flex: 1; /* Push the button to the bottom */
}

.category-card .btn {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background-color: #1e6bb8;
  color: white;
  border: none;
  width: 75%; /* Three-fourths the width of the card */
  margin: 0 auto; /* Center the button horizontally */
  text-align: center;
}

/* Card Styling */
.card {
  border: 2px solid #ddd; /* Prominent border */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden;
  height: 100%; /* Ensure cards take full height */
}

.card-img-top {
  width: 100%;
  height: 250px; /* Fixed height for images */
  object-fit: cover; /* Ensure images cover the area */
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space out content */
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D4059;
  margin-bottom: 1rem;
}

.card-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.card .btn {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background-color: #1e6bb8;
  color: white;
  border: none;
  width: 100%; /* Full width of the card body */
  text-align: center;
}
