/* style/fishing-games.css */
:root {
  --primary-color: #E44D26;
  --secondary-color: #333333;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-light: #f8f8f8;
  --background-dark: #2a2a2a;
  --border-color: #e0e0e0;
}

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

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

.page-fishing-games__section-title {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-fishing-games__text-block {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-fishing-games__cta-button--primary:hover {
  background: #c74020;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 15px;
}

/* Hero Section */
.page-fishing-games__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff6f40 100%);
  color: var(--text-color-light);
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-fishing-games__main-title {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.page-fishing-games__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-fishing-games__feature-description {
  font-size: 16px;
  color: #666;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-fishing-games__step-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-fishing-games__step-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__step-item a:hover {
  text-decoration: underline;
}

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

.page-fishing-games__tip-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-fishing-games__tip-item {
  background-color: #ffffff;
  border-left: 5px solid var(--primary-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.page-fishing-games__tip-item:hover {
  transform: translateY(-3px);
}

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

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

/* Game Types Section */
.page-fishing-games__game-types-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-fishing-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-fishing-games__game-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 16px;
  color: #666;
}

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

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

.page-fishing-games__promo-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-fishing-games__promo-item p {
  font-size: 17px;
  color: #555;
}

/* Mobile Experience Section */
.page-fishing-games__mobile-experience-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-fishing-games__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-fishing-games__mobile-image {
  width: 50%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__mobile-text {
  width: 50%;
}

.page-fishing-games__mobile-text p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #555;
}

.page-fishing-games__mobile-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__mobile-text a:hover {
  text-decoration: underline;
}

.page-fishing-games__cta-buttons--mobile {
  justify-content: flex-start;
  margin-top: 20px;
}

/* Support Section */
.page-fishing-games__support-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-fishing-games__support-options {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__support-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-fishing-games__support-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games__main-title {
    font-size: 44px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__mobile-image,
  .page-fishing-games__mobile-text {
    width: 100%;
  }
  .page-fishing-games__cta-buttons--mobile {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

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

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

  .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0;
  }

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

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

  .page-fishing-games__text-block {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-fishing-games__features-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__mobile-experience-section,
  .page-fishing-games__support-section {
    padding: 60px 0;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__tip-item,
  .page-fishing-games__support-item {
    padding: 20px;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__game-image,
  .page-fishing-games__mobile-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__mobile-content {
    padding: 0;
  }

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

@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 {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* Ensure all images and video containers handle overflow on mobile */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__hero-image-wrapper,
.page-fishing-games__features-grid,
.page-fishing-games__game-grid,
.page-fishing-games__mobile-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__mobile-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}