.page-arcade-fishing-games {
  color: #333333; /* Dark text for light body background */
}

.page-arcade-fishing-games__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-arcade-fishing-games__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-arcade-fishing-games__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-arcade-fishing-games__hero-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-arcade-fishing-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-arcade-fishing-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-arcade-fishing-games__button--register {
  background-color: #FCBC45; /* Login color as primary action */
  color: #000000;
  border-color: #FCBC45;
}

.page-arcade-fishing-games__button--register:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-arcade-fishing-games__button--login {
  background-color: #000000; /* Main color as secondary action */
  color: #FFFFFF;
  border-color: #000000;
}

.page-arcade-fishing-games__button--login:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-arcade-fishing-games__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-arcade-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-arcade-fishing-games__featured-games,
.page-arcade-fishing-games__strategy-guide,
.page-arcade-fishing-games__why-championzone,
.page-arcade-fishing-games__faq,
.page-arcade-fishing-games__join-us {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-arcade-fishing-games__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-arcade-fishing-games__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

.page-arcade-fishing-games__game-card,
.page-arcade-fishing-games__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-arcade-fishing-games__game-card:hover,
.page-arcade-fishing-games__feature-item:hover {
  transform: translateY(-10px);
}

.page-arcade-fishing-games__game-card img,
.page-arcade-fishing-games__feature-item img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-arcade-fishing-games__card-title,
.page-arcade-fishing-games__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-arcade-fishing-games__card-title a {
  color: #000000;
  text-decoration: none;
}

.page-arcade-fishing-games__card-title a:hover {
  color: #FCBC45;
}

.page-arcade-fishing-games__card-description,
.page-arcade-fishing-games__feature-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-arcade-fishing-games__card-button {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-arcade-fishing-games__card-button:hover {
  background-color: #e0a53b;
}

.page-arcade-fishing-games__guide-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.page-arcade-fishing-games__guide-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-arcade-fishing-games__item-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-arcade-fishing-games__item-text {
  font-size: 1.05em;
  color: #444444;
  line-height: 1.7;
}

.page-arcade-fishing-games__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #000000;
  border-radius: 10px;
  color: #FFFFFF;
}

.page-arcade-fishing-games__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-arcade-fishing-games__button--play,
.page-arcade-fishing-games__button--join {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border-color: #FCBC45;
}

.page-arcade-fishing-games__button--play:hover,
.page-arcade-fishing-games__button--join:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-arcade-fishing-games__faq-item {
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-arcade-fishing-games__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-arcade-fishing-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-arcade-fishing-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-arcade-fishing-games__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-left: 10px;
  padding-right: 10px;
}

.page-arcade-fishing-games__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-arcade-fishing-games__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-arcade-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

.page-arcade-fishing-games__join-us {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-arcade-fishing-games__join-us .page-arcade-fishing-games__section-title,
.page-arcade-fishing-games__join-us .page-arcade-fishing-games__section-description {
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade-fishing-games__hero-title {
    font-size: 3em;
  }
  .page-arcade-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-arcade-fishing-games__hero-section {
    padding: 40px 15px;
  }
  .page-arcade-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-arcade-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-arcade-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade-fishing-games__button {
    width: 100%;
    max-width: 300px;
  }
  .page-arcade-fishing-games__featured-games,
  .page-arcade-fishing-games__strategy-guide,
  .page-arcade-fishing-games__why-championzone,
  .page-arcade-fishing-games__faq,
  .page-arcade-fishing-games__join-us {
    margin: 40px auto;
    padding: 30px 15px;
  }
  .page-arcade-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-arcade-fishing-games__section-description {
    font-size: 0.95em;
  }
  .page-arcade-fishing-games__game-grid,
  .page-arcade-fishing-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade-fishing-games__game-card img,
  .page-arcade-fishing-games__feature-item img {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
  }
  .page-arcade-fishing-games__guide-item {
    padding: 20px;
  }
  .page-arcade-fishing-games__item-title {
    font-size: 1.5em;
  }
  .page-arcade-fishing-games__cta-text {
    font-size: 1.2em;
  }
  .page-arcade-fishing-games__button--play,
  .page-arcade-fishing-games__button--join {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-arcade-fishing-games__faq-question {
    font-size: 1.1em;
  }
  .page-arcade-fishing-games__faq-answer {
    font-size: 0.95em;
  }

  /* Mobile content area images must be constrained */
  .page-arcade-fishing-games img {
    max-width: 100%;
    height: auto;
  }
  .page-arcade-fishing-games {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-arcade-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-arcade-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-arcade-fishing-games__item-title {
    font-size: 1.3em;
  }
}