.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* 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 {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed for aspect ratio */
  overflow: hidden;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__main-title {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

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

.page-fishing-games__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
  transform: translateY(-3px);
  background: #f0f0f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__introduction-section,
.page-fishing-games__kyc-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
}

.page-fishing-games__dark-bg {
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__sub-title {
  color: #ffffff;
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__text-block a {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-fishing-games__text-block a:hover {
  color: #6FA3FF;
}

.page-fishing-games__highlight {
  font-weight: bold;
  color: #2F6BFF;
}

.page-fishing-games__dark-bg .page-fishing-games__highlight {
  color: #A5C4FF; /* Glow */
}

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

.page-fishing-games__feature-card,
.page-fishing-games__promo-card {
  background-color: #ffffff; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #1F2D3D;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-image,
.page-fishing-games__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__feature-title,
.page-fishing-games__promo-title {
  font-size: 1.5em;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: #2F6BFF;
}

.page-fishing-games__feature-description,
.page-fishing-games__promo-description {
  font-size: 1em;
  line-height: 1.7;
  padding: 0 20px 20px;
  color: #1F2D3D;
}

.page-fishing-games__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-fishing-games__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-fishing-games__list-item {
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-fishing-games__list-item strong {
  color: #000000;
}

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

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

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

.page-fishing-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: #2F6BFF;
  background-color: #F4F7FB;
  border-bottom: 1px solid #D6E2FF;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #1F2D3D;
}

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

.page-fishing-games__call-to-action {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__cta-content {
  max-width: 900px;
}

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

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

  .page-fishing-games__hero-description {
    font-size: 1.2em;
  }

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

  .page-fishing-games__sub-title {
    font-size: 1.5em;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__promo-title {
    font-size: 1.3em;
  }

  .page-fishing-games__hero-image-wrapper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

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

  .page-fishing-games__hero-image-wrapper {
    height: 300px;
  }

  .page-fishing-games__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-fishing-games__main-title {
    font-size: 2em !important;
    margin-bottom: 15px;
  }

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

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

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

  .page-fishing-games__container,
  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__kyc-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__call-to-action {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-fishing-games__sub-title {
    font-size: 1.3em !important;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-fishing-games__text-block,
  .page-fishing-games__list-item,
  .page-fishing-games__feature-description,
  .page-fishing-games__promo-description,
  .page-fishing-games__faq-answer p {
    font-size: 1em !important;
  }

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

  .page-fishing-games__feature-image,
  .page-fishing-games__promo-image {
    height: 200px !important;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__promo-title {
    font-size: 1.2em !important;
    margin: 15px 15px 8px;
  }

  .page-fishing-games__feature-description,
  .page-fishing-games__promo-description {
    padding: 0 15px 15px;
  }

  .page-fishing-games__faq-item summary {
    padding: 15px !important;
    font-size: 1.1em !important;
  }

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

  /* Universal image responsiveness for mobile */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__hero-image {
    object-position: center top;
  }
}