/* style/gaming-guides.css */
.page-gaming-guides {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #404040; /* Dark text on light background */
  background-color: #F3F3F3; /* Page background color */
}

.page-gaming-guides__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  background-color: #FFFFFF;
  color: #404040;
  position: relative;
  overflow: hidden;
}

.page-gaming-guides__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-gaming-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gaming-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-gaming-guides__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #025BE8;
  line-height: 1.2;
}

.page-gaming-guides__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gaming-guides__hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gaming-guides__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-gaming-guides__button--register {
  background-color: #1266EC;
  color: #FFFFFF;
  border: 2px solid #1266EC;
}

.page-gaming-guides__button--register:hover {
  background-color: #0d4ba6;
  border-color: #0d4ba6;
}

.page-gaming-guides__button--explore, .page-gaming-guides__button--play, .page-gaming-guides__button--claim-bonus {
  background-color: #025BE8;
  color: #FFFFFF;
  border: 2px solid #025BE8;
}

.page-gaming-guides__button--explore:hover, .page-gaming-guides__button--play:hover, .page-gaming-guides__button--claim-bonus:hover {
  background-color: #0140a2;
  border-color: #0140a2;
}

.page-gaming-guides__button--responsible {
  background-color: #FFFFFF;
  color: #025BE8;
  border: 2px solid #025BE8;
}

.page-gaming-guides__button--responsible:hover {
  background-color: #E5EEFD;
}

.page-gaming-guides__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gaming-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gaming-guides__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #025BE8;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-gaming-guides__sub-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #404040;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gaming-guides__paragraph {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.7;
}

.page-gaming-guides__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-gaming-guides__list-item {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.page-gaming-guides__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.page-gaming-guides__list--columns .page-gaming-guides__list-item {
  background-color: #E5EEFD;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
  color: #025BE8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-gaming-guides__game-section {
  background-color: #F8F8F8;
}

.page-gaming-guides__game-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-gaming-guides__game-section--reverse .page-gaming-guides__game-content {
  flex-direction: column-reverse;
}

.page-gaming-guides__game-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px; /* Enforce minimum size for all images */
}

.page-gaming-guides__text-content {
  flex: 1;
}

.page-gaming-guides__button-group {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.page-gaming-guides__why-us-section .page-gaming-guides__section-title {
  color: #404040;
}

.page-gaming-guides__cta-section {
  background-color: #025BE8;
  color: #FFFFFF;
  text-align: center;
}

.page-gaming-guides__cta-section .page-gaming-guides__section-title {
  color: #FFFFFF;
}

.page-gaming-guides__cta-section .page-gaming-guides__paragraph {
  color: #FFFFFF;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-gaming-guides__hero-section {
    padding: 80px 40px;
    padding-top: 15px;
  }

  .page-gaming-guides__game-content {
    flex-direction: row;
    text-align: left;
  }

  .page-gaming-guides__game-section--reverse .page-gaming-guides__game-content {
    flex-direction: row-reverse;
  }

  .page-gaming-guides__game-image {
    flex-basis: 45%;
  }

  .page-gaming-guides__text-content {
    flex-basis: 50%;
  }

  .page-gaming-guides__button-group {
    justify-content: flex-start;
  }

  .page-gaming-guides__list--columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-gaming-guides__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-gaming-guides__hero-image, .page-gaming-guides__game-image {
    max-width: 100%;
    height: auto;
  }

  .page-gaming-guides__button {
    width: 100%;
    min-width: unset;
  }

  .page-gaming-guides__hero-buttons, .page-gaming-guides__button-group {
    flex-direction: column;
  }

  .page-gaming-guides__list {
    margin-left: 20px;
  }

  .page-gaming-guides__list--columns .page-gaming-guides__list-item {
    padding: 12px;
  }
}