/* style/fishing-games.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

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

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

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

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

.page-fishing-games h1 {
  font-size: 3.2em;
  color: var(--text-color-light);
}

.page-fishing-games h2 {
  font-size: 2.5em;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
}

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

.page-fishing-games ol {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: left;
  padding-left: 20px;
}

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

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

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

.page-fishing-games a: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(--secondary-color) 0%, #a31d1d 100%); /* Dark red gradient */
}

.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: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games .hero-content p {
  color: var(--text-color-light);
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button:hover {
  background: #FFC400;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-fishing-games .introduction-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

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

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

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

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

.page-fishing-games .feature-item p {
  font-size: 1em;
  color: var(--text-color-dark);
  text-align: center;
}

.page-fishing-games .feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Games Showcase Section */
.page-fishing-games .games-showcase-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

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

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

.page-fishing-games .game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games .game-card h3 {
  font-size: 1.5em;
  margin: 20px 15px 10px;
  color: var(--secondary-color);
}

.page-fishing-games .game-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

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

.page-fishing-games .game-card p {
  font-size: 1em;
  color: var(--text-color-dark);
  padding: 0 15px 20px;
  text-align: center;
}

.page-fishing-games .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-small:hover {
  background: #FFC400;
  transform: translateY(-2px);
}

/* Gameplay Guide Section */
.page-fishing-games .j-gameplay-guide-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

/* Promotion Section */
.page-fishing-games .promotion-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

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

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

.page-fishing-games .promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games .promo-card h3 {
  font-size: 1.5em;
  margin: 20px 15px 10px;
  color: var(--secondary-color);
}

.page-fishing-games .promo-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

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

.page-fishing-games .promo-card p {
  font-size: 1em;
  color: var(--text-color-dark);
  padding: 0 15px 20px;
  text-align: center;
}

.page-fishing-games .promo-callout {
  margin-top: 40px;
  font-style: italic;
  color: var(--secondary-color);
  font-weight: bold;
  text-align: center;
}

/* FAQ Section */
.page-fishing-games .faq-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
  border-color: var(--primary-color);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-color-dark);
  text-align: left;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f9f9f9;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 5px 5px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-color-dark);
  text-align: left;
}

/* Final CTA Section */
.page-fishing-games .cta-final-section {
  background: linear-gradient(45deg, var(--primary-color), #FFC400);
  padding: 80px 0;
  color: var(--secondary-color);
  text-align: center;
}

.page-fishing-games .cta-final-section h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-fishing-games .cta-final-section p {
  color: var(--secondary-color);
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-fishing-games .cta-final-section .cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-fishing-games .cta-final-section .cta-button:hover {
  background: #a31d1d;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.5em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games h3 {
    font-size: 1.6em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-fishing-games .features-grid,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .promo-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@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.4em;
  }
  .page-fishing-games .hero-image {
    margin-bottom: 20px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-fishing-games .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-fishing-games .feature-item,
  .page-fishing-games .game-card,
  .page-fishing-games .promo-card {
    padding: 20px;
  }
  .page-fishing-games .game-image, .page-fishing-games .promo-image {
    height: 200px;
  }
  .faq-question {
    padding: 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 10px 15px;
  }
  .page-fishing-games ol {
    padding-left: 15px;
  }
  .page-fishing-games ol li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .container {
    padding: 0 15px;
  }
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.5em;
  }
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games .cta-button {
    font-size: 0.9em;
    padding: 8px 20px;
  }
  .page-fishing-games .feature-item h3,
  .page-fishing-games .game-card h3,
  .page-fishing-games .promo-card h3 {
    font-size: 1.3em;
  }
  .page-fishing-games .feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-fishing-games .faq-list {
    margin-top: 20px;
  }
}