.page-fishing-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-games__section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 1400px;
}

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

/* HERO Section Styles */
.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 as body handles header offset */
  background: linear-gradient(180deg, #111111 0%, #0A0A0A 100%);
  overflow: hidden;
}

.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-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: #FFD36B;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-fishing-games__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-fishing-games__cta-button--secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-fishing-games__cta-button--secondary:hover {
  background: #FFD36B;
  color: #111111;
}

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

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-fishing-games__section--intro p,
.page-fishing-games__section--guide li p,
.page-fishing-games__section--strategy li,
.page-fishing-games__section--conclusion p {
  color: #FFF6D6;
  font-size: 1.1rem;
  margin-bottom: 1em;
}

.page-fishing-games__section--intro p:last-child,
.page-fishing-games__section--conclusion p:last-child {
  margin-bottom: 0;
}

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

.page-fishing-games__card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-fishing-games__game-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #3A2A12;
}

.page-fishing-games__game-name {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
  margin-top: 40px;
}

.page-fishing-games__guide-list li {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  counter-increment: guide-step;
  padding-left: 70px;
}

.page-fishing-games__guide-list li::before {
  content: counter(guide-step);
  position: absolute;
  left: 20px;
  top: 20px;
  background: #FFD36B;
  color: #111111;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.page-fishing-games__guide-step-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__strategy-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 30px;
}

.page-fishing-games__strategy-list li {
  color: #FFF6D6;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-fishing-games__strategy-list li strong {
  color: #FFD36B;
}

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

.page-fishing-games__promo-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-fishing-games__promo-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__section--security-support .page-fishing-games__content-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.page-fishing-games__section--security-support .page-fishing-games__text-content {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__section--security-support .page-fishing-games__image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-fishing-games__section--security-support .page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #3A2A12;
}

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

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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: #FFF6D6;
}

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: #1A1A1A;
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A;
  border-radius: 0 0 12px 12px;
  color: #FFF6D6;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-fishing-games__section {
    padding: 40px 15px;
  }
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  .page-fishing-games__description {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-fishing-games__card-image, .page-fishing-games__game-image, .page-fishing-games__promo-image {
    height: 160px;
  }
  .page-fishing-games__card-title {
    font-size: 1.3rem;
  }
  .page-fishing-games__game-name {
    font-size: 1.2rem;
  }
  .page-fishing-games__guide-list li {
    padding-left: 60px;
  }
  .page-fishing-games__guide-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    left: 15px;
    top: 15px;
  }
  .page-fishing-games__guide-step-title {
    font-size: 1.25rem;
  }
  .page-fishing-games__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 30px;
  }
  .page-fishing-games__hero-image-wrapper {
    border-radius: 8px;
  }
  .page-fishing-games__hero-image {
    border-radius: 8px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-fishing-games__cta-button, .page-fishing-games__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }
  .page-fishing-games__grid, .page-fishing-games__game-list, .page-fishing-games__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__card, .page-fishing-games__game-item, .page-fishing-games__promo-card {
    padding: 20px;
    border-radius: 8px;
  }
  .page-fishing-games__card-image, .page-fishing-games__game-image, .page-fishing-games__promo-image {
    height: 150px;
    border-radius: 6px;
  }
  .page-fishing-games__section--security-support .page-fishing-games__content-flex {
    flex-direction: column;
    gap: 20px;
  }
  .page-fishing-games__section--security-support .page-fishing-games__text-content, .page-fishing-games__section--security-support .page-fishing-games__image-content {
    min-width: unset;
    width: 100%;
  }
  .page-fishing-games__section--security-support .page-fishing-games__image {
    border-radius: 8px;
  }
  details.page-fishing-games__faq-item {
    border-radius: 8px;
  }
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-qtext {
    font-size: 1rem;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 20px;
  }
  /* Images responsive styles */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__hero-container,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__hero-content,
  .page-fishing-games__promo-card,
  .page-fishing-games__game-item,
  .page-fishing-games__guide-list li,
  .page-fishing-games__section--security-support .page-fishing-games__text-content,
  .page-fishing-games__section--security-support .page-fishing-games__image-content,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__section--security-support .page-fishing-games__image {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-fishing-games__description {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
  .page-fishing-games__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-fishing-games__card-title {
    font-size: 1.2rem;
  }
  .page-fishing-games__game-name {
    font-size: 1.1rem;
  }
  .page-fishing-games__guide-step-title {
    font-size: 1.1rem;
  }
  .page-fishing-games__guide-list li {
    padding-left: 50px;
  }
  .page-fishing-games__guide-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    left: 10px;
    top: 10px;
  }
  .page-fishing-games__faq-qtext {
    font-size: 0.95rem;
  }
  .page-fishing-games__faq-toggle {
    font-size: 20px;
  }
}