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

.page-arcade-fishing-games__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px;
}

.page-arcade-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

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

.page-arcade-fishing-games__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-arcade-fishing-games__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.page-arcade-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-arcade-fishing-games__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #FFFFFF;
}

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

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

.page-arcade-fishing-games__btn--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main color */
}

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

.page-arcade-fishing-games__btn--play {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Secondary color */
  border: 2px solid #FCBC45;
}

.page-arcade-fishing-games__btn--play:hover {
  background-color: #333333;
  border-color: #e0a53b;
}

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

.page-arcade-fishing-games__section-title {
  font-size: 2.8em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-arcade-fishing-games__about-section,
.page-arcade-fishing-games__games-showcase,
.page-arcade-fishing-games__strategy-section,
.page-arcade-fishing-games__mobile-section,
.page-arcade-fishing-games__promotions-section,
.page-arcade-fishing-games__cta-section,
.page-arcade-fishing-games__faq-section,
.page-arcade-fishing-games__responsible-gaming {
  padding: 80px 0;
  background-color: #FFFFFF; /* Light background */
}

.page-arcade-fishing-games__about-section .page-arcade-fishing-games__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333333;
}

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

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

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

.page-arcade-fishing-games__feature-title {
  font-size: 1.6em;
  color: #000000; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-arcade-fishing-games__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-arcade-fishing-games__games-showcase .page-arcade-fishing-games__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333333;
}

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

.page-arcade-fishing-games__game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

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

.page-arcade-fishing-games__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-arcade-fishing-games__game-title {
  font-size: 1.5em;
  color: #000000; /* Main color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-arcade-fishing-games__game-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-arcade-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-arcade-fishing-games__btn--small:hover {
  background-color: #e0a53b;
}

.page-arcade-fishing-games__strategy-section .page-arcade-fishing-games__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333333;
}

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

.page-arcade-fishing-games__strategy-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-arcade-fishing-games__strategy-heading {
  font-size: 1.8em;
  color: #000000; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-arcade-fishing-games__strategy-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-arcade-fishing-games__text-content--closing {
  margin-top: 50px;
  font-style: italic;
  color: #555555;
}

.page-arcade-fishing-games__mobile-section {
  background-color: #000000; /* Main color for contrast */
  color: #FFFFFF;
}

.page-arcade-fishing-games__mobile-section .page-arcade-fishing-games__section-title {
  color: #FCBC45; /* Login button color for emphasis */
}

.page-arcade-fishing-games__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.page-arcade-fishing-games__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-arcade-fishing-games__mobile-text .page-arcade-fishing-games__text-content {
  text-align: left;
  margin: 0 0 30px 0;
  color: #f0f0f0;
}

.page-arcade-fishing-games__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-arcade-fishing-games__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(252, 188, 69, 0.3);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-arcade-fishing-games__btn--download {
  background-color: #FCBC45;
  color: #000000;
}

.page-arcade-fishing-games__btn--download:hover {
  background-color: #e0a53b;
}

.page-arcade-fishing-games__promotions-section {
  text-align: center;
}

.page-arcade-fishing-games__promotions-section .page-arcade-fishing-games__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333333;
}

.page-arcade-fishing-games__btn--promo {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-arcade-fishing-games__btn--promo:hover {
  background-color: #333333;
  border-color: #e0a53b;
}

.page-arcade-fishing-games__cta-section {
  background-color: #FCBC45; /* Login button color for emphasis */
  text-align: center;
  color: #000000;
}

.page-arcade-fishing-games__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #000000;
}

.page-arcade-fishing-games__cta-section .page-arcade-fishing-games__text-content {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #333333;
}

.page-arcade-fishing-games__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-arcade-fishing-games__btn--register-large {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-arcade-fishing-games__btn--register-large:hover {
  background-color: #333333;
}

.page-arcade-fishing-games__faq-section .page-arcade-fishing-games__text-content--closing-faq a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade-fishing-games__faq-section .page-arcade-fishing-games__text-content--closing-faq a:hover {
  text-decoration: underline;
}

.page-arcade-fishing-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-arcade-fishing-games__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  color: #333333;
}

.page-arcade-fishing-games__faq-question {
  font-size: 1.4em;
  color: #000000; /* Main color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-arcade-fishing-games__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-arcade-fishing-games__responsible-gaming {
  text-align: center;
  background-color: #f0f0f0;
}

.page-arcade-fishing-games__responsible-gaming .page-arcade-fishing-games__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  color: #333333;
}

.page-arcade-fishing-games__responsible-gaming a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade-fishing-games__responsible-gaming a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .page-arcade-fishing-games__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-arcade-fishing-games__hero-content {
    padding: 30px 15px;
  }
  .page-arcade-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-arcade-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-arcade-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-arcade-fishing-games__about-section,
  .page-arcade-fishing-games__games-showcase,
  .page-arcade-fishing-games__strategy-section,
  .page-arcade-fishing-games__mobile-section,
  .page-arcade-fishing-games__promotions-section,
  .page-arcade-fishing-games__cta-section,
  .page-arcade-fishing-games__faq-section,
  .page-arcade-fishing-games__responsible-gaming {
    padding: 60px 0;
  }
  .page-arcade-fishing-games__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-arcade-fishing-games__text-content {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-arcade-fishing-games__game-image,
  .page-arcade-fishing-games__mobile-image,
  .page-arcade-fishing-games__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }
  .page-arcade-fishing-games__mobile-content {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .page-arcade-fishing-games__mobile-text {
    text-align: center;
  }
  .page-arcade-fishing-games__mobile-text .page-arcade-fishing-games__text-content {
    text-align: center;
  }
  .page-arcade-fishing-games__cta-title {
    font-size: 2em;
  }
  .page-arcade-fishing-games__btn--register-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content image overflow prevention */
  .page-arcade-fishing-games img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure content area images are not too small */
    min-height: 200px; /* Ensure content area images are not too small */
  }
  .page-arcade-fishing-games {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-arcade-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-arcade-fishing-games__hero-description {
    font-size: 0.9em;
  }
  .page-arcade-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-arcade-fishing-games__feature-title {
    font-size: 1.4em;
  }
  .page-arcade-fishing-games__game-title {
    font-size: 1.3em;
  }
  .page-arcade-fishing-games__strategy-heading {
    font-size: 1.5em;
  }
  .page-arcade-fishing-games__cta-title {
    font-size: 1.8em;
  }
  .page-arcade-fishing-games__faq-question {
    font-size: 1.2em;
  }
}