/* style/fishing-games.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #B22222; /* Firebrick */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0d0d0d;
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.08);
  --card-bg-light: #ffffff;
  --border-color: #333333;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for the page, against dark body bg */
  background-color: var(--bg-dark); /* Inherited from body, but good to define */
  padding-top: 120px; /* Space for fixed header on desktop */
}

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
  overflow: hidden;
}

.page-fishing-games__main-title {
  font-size: 52px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-fishing-games__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-dark);
}

.page-fishing-games__cta-button--primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  color: var(--text-dark);
}

.page-fishing-games__why-choose-section .page-fishing-games__section-title {
  color: var(--secondary-color);
}

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

.page-fishing-games__feature-item {
  background: var(--card-bg-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
}

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

.page-fishing-games__step-item {
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--primary-color);
  color: var(--text-dark);
  font-size: 32px;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__step-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__step-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 25px;
}

.page-fishing-games__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-fishing-games__btn-primary:hover {
  background: #a11d1d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Tips Section */
.page-fishing-games__tips-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  color: var(--text-dark);
}

.page-fishing-games__tips-section .page-fishing-games__section-title {
  color: var(--primary-color);
}

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

.page-fishing-games__tip-item {
  background: var(--card-bg-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__tip-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games__tip-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games__tip-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-fishing-games__promotions-description {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-fishing-games__promo-list li {
  background: var(--card-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 17px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__promo-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* App Download Section */
.page-fishing-games__app-download-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  color: var(--text-dark);
  text-align: center;
}

.page-fishing-games__app-download-section .page-fishing-games__section-title {
  color: var(--secondary-color);
}

.page-fishing-games__app-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-fishing-games__app-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.page-fishing-games__app-button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  color: var(--text-light);
}

.page-fishing-games__app-button--ios {
  background: #000000;
}

.page-fishing-games__app-button--ios:hover {
  background: #333333;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__app-button--android {
  background: #3DDC84;
  color: var(--text-dark);
}

.page-fishing-games__app-button--android:hover {
  background: #33be73;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__app-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: none; /* Ensure no color filters */
}

.page-fishing-games__app-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__conclusion-text {
  font-size: 18px;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 44px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    padding-top: 100px !important; /* Adjust for mobile fixed header */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__hero-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__app-download-section,
  .page-fishing-games__conclusion-section {
    padding: 60px 0;
  }

  .page-fishing-games__main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__step-item,
  .page-fishing-games__tip-item {
    padding: 25px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__step-title,
  .page-fishing-games__tip-title {
    font-size: 20px;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__tip-image {
    max-width: 180px;
  }

  .page-fishing-games__promotions-description,
  .page-fishing-games__app-description,
  .page-fishing-games__conclusion-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-fishing-games__promo-list li {
    font-size: 15px;
    padding: 15px;
    flex-direction: row;
    align-items: flex-start;
  }

  .page-fishing-games__promo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-top: 2px;
  }

  .page-fishing-games__app-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .page-fishing-games__app-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__app-image {
    max-width: 300px;
  }
  
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__hero-image,
  .page-fishing-games__app-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0;
  }
  
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 30px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__cta-button {
    font-size: 15px !important;
    padding: 10px 20px !important;
  }
  .page-fishing-games__hero-description,
  .page-fishing-games__promotions-description,
  .page-fishing-games__app-description,
  .page-fishing-games__conclusion-text {
    font-size: 15px;
  }
  .page-fishing-games__promo-list li {
    font-size: 14px;
  }
  .page-fishing-games__app-button {
    font-size: 15px !important;
    padding: 10px 20px !important;
  }
}