.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #0D0E12;
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Fixed header spacing */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-fishing-games__hero-content {
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-fishing-games__main-title {
  font-size: 3.2em;
  font-weight: 700;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-fishing-games__description {
  font-size: 1.1em;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #FFA53A; /* Auxiliary color */
  border: 2px solid #FFA53A; /* Auxiliary color */
}

.page-fishing-games__btn-secondary:hover {
  background-color: rgba(255, 165, 58, 0.1);
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFF3E6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  color: #FFF3E6; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__why-choose-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__how-to-start-section,
.page-fishing-games__faq-section,
.page-fishing-games__call-to-action-final {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__feature-text {
  font-size: 1em;
  color: #FFF3E6; /* Text Main */
}

.page-fishing-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__game-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-title {
  font-size: 1.6em;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__btn-play {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6; /* Text Main */
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-play:hover {
  opacity: 0.9;
}

.page-fishing-games__strategy-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-fishing-games__strategy-text {
  flex: 2;
}

.page-fishing-games__strategy-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-fishing-games__strategy-subtitle {
  font-size: 1.8em;
  color: #FFA53A; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__strategy-text p {
  margin-bottom: 15px;
  color: #FFF3E6; /* Text Main */
}

.page-fishing-games__btn-more-tips {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border-radius: 30px;
  background-color: #FF8C1A; /* Primary color */
  color: #FFF3E6; /* Text Main */
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-more-tips:hover {
  background-color: #D96800; /* Deep Orange */
}

.page-fishing-games__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games__promo-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-fishing-games__promo-title {
  font-size: 1.6em;
  color: #FFA53A; /* Auxiliary color */
  margin: 20px 20px 10px 20px;
  font-weight: 600;
}

.page-fishing-games__promo-text {
  font-size: 0.95em;
  color: #FFF3E6; /* Text Main */
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-fishing-games__btn-view-promo {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6; /* Text Main */
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  margin: 0 20px 20px 20px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-view-promo:hover {
  opacity: 0.9;
}

.page-fishing-games__all-promos-cta {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-fishing-games__step-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
}

.page-fishing-games__step-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games__step-title {
  font-size: 1.5em;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__step-text {
  font-size: 1em;
  color: #FFF3E6; /* Text Main */
}

.page-fishing-games__start-cta {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFF3E6; /* Text Main */
  cursor: pointer;
  background-color: #17191F; /* Card BG */
  list-style: none;
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A; /* Auxiliary color */
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #FFF3E6; /* Text Main */
  line-height: 1.6;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

.page-fishing-games__call-to-action-final .page-fishing-games__container {
  text-align: center;
  padding: 60px;
  border-radius: 12px;
  background: linear-gradient(180deg, #FF8C1A 0%, #D96800 100%); /* Primary color gradient */
  box-shadow: 0 8px 25px rgba(255, 140, 26, 0.5);
  border: 1px solid #FFB04D; /* Glow */
}

.page-fishing-games__call-to-action-final .page-fishing-games__section-title {
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
  padding-top: 0;
}

.page-fishing-games__call-to-action-final .page-fishing-games__description {
  color: #FFF3E6; /* Text Main */
  margin-bottom: 40px;
}

.page-fishing-games__call-to-action-final .page-fishing-games__btn-primary {
  background: #FFF3E6; /* Text Main */
  color: #D96800; /* Deep Orange */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__call-to-action-final .page-fishing-games__btn-primary:hover {
  background: #f0f0f0;
  color: #FF8C1A; /* Primary color */
}

/* General image responsiveness */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 2.8em;
  }

  .page-fishing-games__section-title {
    font-size: 2em;
  }

  .page-fishing-games__strategy-content {
    flex-direction: column;
  }

  .page-fishing-games__strategy-image-wrapper {
    min-width: unset;
    width: 100%;
    margin-top: 30px;
  }
}