.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background #0a0a0a */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  background-color: #1A202C; /* Primary brand color */
  padding: 80px 0;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-fishing-games__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary brand color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.3em;
  color: #f8f8f8;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-fishing-games__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text for contrast */
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background-color: #1A202C; /* Dark blue/black */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #0d121a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

.page-fishing-games__introduction-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__tips-section,
.page-fishing-games__responsible-gaming-section {
  padding: 80px 0;
}

.page-fishing-games__advantages-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__promotions-section,
.page-fishing-games__join-now-section {
  padding: 80px 0;
  background-color: #121212; /* Slightly lighter dark background for contrast with body */
}

.page-fishing-games__dark-section {
  background-color: #1A202C;
  color: #f0f0f0;
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__dark-section .page-fishing-games__section-description {
  color: #e0e0e0;
}

/* Content Wrapper with Image Alignment */
.page-fishing-games__content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.page-fishing-games__content-wrapper p {
  flex: 1;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-fishing-games__image-left {
  flex-shrink: 0;
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-fishing-games__image-right {
  flex-shrink: 0;
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  order: 2;
}

.page-fishing-games__content-wrapper:nth-of-type(odd) .page-fishing-games__image-right {
  order: 2;
}

.page-fishing-games__content-wrapper:nth-of-type(even) .page-fishing-games__image-left {
  order: 2;
}

/* Advantages Grid */
.page-fishing-games__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games__advantage-card {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games__advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__advantage-card p {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-fishing-games__game-card {
  background-color: #121212;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

.page-fishing-games__game-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__game-card p {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-fishing-games__btn-play {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games__btn-play:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

/* How to Play Steps */
.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-fishing-games__step-item {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__step-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-fishing-games__full-width-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

/* Tips List */
.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

.page-fishing-games__tips-list li {
  background-color: #121212;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
  border-left: 5px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__tips-list li strong {
  color: #FFD700;
}

/* Join Now Section */
.page-fishing-games__join-now-section {
  background-color: #1A202C;
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__btn-large {
  padding: 18px 45px;
  font-size: 1.2em;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 3em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .page-fishing-games__image-left,
  .page-fishing-games__image-right {
    width: 80%;
    order: 0; /* Reset order for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-fishing-games__main-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-large,
  .page-fishing-games__btn-play {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 !important; /* Remove horizontal margins for full width */
  }

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

  .page-fishing-games__introduction-section,
  .page-fishing-games__advantages-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__responsible-gaming-section,
  .page-fishing-games__join-now-section {
    padding: 40px 0;
  }

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

  .page-fishing-games__section-description {
    margin-bottom: 30px;
  }

  .page-fishing-games__content-wrapper {
    gap: 20px;
  }

  .page-fishing-games__image-left,
  .page-fishing-games__image-right,
  .page-fishing-games__full-width-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    border-radius: 8px;
  }

  .page-fishing-games__advantage-card,
  .page-fishing-games__game-card,
  .page-fishing-games__step-item {
    padding: 20px;
    border-radius: 8px;
  }

  .page-fishing-games__card-image,
  .page-fishing-games__game-image {
    height: 150px;
  }

  .page-fishing-games__card-title,
  .page-fishing-games__game-title,
  .page-fishing-games__step-title {
    font-size: 1.2em;
  }

  .page-fishing-games__tips-list li {
    padding: 15px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-large,
  .page-fishing-games__btn-play {
    font-size: 1em !important;
    padding: 12px 20px !important;
  }
}