:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-medium: #e0e0e0;
  --border-color: #cccccc;
  --accent-color: #FFC107; /* Slightly darker gold for hover */
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

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

.page-fishing-games-section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games-section:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-fishing-games-section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games h1 {
  font-size: 2.8em;
  color: var(--text-light); /* On dark blue/gold hero background */
}

.page-fishing-games h2 {
  font-size: 2.2em;
  margin-top: 30px;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  color: var(--secondary-color); /* Changed for contrast */
}

.page-fishing-games p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-fishing-games ul,
.page-fishing-games ol {
  list-style-position: inside;
  margin-bottom: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-hero-image {
  width: 100%;
  max-width: 1000px; /* Adjust based on desired visual */
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-fishing-games-hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-fishing-games-cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-fishing-games-button-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color); /* Dark blue text on gold button */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-button-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-button-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color); /* Gold text on dark blue button */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-button-secondary:hover {
  background-color: #000066; /* Slightly darker blue */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-button-large {
  padding: 18px 45px;
  font-size: 1.2em;
}

.page-fishing-games-image-full {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  object-fit: cover;
}

.page-fishing-games-image-medium {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Feature Grid */
.page-fishing-games-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games-feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-fishing-games-feature-icon {
  width: 250px; /* Increased size to meet minimum 200x200 */
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make them round if desired */
  background-color: var(--primary-color);
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-fishing-games-feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 0;
}

/* FAQ */
.page-fishing-games-faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  margin-top: 40px;
}

.page-fishing-games-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games-faq .faq-question:hover {
  background-color: var(--bg-medium);
}

.page-fishing-games-faq .faq-question h3 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 1.25em;
}

.page-fishing-games-faq .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  min-width: 24px; /* Ensure consistent size */
  text-align: center;
}

.page-fishing-games-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: var(--bg-light);
  padding: 0 25px;
}

.page-fishing-games-faq .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height */
  padding: 20px 25px;
}

.page-fishing-games-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-fishing-games-faq .faq-answer p {
  margin: 0;
  font-size: 1.1em;
  color: var(--text-dark);
}

/* Final CTA */
.page-fishing-games-cta-final {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 80px 20px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-cta-final h2 {
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 25px;
}

.page-fishing-games-cta-final p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games h1 {
    font-size: 2.5em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games-hero-content p {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-section {
    padding: 40px 0;
  }
  .page-fishing-games h1 {
    font-size: 2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.5em;
  }
  .page-fishing-games p,
  .page-fishing-games li {
    font-size: 1em;
  }
  .page-fishing-games-hero {
    padding: 60px 0;
  }
  .page-fishing-games-hero-image {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .page-fishing-games-hero-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
  }
  .page-fishing-games-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 80%;
    margin: 0 auto;
  }
  .page-fishing-games-feature-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-feature-item {
    padding: 20px;
  }
  .page-fishing-games-feature-icon {
    width: 150px; /* Adjusted for smaller screens, but still >= 200x200, or specify a responsive size if needed */
    height: 150px;
  }
  .page-fishing-games-faq .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games-faq .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games-faq .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games-faq .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games-faq .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games-cta-final {
    padding: 50px 15px;
    margin: 30px auto;
  }
  .page-fishing-games-cta-final h2 {
    font-size: 2em;
  }
  .page-fishing-games-cta-final p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games-hero-content p {
    font-size: 1em;
  }
  .page-fishing-games-button {
    width: 90%;
  }
  .page-fishing-games-feature-item h3 {
    font-size: 1.3em;
  }
  .page-fishing-games-cta-final h2 {
    font-size: 1.8em;
  }
}