.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-fishing-games-h1, .page-fishing-games-h2, .page-fishing-games-h3 {
  color: var(--primary-color, #0A2463);
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-fishing-games-h1 {
  font-size: 3.2em;
  margin-top: 0;
  padding-top: 20px;
  color: #FFFFFF;
}

.page-fishing-games-h2 {
  font-size: 2.5em;
  padding-top: 40px;
  margin-bottom: 30px;
}

.page-fishing-games-h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--primary-color, #0A2463);
}

.page-fishing-games-p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 20px;
  color: #444444;
}

.page-fishing-games-text-link {
  color: var(--auxiliary-color, #E34234);
  text-decoration: none;
  font-weight: bold;
}

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

/* Hero Section */
.page-fishing-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color, #0A2463), #0A2463EE);
  color: #ffffff;
}

.page-fishing-games .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games .page-fishing-games-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--auxiliary-color, #E34234);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(227, 66, 52, 0.4);
}

.page-fishing-games .page-fishing-games-cta-button:hover {
  background: #c7372b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 66, 52, 0.5);
}

/* Introduction Section */
.page-fishing-games .introduction-section {
  background-color: #ffffff;
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games .introduction-section .page-fishing-games-p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .page-fishing-games-feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .page-fishing-games-feature-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-fishing-games .page-fishing-games-feature-item .page-fishing-games-h3 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-color, #0A2463);
}

.page-fishing-games .page-fishing-games-feature-item .page-fishing-games-p {
  font-size: 1em;
  text-align: left;
  color: #555555;
}

.page-fishing-games-secondary-cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  padding: 15px 35px;
  background: var(--primary-color, #0A2463);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.3);
}

.page-fishing-games-secondary-cta-button:hover {
  background: #071a47;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.4);
}

/* Game Showcase Section */
.page-fishing-games .game-showcase-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games .game-showcase-section .page-fishing-games-p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .page-fishing-games-game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .page-fishing-games-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .page-fishing-games-game-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-fishing-games .page-fishing-games-game-card .page-fishing-games-h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
  color: var(--primary-color, #0A2463);
}

.page-fishing-games .page-fishing-games-game-card .page-fishing-games-h3 a {
  text-decoration: none;
  color: inherit;
}

.page-fishing-games .page-fishing-games-game-card .page-fishing-games-h3 a:hover {
  text-decoration: underline;
}

.page-fishing-games .page-fishing-games-game-card .page-fishing-games-p {
  font-size: 0.95em;
  padding: 0 20px;
  text-align: left;
  color: #666666;
  margin-bottom: 20px;
}

.page-fishing-games .page-fishing-games-game-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--auxiliary-color, #E34234);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-fishing-games .page-fishing-games-game-button:hover {
  background: #c7372b;
}

/* How to Play Section */
.page-fishing-games .how-to-play-section {
  background-color: #eef4f8;
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games .how-to-play-section .page-fishing-games-p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .page-fishing-games-step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-fishing-games .page-fishing-games-step-item .page-fishing-games-h3 {
  font-size: 1.3em;
  margin-top: 0;
  color: var(--auxiliary-color, #E34234);
}

.page-fishing-games .page-fishing-games-step-item .page-fishing-games-p {
  font-size: 0.95em;
  text-align: left;
  color: #555555;
  margin-bottom: 20px;
}

.page-fishing-games .page-fishing-games-step-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color, #0A2463);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games .page-fishing-games-step-button:hover {
  background: #071a47;
}

.page-fishing-games .page-fishing-games-tips-title {
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--primary-color, #0A2463);
}

.page-fishing-games .page-fishing-games-tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games .page-fishing-games-tips-list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444444;
}

.page-fishing-games .page-fishing-games-tips-list li strong {
  color: var(--auxiliary-color, #E34234);
}

/* Promotions Section */
.page-fishing-games .promotions-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games .promotions-section .page-fishing-games-p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .page-fishing-games-promo-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .page-fishing-games-promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .page-fishing-games-promo-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-fishing-games .page-fishing-games-promo-card .page-fishing-games-h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
  color: var(--primary-color, #0A2463);
}

.page-fishing-games .page-fishing-games-promo-card .page-fishing-games-p {
  font-size: 0.95em;
  padding: 0 20px;
  text-align: left;
  color: #666666;
  margin-bottom: 20px;
}

.page-fishing-games .page-fishing-games-promo-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--auxiliary-color, #E34234);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-fishing-games .page-fishing-games-promo-button:hover {
  background: #c7372b;
}

.page-fishing-games-note {
  margin-top: 40px;
  font-style: italic;
  color: #666;
}

/* Security & Support Section */
.page-fishing-games .security-support-section {
  padding: 60px 0;
  background-color: #eef4f8;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games .security-support-section .page-fishing-games-p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .page-fishing-games-info-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-fishing-games .page-fishing-games-info-item .page-fishing-games-h3 {
  font-size: 1.3em;
  margin-top: 0;
  color: var(--primary-color, #0A2463);
}

.page-fishing-games .page-fishing-games-info-item .page-fishing-games-p {
  font-size: 0.95em;
  text-align: left;
  color: #555555;
  margin-bottom: 20px;
}

.page-fishing-games .page-fishing-games-contact-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--auxiliary-color, #E34234);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games .page-fishing-games-contact-button:hover {
  background: #c7372b;
}

/* FAQ Section */
.page-fishing-games .faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-fishing-games .page-fishing-games-faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

/* FAQ default state - Answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Enough height to contain content */
  padding: 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.faq-question .page-fishing-games-h3 {
  margin: 0;
  font-size: 1.2em;
  text-align: left;
  flex-grow: 1;
  color: #333333;
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--auxiliary-color, #E34234);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-answer .page-fishing-games-p {
  text-align: left;
  color: #555555;
  margin-bottom: 10px;
}

/* Related Articles Section */
.page-fishing-games .related-articles-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-fishing-games .related-articles-section .page-fishing-games-p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .page-fishing-games-article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .page-fishing-games-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .page-fishing-games-article-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-fishing-games .page-fishing-games-article-card .page-fishing-games-h3 {
  font-size: 1.3em;
  margin: 20px 15px 10px 15px;
  color: var(--primary-color, #0A2463);
}

.page-fishing-games .page-fishing-games-article-card .page-fishing-games-h3 a {
  text-decoration: none;
  color: inherit;
}

.page-fishing-games .page-fishing-games-article-card .page-fishing-games-h3 a:hover {
  text-decoration: underline;
}

.page-fishing-games .page-fishing-games-article-card .page-fishing-games-p {
  font-size: 0.95em;
  padding: 0 20px;
  text-align: left;
  color: #666666;
  margin-bottom: 20px;
}

.page-fishing-games .page-fishing-games-readmore-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color, #0A2463);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-fishing-games .page-fishing-games-readmore-button:hover {
  background: #071a47;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-h1 {
    font-size: 2.8em;
  }
  .page-fishing-games-h2 {
    font-size: 2em;
  }
  .page-fishing-games-h3 {
    font-size: 1.6em;
  }
  .page-fishing-games .hero-image img {
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-h1 {
    font-size: 2.2em;
  }
  .page-fishing-games-h2 {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-fishing-games-h3 {
    font-size: 1.4em;
  }
  .page-fishing-games-p {
    font-size: 1em;
  }
  .page-fishing-games .page-fishing-games-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games-container {
    padding: 15px;
  }
  .page-fishing-games .page-fishing-games-feature-item, 
  .page-fishing-games .page-fishing-games-game-card, 
  .page-fishing-games .page-fishing-games-promo-card, 
  .page-fishing-games .page-fishing-games-info-item, 
  .page-fishing-games .page-fishing-games-article-card {
    padding: 20px;
  }
  .page-fishing-games .faq-question {
    padding: 15px;
  }
  .faq-question .page-fishing-games-h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .page-fishing-games-tips-list li {
    padding: 15px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-h1 {
    font-size: 1.8em;
  }
  .page-fishing-games-h2 {
    font-size: 1.6em;
  }
  .page-fishing-games .page-fishing-games-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-fishing-games .hero-image {
    margin-bottom: 20px;
  }
  .page-fishing-games .hero-image img {
    border-radius: 4px;
  }
  .page-fishing-games .page-fishing-games-feature-icon {
    width: 120px;
  }
  .page-fishing-games .page-fishing-games-game-img, .page-fishing-games .page-fishing-games-promo-img, .page-fishing-games .page-fishing-games-article-img {
    height: 180px;
  }
  .page-fishing-games .faq-question {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-question .page-fishing-games-h3 {
    margin-bottom: 8px;
  }
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }
  .faq-item.active .faq-answer {
    padding: 10px;
  }
}