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

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

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

/* Colors */
:root {
  --primary-color: #C0392B; /* Deep Red */
  --secondary-color: #F39C12; /* Orange/Gold */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #2c3e50; /* Dark Blue/Grey for contrast */
}

/* General Section Styling */
.page-fishing-games section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-fishing-games section.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-fishing-games section.bg-dark h1, 
.page-fishing-games section.bg-dark h2, 
.page-fishing-games section.bg-dark h3, 
.page-fishing-games section.bg-dark p, 
.page-fishing-games section.bg-dark li,
.page-fishing-games section.bg-dark a {
  color: var(--text-color-light);
}

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

.page-fishing-games section h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games section.bg-dark h1, 
.page-fishing-games section.bg-dark h2,
.page-fishing-games section.bg-dark h3 {
  color: var(--secondary-color);
}

/* CTA Buttons */
.page-fishing-games .cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button:hover {
  background-color: #e08e0b; /* Slightly darker secondary color */
  transform: translateY(-2px);
}

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

.page-fishing-games .secondary-button:hover {
  background-color: #a72e23; /* Slightly darker primary color */
}

.page-fishing-games .play-now-button, 
.page-fishing-games .guide-button, 
.page-fishing-games .promo-button, 
.page-fishing-games .app-download-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-fishing-games .play-now-button:hover, 
.page-fishing-games .guide-button:hover, 
.page-fishing-games .promo-button:hover, 
.page-fishing-games .app-download-button:hover {
  background-color: var(--secondary-color);
}

/* 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: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #a72e23 100%); /* Gradient with primary color */
  color: var(--text-color-light);
}

.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 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games .hero-content h1 {
  font-size: 3.5em;
  color: var(--text-color-light);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

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

/* Intro Section */
.page-fishing-games .intro-section {
  background-color: var(--bg-light);
}

.page-fishing-games .intro-section h2 {
  color: var(--primary-color);
}

.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-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games .feature-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games .feature-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-fishing-games .feature-item p {
  color: var(--text-color-dark);
}

/* Popular Games Section */
.page-fishing-games .popular-games-section {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-fishing-games .popular-games-section h2 {
  color: var(--secondary-color);
}

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

.page-fishing-games .game-card {
  background-color: #34495e; /* Slightly lighter dark background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games .game-card:hover {
  transform: translateY(-5px);
  background-color: #40576e;
}

.page-fishing-games .game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.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 {
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-fishing-games .guide-section {
  background-color: var(--bg-light);
}

.page-fishing-games .guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games .guide-list li {
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games .guide-list h3 {
  color: var(--primary-color);
  font-size: 1.7em;
  margin-bottom: 10px;
}

.page-fishing-games .guide-list p {
  color: var(--text-color-dark);
  margin-bottom: 20px;
}

/* Strategy Section */
.page-fishing-games .strategy-section {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-fishing-games .strategy-section h2 {
  color: var(--secondary-color);
}

.page-fishing-games .strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games .strategy-list li {
  background-color: #34495e;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .strategy-list h3 {
  color: var(--secondary-color);
  font-size: 1.7em;
  margin-bottom: 10px;
}

.page-fishing-games .strategy-list p {
  color: #cccccc;
}

/* Promotions Section */
.page-fishing-games .promotions-section {
  background-color: var(--bg-light);
}

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

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

.page-fishing-games .promo-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games .promo-item img {
  width: 100%;
  max-width: 350px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-fishing-games .promo-item p {
  color: var(--text-color-dark);
}

/* Support Section */
.page-fishing-games .support-section {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
  text-align: center;
}

.page-fishing-games .support-section h2 {
  color: var(--secondary-color);
}

.page-fishing-games .support-channels ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

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

.page-fishing-games .support-channels li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games .support-channels li a:hover {
  color: #e08e0b;
}

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

.page-fishing-games .faq-section h2 {
  color: var(--primary-color);
}

.page-fishing-games .faq-list {
  margin-top: 40px;
}

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

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  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.2em;
  color: var(--text-color-dark);
}

.page-fishing-games .faq-toggle {
  font-size: 20px;
  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.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

.page-fishing-games .faq-answer p {
  margin: 0;
  color: var(--text-color-dark);
}

/* Latest News Section */
.page-fishing-games .latest-news-section {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-fishing-games .latest-news-section h2 {
  color: var(--secondary-color);
}

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

.page-fishing-games .news-item {
  background-color: #34495e;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-fishing-games .news-item:hover {
  transform: translateY(-5px);
  background-color: #40576e;
}

.page-fishing-games .news-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games .news-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

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

.page-fishing-games .news-item h3 a:hover {
  text-decoration: underline;
}

.page-fishing-games .news-item p {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 10px;
}

.page-fishing-games .news-item .news-date {
  font-size: 0.85em;
  color: #999999;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-content h1 {
    font-size: 2.8em;
  }
  .page-fishing-games section h1, 
  .page-fishing-games section h2 {
    font-size: 2em;
  }
  .page-fishing-games .features-grid, 
  .page-fishing-games .game-cards-grid, 
  .page-fishing-games .promo-grid, 
  .page-fishing-games .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-section {
    padding: 60px 15px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2.2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games section h1, 
  .page-fishing-games section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games section h3 {
    font-size: 1.3em;
  }
  .page-fishing-games .feature-item, 
  .page-fishing-games .game-card, 
  .page-fishing-games .promo-item, 
  .page-fishing-games .news-item {
    padding: 20px;
  }
  .page-fishing-games .guide-list li {
    padding: 20px;
  }
  .page-fishing-games .faq-question {
    padding: 12px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-content h1 {
    font-size: 1.8em;
  }
  .page-fishing-games section h1, 
  .page-fishing-games section h2 {
    font-size: 1.5em;
  }
  .page-fishing-games .features-grid, 
  .page-fishing-games .game-cards-grid, 
  .page-fishing-games .promo-grid, 
  .page-fishing-games .news-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .feature-item img, 
  .page-fishing-games .game-card img, 
  .page-fishing-games .promo-item img, 
  .page-fishing-games .news-item img {
    max-width: 100%;
  }
}