/* style/fishing-games.css */
:root {
  --primary-color: #1A2B3C; /* Deep Blue/Dark Gray */
  --secondary-color: #FFD700; /* Gold/Bright Yellow */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f9f9f9;
  --background-dark: #121f2d;
  --border-color: #e0e0e0;
  --button-hover-bg: #e6c200;
}

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

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

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

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

.page-fishing-games h2 {
  font-size: 2.2em;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary-color);
}

.page-fishing-games h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  text-align: left;
}

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

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

.page-fishing-games a:hover {
  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: 60px 20px;
  background: var(--background-dark); /* Dark background for hero */
  color: var(--text-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 {
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-fishing-games .cta-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-fishing-games .content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games .content-section:last-of-type {
  border-bottom: none;
}

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

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

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

.page-fishing-games .features-section h3 {
  color: var(--secondary-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: var(--primary-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games .feature-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
}

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

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

.page-fishing-games .game-showcase-section {
  background-color: var(--background-light);
}

.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, .page-fishing-games .promo-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px 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, .page-fishing-games .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .card-image {
  width: 100%;
  height: 200px; /* Ensure images are not small icons */
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games .game-card h3, .page-fishing-games .promo-card h3 {
  padding: 15px;
  font-size: 1.4em;
  color: var(--primary-color);
  text-align: center;
}

.page-fishing-games .game-card h3 a, .page-fishing-games .promo-card h3 a {
  color: var(--primary-color);
}

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

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

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

.page-fishing-games .guide-section h3 {
  color: var(--secondary-color);
  text-align: left;
  margin-top: 20px;
}

.page-fishing-games .guide-section p, .page-fishing-games .guide-section li {
  color: var(--text-light);
  font-size: 1.1em;
  text-align: justify;
}

.page-fishing-games .guide-section ol, .page-fishing-games .guide-section ul {
  list-style-position: inside;
  padding-left: 20px;
  margin-top: 20px;
}

.page-fishing-games .guide-section ol li {
  margin-bottom: 15px;
}

.page-fishing-games .guide-section ul li {
  margin-bottom: 10px;
}

.page-fishing-games .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-fishing-games .btn-primary:hover {
  background: var(--button-hover-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  margin-right: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-fishing-games .btn-secondary:hover {
  background: darken(var(--primary-color), 10%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.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 .security-support-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.page-fishing-games .security-support-section ul {
  list-style: none;
  padding: 0;
}

.page-fishing-games .security-support-section li {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
  position: relative;
  padding-left: 30px;
  text-align: justify;
}

.page-fishing-games .security-support-section li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

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

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  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(--primary-color);
  text-align: left;
}

.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);
}

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: var(--background-light);
  color: var(--text-dark);
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px;
  border-top: 1px solid var(--border-color);
}

.page-fishing-games .faq-answer p {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-fishing-games .faq-answer .btn-secondary {
  margin-top: 5px;
}

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

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

.page-fishing-games .conclusion-section p {
  color: var(--text-light);
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.4em;
  }
  .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: 16px;
  }
  .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 h1 {
    font-size: 2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
  }
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-fishing-games .content-section {
    padding: 40px 0;
  }
  .page-fishing-games .features-grid, .page-fishing-games .game-cards-grid, .page-fishing-games .promo-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .feature-item, .page-fishing-games .game-card, .page-fishing-games .promo-card {
    margin: 0 auto;
    max-width: 400px;
  }
  .page-fishing-games .guide-section ol, .page-fishing-games .guide-section ul {
    padding-left: 15px;
  }
  .page-fishing-games .security-support-section li {
    padding-left: 25px;
  }
  .page-fishing-games .faq-question {
    flex-direction: row;
    align-items: center;
    padding: 12px;
  }
  .page-fishing-games .faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1em;
    flex-grow: 1;
    padding-right: 10px; /* Space for toggle */
  }
  .page-fishing-games .faq-toggle {
    flex-shrink: 0;
  }
  .page-fishing-games .faq-answer {
    padding: 0 12px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.95em;
  }
  .page-fishing-games .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }
  .page-fishing-games .feature-item img {
    width: 80px;
    height: 80px;
  }
  .page-fishing-games .game-card h3, .page-fishing-games .promo-card h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .game-card p, .page-fishing-games .promo-card p {
    font-size: 0.9em;
  }
  .page-fishing-games .guide-section p, .page-fishing-games .guide-section li, .page-fishing-games .security-support-section li {
    font-size: 1em;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1em;
  }
}