/* style/fishing-games.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Deep Black */
  --accent-color: #CC0000; /* Red */
  --text-light: #F0F0F0;
  --text-dark: #1A1A1A;
  --background-dark: #1A1A1A;
  --background-light: #F9F9F9;
  --border-color: #333333;
}

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

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

.page-fishing-games .section-title {
  font-size: 2.8em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.1em;
}

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

/* 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, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.9));
}

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

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

.page-fishing-games .hero-title {
  font-size: 4em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
}

.page-fishing-games .hero-description {
  font-size: 1.4em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

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

/* Section Intro */
.page-fishing-games .section-intro {
  padding: 80px 0;
  background-color: var(--background-dark);
}

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

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

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

.page-fishing-games .intro-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-fishing-games .game-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-fishing-games .game-card h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  padding: 20px 20px 10px;
}

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

.page-fishing-games .game-card h3 a:hover {
  color: #FFC107;
}

.page-fishing-games .game-card p {
  color: var(--text-light);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games .btn-play {
  display: inline-block;
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-fishing-games .btn-play:hover {
  background-color: #E60000;
}

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

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

.page-fishing-games .section-guide li {
  background-color: #2a2a2a;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--primary-color);
}

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

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

.page-fishing-games .btn-guide {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-fishing-games .btn-guide:hover {
  background-color: #FFC107;
}

/* Section Strategy */
.page-fishing-games .section-strategy {
  padding: 80px 0;
  background-color: #1f1f1f;
}

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

.page-fishing-games .strategy-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .strategy-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

/* Section Promotions */
.page-fishing-games .section-promotions {
  padding: 80px 0;
  background-color: var(--background-dark);
}

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

.page-fishing-games .promo-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-fishing-games .promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--accent-color);
}

.page-fishing-games .promo-card h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  padding: 20px 20px 10px;
}

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

.page-fishing-games .promo-card h3 a:hover {
  color: #FFC107;
}

.page-fishing-games .promo-card p {
  color: var(--text-light);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games .btn-promo {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-fishing-games .btn-promo:hover {
  background-color: #FFC107;
}

/* Section Safety */
.page-fishing-games .section-safety {
  padding: 80px 0;
  background-color: #1f1f1f;
}

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

.page-fishing-games .section-safety li {
  background-color: #2a2a2a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--accent-color);
}

.page-fishing-games .section-safety li strong {
  color: var(--primary-color);
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-fishing-games .section-safety li p {
  color: var(--text-light);
  font-size: 1em;
  margin-bottom: 0;
}

.page-fishing-games .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.4);
}

.page-fishing-games .btn-contact:hover {
  background-color: #E60000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(204, 0, 0, 0.6);
}

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

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

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

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

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

.page-fishing-games .faq-question h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin: 0;
}

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #1f1f1f;
  color: var(--text-light);
}

.page-fishing-games .faq-answer p {
  padding: 10px 0;
  margin-bottom: 0;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
  border-top: 1px solid #333333;
}

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

/* Section CTA Bottom */
.page-fishing-games .section-cta-bottom {
  padding: 100px 20px;
  background: linear-gradient(45deg, var(--secondary-color), #333333);
  text-align: center;
}

.page-fishing-games .cta-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.page-fishing-games .cta-description {
  font-size: 1.5em;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-fishing-games .cta-button-large {
  display: inline-block;
  padding: 25px 60px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 10px;
  font-size: 2em;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  text-transform: uppercase;
}

.page-fishing-games .cta-button-large:hover {
  background: #FFC107;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games .hero-title {
    font-size: 3.5em;
  }
  .page-fishing-games .hero-description {
    font-size: 1.2em;
  }
  .page-fishing-games .section-title {
    font-size: 2.2em;
  }
  .page-fishing-games .cta-button-large {
    font-size: 1.8em;
    padding: 20px 50px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games .hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games .hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 15px 35px;
    font-size: 1.4em;
  }
  .page-fishing-games .section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-fishing-games .intro-grid, .page-fishing-games .game-grid, .page-fishing-games .promo-grid, .page-fishing-games .strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .section-guide li h3 {
    font-size: 1.8em;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 1.8em;
  }
  .page-fishing-games .cta-title {
    font-size: 2.5em;
  }
  .page-fishing-games .cta-description {
    font-size: 1.2em;
  }
  .page-fishing-games .cta-button-large {
    font-size: 1.6em;
    padding: 18px 40px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games .hero-description {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.2em;
  }
  .page-fishing-games .section-title {
    font-size: 1.8em;
  }
  .page-fishing-games .section-guide li h3 {
    font-size: 1.5em;
  }
  .page-fishing-games .cta-title {
    font-size: 2em;
  }
  .page-fishing-games .cta-description {
    font-size: 1em;
  }
  .page-fishing-games .cta-button-large {
    font-size: 1.4em;
    padding: 15px 30px;
  }
  .page-fishing-games .faq-question {
    padding: 15px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
}