.page-fishing-games {
  background-color: #0D0E12; /* Custom background color */
  color: #FFF3E6; /* Custom main text color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-fishing-games__section {
  padding: 60px 20px;
  position: relative;
}

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

.page-fishing-games__container--narrow {
  max-width: 900px;
}

.page-fishing-games__heading {
  font-size: 36px;
  font-weight: bold;
  color: #FF8C1A; /* Primary color for headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-fishing-games__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF8C1A, #FFA53A);
  border-radius: 2px;
}

.page-fishing-games__text {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__text--center {
  text-align: center;
}

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

.page-fishing-games__link {
  color: #FFB04D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__link:hover {
  color: #FFA53A;
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-fishing-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-fishing-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF3E6;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.page-fishing-games__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Custom button gradient */
  color: #ffffff; /* Button text color */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__cta-button:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
}

/* Grid for game types */
.page-fishing-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__card {
  background-color: #17191F; /* Custom card background */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Custom border color */
  color: #FFF3E6;
}

.page-fishing-games__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 250px; /* Fixed height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04D; /* Glow color for card titles */
  margin-bottom: 15px;
}

.page-fishing-games__card-text {
  font-size: 16px;
  color: #FFF3E6;
}

/* Lists */
.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-fishing-games__list-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  font-size: 17px;
  color: #FFF3E6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__list-item::before {
  content: '👉'; /* Custom bullet point */
  margin-right: 15px;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.page-fishing-games__list--promotions .page-fishing-games__list-item::before {
  content: '🎁';
}

/* Button Group */
.page-fishing-games__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-fishing-games__button-group--center {
  justify-content: center;
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
  overflow: hidden;
  background: #17191F; /* Card background color */
  color: #FFF3E6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #FFB04D; /* Glow color for question */
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: rgba(255, 176, 77, 0.1); /* Light hover effect */
  color: #FFA53A;
}

.page-fishing-games__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FF8C1A;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: #0D0E12; /* Background color for answer */
  color: #FFF3E6;
  font-size: 16px;
  line-height: 1.7;
  border-top: 1px solid rgba(168, 79, 12, 0.5);
  border-radius: 0 0 10px 10px;
}

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

/* Conclusion Section */
.page-fishing-games__section--conclusion {
  padding-bottom: 80px;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 10px;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
  }

  .page-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-fishing-games__heading::after {
    width: 60px;
  }

  .page-fishing-games__text {
    font-size: 16px;
  }

  .page-fishing-games__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__card-image {
    height: 200px;
  }

  .page-fishing-games__card-title {
    font-size: 20px;
  }

  .page-fishing-games__list-item {
    font-size: 16px;
    padding: 12px 15px;
  }

  .page-fishing-games__list-item::before {
    font-size: 18px;
    margin-right: 10px;
  }

  .page-fishing-games__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-fishing-games__button-group .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }

  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* Image and container overrides */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__hero-image,
  .page-fishing-games__button-group,
  .page-fishing-games__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}