/* style/fishing-games.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #0a192f;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

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

/* 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(--primary-color), var(--background-dark)); /* Deep blue to dark background */
  color: var(--text-color-light);
  overflow: hidden;
}

.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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px var(--shadow-color);
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

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

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

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

.page-fishing-games .cta-button:hover, .page-fishing-games .cta-button-bottom:hover {
  background: #e6b000; /* Slightly darker secondary color */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

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

.page-fishing-games ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-fishing-games ol {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-fishing-games li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

/* Deposit Methods Overview */
.page-fishing-games .deposit-methods-overview {
  text-align: center;
  margin-top: 40px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.page-fishing-games .deposit-methods-overview img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games .deposit-methods-overview h3 {
  color: var(--background-dark);
  font-size: 2em;
}

.page-fishing-games .deposit-step-by-step {
  margin-top: 50px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.page-fishing-games .deposit-step-by-step ol {
  list-style-type: none;
  padding: 0;
}

.page-fishing-games .deposit-step-by-step ol li {
  background-color: var(--background-light);
  border-left: 5px solid var(--primary-color);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
}

.page-fishing-games .deposit-step-by-step ol li strong {
  color: var(--primary-color);
  font-size: 1.2em;
}

.page-fishing-games .deposit-step-by-step .note {
  background-color: #ffeeba;
  color: #856404;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ffc107;
  margin-top: 30px;
  font-weight: bold;
}

/* Important Notes Section */
.page-fishing-games .section-important-notes ul {
  list-style: none;
  padding: 0;
}

.page-fishing-games .section-important-notes ul li {
  background-color: #fff;
  border-left: 4px solid var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.page-fishing-games .section-important-notes ul li strong {
  color: var(--primary-color);
}

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

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

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

.page-fishing-games .strategy-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 0;
}

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

.page-fishing-games .section-strategy img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px var(--shadow-color);
}

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

.page-fishing-games .promo-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
  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-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-fishing-games .promo-card p {
  font-size: 1em;
  margin-bottom: 20px;
}

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

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

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

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

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

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

.page-fishing-games .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

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

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

.page-fishing-games .faq-toggle {
  font-size: 1.8em;
  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.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

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

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

/* Conclusion Section */
.page-fishing-games .section-conclusion {
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 80px 20px;
  border-radius: 12px;
  margin-top: 50px;
}

.page-fishing-games .section-conclusion h2 {
  color: var(--secondary-color);
  font-size: 2.8em;
  margin-bottom: 30px;
}

.page-fishing-games .section-conclusion h2::after {
  background-color: var(--text-color-light);
}

.page-fishing-games .section-conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games .hero-content h1 {
    font-size: 2.8em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-section {
    padding: 40px 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, .page-fishing-games .cta-button-bottom {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
  }
  .page-fishing-games .deposit-methods-overview, .page-fishing-games .deposit-step-by-step, .page-fishing-games .strategy-item, .page-fishing-games .promo-card {
    padding: 20px;
  }
  .page-fishing-games .strategy-grid, .page-fishing-games .promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 1.5em;
  }
  .page-fishing-games .faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games .section-conclusion {
    padding: 60px 15px;
  }
  .page-fishing-games .section-conclusion h2 {
    font-size: 2em;
  }
  .page-fishing-games .section-conclusion p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-content h1 {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.95em;
  }
  .page-fishing-games .cta-button, .page-fishing-games .cta-button-bottom {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .deposit-step-by-step ol li {
    font-size: 1em;
    padding: 15px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 1.3em;
  }
}