/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #F4F7FB;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.15rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__btn-secondary:hover {
  background-color: #e0eaff;
  color: #2F6BFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 1rem;
}

.page-fishing-games__btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-fishing-games__sub-title {
  font-size: 1.8rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.page-fishing-games__text-block a {
  color: #2F6BFF;
  text-decoration: none;
}

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

.page-fishing-games__introduction-section,
.page-fishing-games__guide-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-banner {
  padding: 80px 0;
}

.page-fishing-games__introduction-section {
  background-color: #F4F7FB;
}

.page-fishing-games__image-and-text-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-fishing-games__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.page-fishing-games__feature-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #2F6BFF;
  font-size: 1.2rem;
  top: -2px;
}

.page-fishing-games__dark-section {
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__section-title,
.page-fishing-games__dark-section .page-fishing-games__card-title {
  color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__text-block {
  color: #f0f0f0;
}

.page-fishing-games__dark-section .page-fishing-games__text-block a {
  color: #A5C4FF;
}

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

.page-fishing-games__game-card {
  background-color: #ffffff; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.page-fishing-games__dark-section .page-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__game-card .page-fishing-games__card-description {
  color: #f0f0f0;
}

.page-fishing-games__dark-section .page-fishing-games__game-card .page-fishing-games__card-description a {
  color: #A5C4FF;
}

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

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-fishing-games__game-card .page-fishing-games__card-title {
  color: #000000;
}

.page-fishing-games__dark-section .page-fishing-games__game-card .page-fishing-games__card-title {
  color: #ffffff;
}

.page-fishing-games__card-description {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-fishing-games__step-by-step-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games__guide-item {
  background-color: #ffffff; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__guide-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games__guide-title {
  font-size: 1.4rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-fishing-games__guide-description {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
}

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

.page-fishing-games__strategy-card {
  background-color: #ffffff; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.page-fishing-games__promotions-section .page-fishing-games__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games__promo-card {
  background-color: #ffffff; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.page-fishing-games__promo-card .page-fishing-games__card-image {
  height: 200px;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-fishing-games__faq-item {
  background-color: #ffffff; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  background-color: #F4F7FB;
  border-bottom: 1px solid #D6E2FF;
}

.page-fishing-games__faq-question:hover {
  background-color: #eaf1fa;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid #D6E2FF;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  background-color: #ffffff;
}

.page-fishing-games__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-fishing-games__cta-banner {
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-fishing-games__cta-banner .page-fishing-games__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-fishing-games__cta-banner .page-fishing-games__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-fishing-games__image-and-text-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__text-content {
    text-align: center;
  }

  .page-fishing-games__feature-list {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }

  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .page-fishing-games__sub-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-banner {
    padding: 50px 0;
  }

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

  /* Image responsive */
  .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-image-wrapper,
  .page-fishing-games__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-fishing-games__hero-content, .page-fishing-games__text-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsive */
  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 15px;
  }

  .page-fishing-games__game-card .page-fishing-games__card-image,
  .page-fishing-games__promo-card .page-fishing-games__card-image {
    height: 180px;
  }

  .page-fishing-games__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}