/* style/fishing-games.css */
:root {
  --primary-color: #007bff; /* Deep Blue */
  --secondary-color: #ffc107; /* Gold */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #0056b3; /* Darker shade of primary for contrast */
  --border-color: #e0e0e0;
}

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

.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(even) {
  background-color: #f2f2f2;
}

.page-fishing-games .section-title {
  font-size: 3em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-fishing-games .section-intro {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
}

/* Hero Section */
.page-fishing-games .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004a8f 100%);
  color: var(--text-color-light);
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games .hero-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-fishing-games .hero-content {
  flex: 1;
  text-align: left;
}

.page-fishing-games .hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-fishing-games .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-fishing-games .hero-image {
  flex: 1;
  max-width: 50%;
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  object-fit: cover;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}

.page-fishing-games .cta-button:hover {
  background: #ffdb58; /* Lighter gold */
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Why Choose Section */
.page-fishing-games .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

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

.page-fishing-games .feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  padding: 15px;
}

.page-fishing-games .feature-heading {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games .feature-item p {
  font-size: 1.1em;
  color: #666;
}

/* Game Cards Grid */
.page-fishing-games .game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

.page-fishing-games .game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games .game-card .page-fishing-games game-title {
  font-size: 2em;
  color: var(--primary-color);
  margin: 20px 15px 10px 15px;
  line-height: 1.3;
}

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

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

.page-fishing-games .game-description {
  font-size: 1.1em;
  color: #666;
  padding: 0 15px 20px 15px;
}

.page-fishing-games .game-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-fishing-games .game-button:hover {
  background: #ffdb58;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* How To Play Section */
.page-fishing-games .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fishing-games .step-item {
  background-color: var(--text-color-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border-radius: 50%;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-fishing-games .step-heading {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games .step-item p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 25px;
}

.page-fishing-games .step-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games .step-button:hover {
  background: #ffdb58;
  transform: translateY(-2px);
}

/* Tips Section */
.page-fishing-games .tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games .tip-item {
  background-color: var(--text-color-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .tip-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  padding: 15px;
}

.page-fishing-games .tip-heading {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games .tip-item p {
  font-size: 1.1em;
  color: #666;
}

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

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

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

.page-fishing-games .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games .promo-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin: 20px 15px 10px 15px;
  line-height: 1.3;
}

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

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

.page-fishing-games .promo-description {
  font-size: 1.1em;
  color: #666;
  padding: 0 15px 20px 15px;
}

.page-fishing-games .promo-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-fishing-games .promo-button:hover {
  background: #ffdb58;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.page-fishing-games .section-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* FAQ Section */
.page-fishing-games .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--text-color-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 24px;
  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.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #444;
  font-size: 1.1em;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-section .container {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games .hero-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .page-fishing-games .hero-image {
    max-width: 80%;
  }

  .page-fishing-games .hero-title {
    font-size: 3em;
  }

  .page-fishing-games .hero-description {
    font-size: 1.1em;
  }

  .page-fishing-games .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }

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

  .page-fishing-games .section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-fishing-games .feature-heading, 
  .page-fishing-games .game-card .page-fishing-games game-title, 
  .page-fishing-games .step-heading, 
  .page-fishing-games .tip-heading, 
  .page-fishing-games .promo-title {
    font-size: 1.5em;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-question, .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }

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

  .page-fishing-games .hero-image {
    max-width: 100%;
  }

  .page-fishing-games .section-title {
    font-size: 2em;
  }

  .page-fishing-games .feature-icon, .page-fishing-games .tip-icon {
    width: 80px;
    height: 80px;
  }

  .page-fishing-games .step-number {
    width: 50px;
    height: 50px;
    font-size: 2em;
  }

  .page-fishing-games .game-image, .page-fishing-games .promo-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-title {
    font-size: 2em;
  }

  .page-fishing-games .hero-description {
    font-size: 1em;
  }

  .page-fishing-games .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-fishing-games .section-title {
    font-size: 1.8em;
  }

  .page-fishing-games .section-intro {
    font-size: 0.9em;
  }

  .page-fishing-games .feature-heading, 
  .page-fishing-games .game-card .page-fishing-games game-title, 
  .page-fishing-games .step-heading, 
  .page-fishing-games .tip-heading, 
  .page-fishing-games .promo-title {
    font-size: 1.3em;
  }

  .page-fishing-games .game-button, .page-fishing-games .step-button, .page-fishing-games .promo-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .faq-question h3 {
    font-size: 1em;
  }
}