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

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

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column; /* Enforce image first, then text */
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small padding, assuming body handles header offset */
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient as hero background */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width for better layout */
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop, contain for mobile */
}

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

.page-fishing-games__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-fishing-games__text-block {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #333333; /* Text Main */
}

.page-fishing-games__introduction-section, 
.page-fishing-games__why-choose-us-section, 
.page-fishing-games__popular-games-section, 
.page-fishing-games__how-to-play-section, 
.page-fishing-games__tips-strategies-section, 
.page-fishing-games__promotions-section, 
.page-fishing-games__security-section, 
.page-fishing-games__faq-section, 
.page-fishing-games__cta-bottom-section {
  padding: 60px 0;
}

.page-fishing-games__why-choose-us-section {
  background: #ffffff;
}

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

.page-fishing-games__feature-card {
  background: #FFFFFF; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0; /* Border */
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-fishing-games__game-tile {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1/1; /* Ensure square aspect ratio */
}

.page-fishing-games__game-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-fishing-games__game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  padding: 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.page-fishing-games__game-tile:hover .page-fishing-games__game-overlay {
  transform: translateY(0);
}

.page-fishing-games__game-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-fishing-games__btn-play {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__step-card {
  background: #FFFFFF; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #E0E0E0; /* Border */
}

.page-fishing-games__step-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #E53935; /* Main color */
  margin-bottom: 10px;
}

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

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-fishing-games__list-item {
  background: #FFFFFF; /* Card BG */
  border-left: 5px solid #E53935; /* Main color */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__list-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #E53935; /* Main color */
  margin-bottom: 10px;
}

.page-fishing-games__list-description {
  font-size: 1em;
  color: #333333; /* Text Main */
}

.page-fishing-games__promotions-section {
  background: #F5F7FA;
}

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

.page-fishing-games__promo-card {
  background: #FFFFFF; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0; /* Border */
  display: flex;
  flex-direction: column;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #E53935; /* Main color */
  margin: 20px 20px 10px;
}

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

.page-fishing-games__btn-tertiary {
  display: inline-block;
  padding: 10px 20px;
  background: #E53935;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s ease;
  margin: 0 20px 20px;
  align-self: flex-start;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-tertiary:hover {
  background: #FF5A4F;
}

.page-fishing-games__security-section {
  background: #ffffff;
}

.page-fishing-games__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-fishing-games__faq-section {
  background: #F5F7FA;
}

.page-fishing-games__faq-list {
  margin-top: 30px;
}

.page-fishing-games__faq-item {
  background: #FFFFFF; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #E53935; /* Main color */
  cursor: pointer;
  list-style: none;
}

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

.page-fishing-games__faq-item summary::marker {
  display: none;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FF5A4F; /* Accent color */
  margin-left: 15px;
}

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

.page-fishing-games__cta-bottom-section {
  text-align: center;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  color: #ffffff;
  padding: 80px 20px;
}

.page-fishing-games__cta-bottom-section .page-fishing-games__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-fishing-games__cta-bottom-section .page-fishing-games__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  background: #ffffff;
  color: #E53935; /* Main color */
  text-decoration: none;
  border: 2px solid #E53935; /* Main color */\  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .page-fishing-games__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* Small padding, assuming body handles header offset */
    padding-bottom: 20px;
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Ensure image is fully visible on mobile */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.8em, 8vw, 2.5em) !important;
    margin-bottom: 10px;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play,
  .page-fishing-games__btn-tertiary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-fishing-games__text-block {
    font-size: 0.95em;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__why-choose-us-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-strategies-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__security-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-bottom-section {
    padding: 40px 0;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__step-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__game-tile {
    padding: 20px;
    border-radius: 10px;
  }

  .page-fishing-games__feature-icon,
  .page-fishing-games__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__step-title,
  .page-fishing-games__list-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__game-title {
    font-size: 1.2em;
  }

  .page-fishing-games__promo-image {
    height: 150px;
  }

  .page-fishing-games__faq-question {
    padding: 15px;
    font-size: 1.1em;
  }

  .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__cta-bottom-section {
    padding: 60px 15px;
  }
}