/* style/fishing-games.css */

/* Base styles and variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #0a0a0a;
  --button-login: #EA7C07;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Ensure consistency if section backgrounds are not full width */
}

/* Sections */
.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-fishing-games__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Added for general container padding */
  box-sizing: border-box;
}

.page-fishing-games__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: clamp(1.1em, 2vw, 1.4em);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Why Choose Section */
.page-fishing-games__why-choose .page-fishing-games__section-title,
.page-fishing-games__why-choose .page-fishing-games__section-description {
  color: var(--text-dark);
}

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

.page-fishing-games__feature-item {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-fishing-games__feature-text {
  font-size: 1em;
  color: var(--text-dark);
}

.page-fishing-games__cta-center {
  margin-top: 50px;
}

/* How to Play Section */
.page-fishing-games__how-to-play .page-fishing-games__section-title,
.page-fishing-games__how-to-play .page-fishing-games__section-description {
  color: var(--text-light);
}

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

.page-fishing-games__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  padding-top: 60px;
}

.page-fishing-games__step-number {
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
}

.page-fishing-games__step-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-fishing-games__step-text {
  font-size: 1em;
}

/* Tips & Strategies Section */
.page-fishing-games__tips-strategies .page-fishing-games__section-title,
.page-fishing-games__tips-strategies .page-fishing-games__section-description {
  color: var(--text-dark);
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-fishing-games__tip-item {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
}

.page-fishing-games__tip-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-fishing-games__tip-text {
  font-size: 1em;
}

.page-fishing-games__strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions Section */
.page-fishing-games__promotions .page-fishing-games__section-title,
.page-fishing-games__promotions .page-fishing-games__section-description {
  color: var(--text-light);
}

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

.page-fishing-games__promotion-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.page-fishing-games__promotion-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__promotion-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-fishing-games__promotion-text {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-fishing-games__btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games__btn-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Mobile App Section */
.page-fishing-games__mobile-app .page-fishing-games__section-title,
.page-fishing-games__mobile-app .page-fishing-games__section-description {
  color: var(--text-dark);
}

.page-fishing-games__app-download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.page-fishing-games__app-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-fishing-games__app-subtitle {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-fishing-games__app-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-fishing-games__download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-fishing-games__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-fishing-games__app-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Security & Support Section */
.page-fishing-games__security-support .page-fishing-games__section-title,
.page-fishing-games__security-support .page-fishing-games__section-description {
  color: var(--text-light);
}

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

.page-fishing-games__info-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games__info-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-fishing-games__info-text {
  font-size: 1em;
}

/* FAQ Section */
.page-fishing-games__faq .page-fishing-games__section-title,
.page-fishing-games__faq .page-fishing-games__section-description {
  color: var(--text-dark);
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
  list-style: none; /* Remove default marker for details summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--text-dark);
}

.page-fishing-games__faq-answer {
  padding: 20px 30px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-top: 1px solid #f0f0f0;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: none;
}

/* Conclusion Section */
.page-fishing-games__conclusion .page-fishing-games__section-title,
.page-fishing-games__conclusion .page-fishing-games__section-description {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    min-height: 500px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2em, 4.5vw, 3.5em);
  }
  .page-fishing-games__section {
    padding: 50px 15px;
  }
  .page-fishing-games__app-download-content {
    flex-direction: column;
  }
  .page-fishing-games__app-info,
  .page-fishing-games__app-image-wrapper {
    min-width: unset;
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 15px;
  }
  .page-fishing-games__hero-section {
    min-height: 400px;
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(1em, 2.5vw, 1.2em);
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.8em, 5vw, 2.2em);
  }
  .page-fishing-games__section-description {
    font-size: 1em;
  }
  .page-fishing-games__feature-item,
  .page-fishing-games__step-item,
  .page-fishing-games__promotion-card,
  .page-fishing-games__info-item {
    padding: 20px;
  }
  .page-fishing-games__step-number {
    font-size: 2em;
    top: 10px;
    left: 20px;
  }
  .page-fishing-games__step-item {
    padding-top: 50px;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__app-download-content,
  .page-fishing-games__app-info,
  .page-fishing-games__app-image-wrapper,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__download-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-fishing-games__download-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    min-height: 350px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(0.9em, 3vw, 1em);
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 0.9em !important;
    padding: 10px 15px !important;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.5em, 6vw, 1.8em);
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__step-title,
  .page-fishing-games__promotion-title,
  .page-fishing-games__app-subtitle,
  .page-fishing-games__info-title {
    font-size: 1.2em;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 1.2em;
  }
}