:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-1: #0d0d0d; /* Assuming a dark background from shared.css */
  --bg-dark-2: #1a1a1a;
  --bg-light-1: #f8f8f8;
  --border-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark-1); /* Ensure consistency with shared body background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  text-align: center;
  overflow: hidden;
  background-color: var(--bg-dark-2); /* A slightly lighter dark background for hero */
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Make background image subtle */
  filter: none; /* No filter for image color */
}

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

.page-fishing-games__hero-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

/* General Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play,
.page-fishing-games__btn-view-promo {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding doesn't increase total width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-fishing-games__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark); /* Dark text on gold button for contrast */
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  color: var(--text-dark);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.page-fishing-games__btn-play,
.page-fishing-games__btn-view-promo {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
}

.page-fishing-games__btn-play:hover,
.page-fishing-games__btn-view-promo:hover {
  background-color: #a00000; /* Slightly darker red */
  border-color: #a00000;
}

/* General Section Styling */
.page-fishing-games__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-light); /* Light text on dark background */
  text-align: justify;
}

.page-fishing-games__text-block a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games__text-block a:hover {
  text-decoration: underline;
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  display: block;
  filter: none; /* No filter for image color */
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1);
}

/* Featured Games Section */
.page-fishing-games__featured-games-section {
  padding: 60px 0;
  background-color: var(--bg-dark-2); /* Slightly different dark background */
}

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

.page-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.05); /* Very subtle white tint */
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  filter: none; /* No filter for image color */
}

.page-fishing-games__game-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__game-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games__game-link:hover {
  text-decoration: underline;
}

.page-fishing-games__game-description {
  color: var(--text-light);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1; /* Push button to bottom */
}

/* Benefits Section */
.page-fishing-games__benefits-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1);
}

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

.page-fishing-games__benefit-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__benefit-icon {
  width: 100%;
  max-width: 250px; /* Adjusted to meet min 200px requirement */
  height: auto;
  margin-bottom: 20px;
  filter: none; /* No filter for image color */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__benefit-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__benefit-description {
  color: var(--text-light);
  font-size: 1em;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 60px 0;
  background-color: var(--bg-dark-2);
}

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

.page-fishing-games__guide-step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
}

.page-fishing-games__guide-step-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__guide-step-description {
  color: var(--text-light);
  font-size: 1em;
}

.page-fishing-games__guide-step-description a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games__guide-step-description a:hover {
  text-decoration: underline;
}

/* Strategies Section */
.page-fishing-games__strategies-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1);
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 20px;
}

.page-fishing-games__strategy-heading {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__strategy-description {
  color: var(--text-light);
  font-size: 1em;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 0;
  background-color: var(--bg-dark-2);
}

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

.page-fishing-games__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  filter: none; /* No filter for image color */
}

.page-fishing-games__promo-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__promo-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games__promo-link:hover {
  text-decoration: underline;
}

.page-fishing-games__promo-description {
  color: var(--text-light);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: var(--bg-dark-1);
}

.page-fishing-games__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-fishing-games__faq-heading {
  font-size: 1.2em;
  color: var(--primary-color);
  margin: 0;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg); /* Plus to X (or rotate to -) */
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px; /* Only horizontal padding initially */
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
}}