.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1, #0d0d0d);
}

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

.page-fishing-games__dark-bg {
  background-color: var(--dark-bg-1, #0d0d0d);
  color: #f0f0f0;
}

.page-fishing-games__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-fishing-games__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #FFD700; /* Gold color for titles */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__main-title {
  font-size: 52px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.page-fishing-games__description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-fishing-games__cta-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 16px 45px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: #FFD700;
  color: #8B0000;
}

.page-fishing-games__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
  background: #6a0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-content {
  z-index: 1;
  position: relative;
  max-width: 900px;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2, #1a1a1a);
}

.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-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  text-align: left;
  margin: 0;
  color: #e0e0e0;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
  padding: 80px 0;
  background-color: var(--dark-bg-1, #0d0d0d);
}

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

.page-fishing-games__game-card {
  text-align: center;
  padding: 25px;
}

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

.page-fishing-games__game-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-fishing-games__game-description {
  font-size: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

.page-fishing-games__play-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2, #1a1a1a);
}

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

.page-fishing-games__step-item {
  text-align: left;
  padding: 25px;
}

.page-fishing-games__step-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-fishing-games__step-item p {
  font-size: 16px;
  color: #e0e0e0;
}

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

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

.page-fishing-games__tip-item {
  text-align: left;
  padding: 25px;
}

.page-fishing-games__tip-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-fishing-games__tip-item p {
  font-size: 16px;
  color: #e0e0e0;
}

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

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

.page-fishing-games__promo-card {
  text-align: center;
  padding: 25px;
}

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

.page-fishing-games__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-fishing-games__promo-card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

.page-fishing-games__promo-button {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

/* Mobile Section */
.page-fishing-games__mobile-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1, #0d0d0d);
}

.page-fishing-games__mobile-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-fishing-games__mobile-text {
  flex: 1;
  text-align: left;
}

.page-fishing-games__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__mobile-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Support Section */
.page-fishing-games__support-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2, #1a1a1a);
}

/* Global image reset to prevent small icons */
.page-fishing-games img {
  min-width: 200px;
  min-height: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}

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

  .page-fishing-games__section-title {
    font-size: 32px;
  }

  .page-fishing-games__description {
    font-size: 17px;
  }

  .page-fishing-games__cta-button {
    padding: 14px 35px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games__hero-section {
    padding: 60px 15px !important;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games__main-title {
    font-size: 32px !important;
  }

  .page-fishing-games__section-title {
    font-size: 28px !important;
  }

  .page-fishing-games__description {
    font-size: 16px !important;
    margin-bottom: 30px !important;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
  }

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

  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__tips-grid,
  .page-fishing-games__promotions-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .page-fishing-games__mobile-content {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .page-fishing-games__mobile-text {
    text-align: center !important;
  }

  .page-fishing-games__mobile-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games__card {
    padding: 20px !important;
  }

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

  .page-fishing-games__feature-description,
  .page-fishing-games__game-description,
  .page-fishing-games__step-item p,
  .page-fishing-games__tip-item p,
  .page-fishing-games__promo-card p {
    font-size: 15px !important;
  }

  .page-fishing-games__play-button,
  .page-fishing-games__promo-button {
    width: auto !important;
    max-width: none !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
  }

  .page-fishing-games__cta-center .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
  }
}