/* style/ban-ca-fishing-game-tips.css */
:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-color-light: #F0F2F5;
  --text-color-dark: #333333;
  --background-light: #ffffff;
  --background-dark: #2D3748;
  --border-color: #e0e0e0;
}

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

.page-ban-ca-fishing-game-tips a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca-fishing-game-tips a:hover {
  color: var(--secondary-color);
}

.page-ban-ca-fishing-game-tips .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-ban-ca-fishing-game-tips .content-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-ban-ca-fishing-game-tips .content-block:last-of-type {
  border-bottom: none;
}

.page-ban-ca-fishing-game-tips h1,
.page-ban-ca-fishing-game-tips h2,
.page-ban-ca-fishing-game-tips h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca-fishing-game-tips h1 {
  font-size: 3.2em;
  text-align: center;
  color: var(--text-color-light);
}

.page-ban-ca-fishing-game-tips h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
}

.page-ban-ca-fishing-game-tips h3 {
  font-size: 1.8em;
  margin-top: 30px;
}

.page-ban-ca-fishing-game-tips p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-ban-ca-fishing-game-tips ul,
.page-ban-ca-fishing-game-tips ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-ban-ca-fishing-game-tips ul li,
.page-ban-ca-fishing-game-tips ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-ban-ca-fishing-game-tips img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover; /* Ensure images cover their area without distortion */
}

/* Hero Section */
.page-ban-ca-fishing-game-tips .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a475a 100%); /* Darker gradient for hero */
  color: var(--text-color-light);
  overflow: hidden;
}

.page-ban-ca-fishing-game-tips .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-ban-ca-fishing-game-tips .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-height: 500px;
  overflow: hidden;
}

.page-ban-ca-fishing-game-tips .hero-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-ban-ca-fishing-game-tips .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-color-light);
}

.page-ban-ca-fishing-game-tips .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-ban-ca-fishing-game-tips .cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca-fishing-game-tips .secondary-cta {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  margin-left: 20px;
}

.page-ban-ca-fishing-game-tips .secondary-cta:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-ban-ca-fishing-game-tips .button-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Strategy Items */
.page-ban-ca-fishing-game-tips .strategy-item {
  background-color: var(--background-light);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.page-ban-ca-fishing-game-tips .strategy-item h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-ban-ca-fishing-game-tips .strategy-item img {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-ban-ca-fishing-game-tips .faq-section {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-ban-ca-fishing-game-tips .faq-section h2 {
  color: var(--secondary-color);
}

.page-ban-ca-fishing-game-tips .faq-list {
  margin-top: 30px;
}

.page-ban-ca-fishing-game-tips .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca-fishing-game-tips .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.page-ban-ca-fishing-game-tips .faq-question:hover {
  background: #2D3748; /* Slightly lighter dark for hover */
}

.page-ban-ca-fishing-game-tips .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-color-light);
}

.page-ban-ca-fishing-game-tips .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-ban-ca-fishing-game-tips .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-ban-ca-fishing-game-tips .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: var(--background-light);
  color: var(--text-color-dark);
  border-radius: 0 0 8px 8px;
}

.page-ban-ca-fishing-game-tips .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
}

.page-ban-ca-fishing-game-tips .faq-answer p {
  margin: 0;
}

/* Related Articles Section */
.page-ban-ca-fishing-game-tips .related-articles-section {
  background-color: var(--background-light);
}

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

.page-ban-ca-fishing-game-tips .article-card {
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-ban-ca-fishing-game-tips .article-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.page-ban-ca-fishing-game-tips .article-card h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.3em;
}

.page-ban-ca-fishing-game-tips .article-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-ban-ca-fishing-game-tips .article-card p {
  padding: 0 20px;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-ban-ca-fishing-game-tips .article-card .read-more {
  display: inline-block;
  padding: 10px 20px 20px;
  color: var(--secondary-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca-fishing-game-tips .article-card .read-more:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-ban-ca-fishing-game-tips h1 {
    font-size: 2.8em;
  }
  .page-ban-ca-fishing-game-tips h2 {
    font-size: 2em;
  }
  .page-ban-ca-fishing-game-tips h3 {
    font-size: 1.6em;
  }
  .page-ban-ca-fishing-game-tips .hero-content p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-ban-ca-fishing-game-tips .content-block {
    padding: 40px 0;
  }
  .page-ban-ca-fishing-game-tips .hero-section {
    padding: 60px 15px;
  }
  .page-ban-ca-fishing-game-tips h1 {
    font-size: 2.2em;
  }
  .page-ban-ca-fishing-game-tips h2 {
    font-size: 1.8em;
  }
  .page-ban-ca-fishing-game-tips h3 {
    font-size: 1.4em;
  }
  .page-ban-ca-fishing-game-tips .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-ban-ca-fishing-game-tips .secondary-cta {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-ban-ca-fishing-game-tips .button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-ban-ca-fishing-game-tips .faq-question {
    padding: 15px 20px;
  }
  .page-ban-ca-fishing-game-tips .faq-question h3 {
    font-size: 1.1em;
  }
  .page-ban-ca-fishing-game-tips .faq-answer {
    padding: 15px 20px;
  }
  .page-ban-ca-fishing-game-tips .articles-grid {
    grid-template-columns: 1fr;
  }
  .page-ban-ca-fishing-game-tips .article-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-ban-ca-fishing-game-tips h1 {
    font-size: 1.8em;
  }
  .page-ban-ca-fishing-game-tips h2 {
    font-size: 1.5em;
  }
  .page-ban-ca-fishing-game-tips p {
    font-size: 1em;
  }
  .page-ban-ca-fishing-game-tips .hero-content p {
    font-size: 1em;
  }
  .page-ban-ca-fishing-game-tips .cta-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-ban-ca-fishing-game-tips .secondary-cta {
    margin-top: 10px;
  }
}