/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

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

.page-fishing-games section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-fishing-games h1,
.page-fishing-games h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 2.5em;
}

.page-fishing-games h3 {
  color: #343a40;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-fishing-games ol,
.page-fishing-games ul {
  margin-bottom: 20px;
  padding-left: 25px;
  font-size: 1.1em;
}

.page-fishing-games ol li,
.page-fishing-games ul li {
  margin-bottom: 10px;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
}

.page-fishing-games .primary-button {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
}

.page-fishing-games .primary-button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .secondary-button {
  background-color: var(--secondary-color);
  color: #ffffff;
  border: 2px solid var(--secondary-color);
}

.page-fishing-games .secondary-button:hover {
  background-color: #218838;
  border-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .small-button {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-fishing-games .text-center {
  text-align: center;
}

.page-fishing-games .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Banner */
.page-fishing-games .hero-banner {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games .hero-banner .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-fishing-games .hero-banner .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: 1;
}

.page-fishing-games .hero-banner .hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-fishing-games .hero-banner h1 {
  color: #ffffff;
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .hero-banner p {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Intro */
.page-fishing-games .section-intro p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Game Halls Grid */
.page-fishing-games .game-halls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-fishing-games .game-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 20px;
}

.page-fishing-games .game-card h3 {
  font-size: 1.5em;
  margin: 0 20px 10px;
  min-height: 60px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games .game-card .card-title-link {
  color: #343a40;
  text-decoration: none;
}

.page-fishing-games .game-card .card-title-link:hover {
  color: var(--primary-color);
}

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

/* Guide Section */
.page-fishing-games .section-guide ol {
  list-style-type: decimal;
  margin: 0 auto;
  max-width: 900px;
}

.page-fishing-games .section-guide ol li {
  background-color: #ffffff;
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .section-guide ol li strong {
  color: var(--primary-color);
}

/* Strategies Section */
.page-fishing-games .section-strategies ul {
  list-style-type: disc;
  margin: 0 auto;
  max-width: 900px;
}

.page-fishing-games .section-strategies ul li {
  background-color: #ffffff;
  border-left: 4px solid var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .section-strategies ul li strong {
  color: var(--secondary-color);
}

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

.page-fishing-games .promo-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .promo-item .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 20px;
}

.page-fishing-games .promo-item h3 {
  font-size: 1.5em;
  margin: 0 20px 10px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefits Section */
.page-fishing-games .section-benefits {
  background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
}

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

.page-fishing-games .benefit-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .benefit-item .benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-fishing-games .benefit-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 0;
}

.page-fishing-games .benefit-item p {
  font-size: 1em;
  color: #555555;
}

/* App Download Section */
.page-fishing-games .section-app-download {
  background-color: var(--primary-color);
  color: #ffffff;
  text-align: center;
}

.page-fishing-games .section-app-download h2 {
  color: #ffffff;
}

.page-fishing-games .section-app-download p {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-fishing-games .app-download-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-fishing-games .app-qr-image {
  width: 250px;
  height: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

.page-fishing-games .app-download-info {
  text-align: left;
  max-width: 400px;
}

.page-fishing-games .app-download-info h3 {
  color: #ffffff;
  font-size: 1.8em;
  margin-top: 0;
}

.page-fishing-games .app-download-info ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-fishing-games .app-download-info ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  position: relative;
  padding-left: 30px;
}

.page-fishing-games .app-download-info ul li::before {
  content: '✔';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* FAQ Section */
.page-fishing-games .section-faq {
  padding-bottom: 80px;
}

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

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

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

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

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

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

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

.page-fishing-games .faq-answer p {
  margin: 0;
  font-size: 1.05em;
  color: #555555;
}

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

.page-fishing-games .faq-answer a:hover {
  color: var(--secondary-color);
}

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

.page-fishing-games .blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .blog-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-fishing-games .blog-card h3 {
  font-size: 1.5em;
  margin: 20px 20px 10px;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.page-fishing-games .blog-card p {
  font-size: 1em;
  padding: 0 20px;
  margin-bottom: 15px;
  color: #666666;
}

.page-fishing-games .blog-card .read-more {
  display: inline-block;
  margin: 0 20px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games .blog-card .read-more:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-banner h1 {
    font-size: 2.8em;
  }
  .page-fishing-games .hero-banner p {
    font-size: 1.1em;
  }
  .page-fishing-games h1,
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games h3 {
    font-size: 1.5em;
  }
  .page-fishing-games .app-download-content {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games .app-download-info {
    text-align: center;
    margin-top: 30px;
  }
  .page-fishing-games .app-download-info ul {
    padding-left: 20px;
  }
  .page-fishing-games .app-download-info ul li {
    padding-left: 0;
  }
  .page-fishing-games .app-download-info ul li::before {
    position: static;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-banner {
    height: 400px;
  }
  .page-fishing-games .hero-banner h1 {
    font-size: 2.2em;
  }
  .page-fishing-games .hero-banner p {
    font-size: 1em;
  }
  .page-fishing-games .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games .cta-button {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games h1,
  .page-fishing-games h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games p,
  .page-fishing-games ol li,
  .page-fishing-games ul li {
    font-size: 1em;
  }
  .page-fishing-games .game-halls-grid,
  .page-fishing-games .promo-list,
  .page-fishing-games .benefits-grid,
  .page-fishing-games .blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-banner {
    height: 350px;
  }
  .page-fishing-games .hero-banner h1 {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-banner p {
    font-size: 0.9em;
  }
  .page-fishing-games h1,
  .page-fishing-games h2 {
    font-size: 1.5em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .app-qr-image {
    width: 200px;
    height: 200px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1em;
  }
}