.page-index-latest-game-releases {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-index-latest-game-releases__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-latest-game-releases__section-title {
  color: #0056B3; /* Main brand color for titles */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: bold;
}

.page-index-latest-game-releases__section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

.page-index-latest-game-releases__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
  margin: 10px;
}

.page-index-latest-game-releases__button--primary {
  background-color: #0056B3; /* Main brand color */
  color: #ffffff;
}

.page-index-latest-game-releases__button--primary:hover {
  background-color: #004085;
  transform: translateY(-2px);
}

.page-index-latest-game-releases__button--secondary {
  background-color: #FFD700; /* Accent color */
  color: #333333;
}

.page-index-latest-game-releases__button--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-latest-game-releases__button--play {
  background-color: #FFD700;
  color: #333333;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-latest-game-releases__button--play:hover {
  background-color: #e6c200;
}

.page-index-latest-game-releases__button--register,
.page-index-latest-game-releases__button--claim,
.page-index-latest-game-releases__button--explore,
.page-index-latest-game-releases__button--learn-more,
.page-index-latest-game-releases__button--info,
.page-index-latest-game-releases__button--view-all,
.page-index-latest-game-releases__button--view-all-faq {
  background-color: #0056B3;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-latest-game-releases__button--register:hover,
.page-index-latest-game-releases__button--claim:hover,
.page-index-latest-game-releases__button--explore:hover,
.page-index-latest-game-releases__button--learn-more:hover,
.page-index-latest-game-releases__button--info:hover,
.page-index-latest-game-releases__button--view-all:hover,
.page-index-latest-game-releases__button--view-all-faq:hover {
  background-color: #004085;
}

/* Hero Section */
.page-index-latest-game-releases__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0; /* Remove default padding as image will fill */
}

.page-index-latest-game-releases__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-latest-game-releases__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-index-latest-game-releases__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-index-latest-game-releases__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-index-latest-game-releases__hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Why New Section */
.page-index-latest-game-releases__why-new-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-index-latest-game-releases__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-index-latest-game-releases__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-latest-game-releases__feature-title {
  color: #0056B3;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-latest-game-releases__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Featured Games Section */
.page-index-latest-game-releases__featured-games-section {
  padding: 60px 0;
}

.page-index-latest-game-releases__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-latest-game-releases__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-index-latest-game-releases__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-index-latest-game-releases__game-title {
  color: #0056B3;
  font-size: 1.6em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-index-latest-game-releases__game-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
}

/* How to Start Section */
.page-index-latest-game-releases__how-to-start-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-index-latest-game-releases__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-index-latest-game-releases__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-latest-game-releases__step-title {
  color: #0056B3;
  font-size: 1.7em;
  margin-bottom: 15px;
}

.page-index-latest-game-releases__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Bonus Section */
.page-index-latest-game-releases__bonus-section {
  padding: 60px 0;
}

.page-index-latest-game-releases__bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-latest-game-releases__bonus-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-latest-game-releases__bonus-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-index-latest-game-releases__bonus-title {
  color: #0056B3;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-index-latest-game-releases__bonus-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-index-latest-game-releases__bonus-terms {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: #777777;
}

/* Responsible Gaming Section */
.page-index-latest-game-releases__responsible-gaming-section {
  background-color: #f0f8ff; /* Light blue background for contrast */
  padding: 60px 0;
  text-align: center;
}

/* FAQ Section */
.page-index-latest-game-releases__faq-section {
  padding: 60px 0;
}

.page-index-latest-game-releases__faq-items {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-game-releases__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.page-index-latest-game-releases__faq-question {
  color: #0056B3;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-latest-game-releases__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-latest-game-releases__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-latest-game-releases__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-index-latest-game-releases__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
}

/* CTA Section */
.page-index-latest-game-releases__cta-section {
  background-color: #0056B3; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-index-latest-game-releases__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-latest-game-releases__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-latest-game-releases__cta-section .page-index-latest-game-releases__button--primary {
  background-color: #FFD700;
  color: #333333;
  font-size: 1.2em;
  padding: 15px 35px;
}

.page-index-latest-game-releases__cta-section .page-index-latest-game-releases__button--primary:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-latest-game-releases__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-game-releases__hero-description {
    font-size: 1.1em;
  }
  .page-index-latest-game-releases__section-title,
  .page-index-latest-game-releases__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-game-releases__hero-content {
    padding: 15px;
  }
  .page-index-latest-game-releases__hero-title {
    font-size: 2em;
  }
  .page-index-latest-game-releases__hero-description {
    font-size: 1em;
  }
  .page-index-latest-game-releases__hero-actions {
    flex-direction: column;
  }
  .page-index-latest-game-releases__button {
    width: 80%;
    margin: 5px auto;
  }
  .page-index-latest-game-releases__section-title,
  .page-index-latest-game-releases__cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-game-releases__section-intro,
  .page-index-latest-game-releases__cta-description {
    font-size: 0.95em;
  }
  .page-index-latest-game-releases__feature-list,
  .page-index-latest-game-releases__game-grid,
  .page-index-latest-game-releases__steps-list,
  .page-index-latest-game-releases__bonus-cards {
    grid-template-columns: 1fr;
  }

  /* Mobile content image overflow prevention */
  .page-index-latest-game-releases img {
    max-width: 100%;
    height: auto;
  }
  .page-index-latest-game-releases__game-image,
  .page-index-latest-game-releases__bonus-image {
    height: auto; /* Allow auto height on mobile for responsiveness */
    min-height: 200px; /* Ensure minimum size */
  }
}

@media (max-width: 480px) {
  .page-index-latest-game-releases__hero-title {
    font-size: 1.6em;
  }
  .page-index-latest-game-releases__hero-description {
    font-size: 0.9em;
  }
  .page-index-latest-game-releases__section-title,
  .page-index-latest-game-releases__cta-title {
    font-size: 1.5em;
  }
  .page-index-latest-game-releases__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}