/* style/fishing-games-strategy.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */

:root {
  --gwin-primary-color: #11A84E;
  --gwin-secondary-color: #22C768;
  --gwin-card-bg: #11271B;
  --gwin-background-color: #08160F;
  --gwin-text-main: #F2FFF6;
  --gwin-text-secondary: #A7D9B8;
  --gwin-border-color: #2E7A4E;
  --gwin-glow-color: #57E38D;
  --gwin-gold-color: #F2C14E;
  --gwin-divider-color: #1E3A2A;
  --gwin-deep-green: #0A4B2C;
  --gwin-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

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

.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
  background-color: var(--gwin-deep-green);
}

.page-fishing-games-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for aspect ratio */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.page-fishing-games-strategy__hero-content {
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.page-fishing-games-strategy__main-title {
  color: var(--gwin-gold-color);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-fishing-games-strategy__subtitle {
  color: var(--gwin-text-secondary);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.page-fishing-games-strategy__section-title {
  color: var(--gwin-gold-color);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 6px rgba(242, 193, 78, 0.4);
}

.page-fishing-games-strategy__sub-section-title {
  color: var(--gwin-text-main);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-fishing-games-strategy__text-block {
  color: var(--gwin-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-fishing-games-strategy__btn-primary {
  background: var(--gwin-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-strategy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games-strategy__btn-secondary {
  background-color: transparent;
  color: var(--gwin-glow-color);
  border: 2px solid var(--gwin-glow-color);
  margin-left: 20px;
}

.page-fishing-games-strategy__btn-secondary:hover {
  background-color: var(--gwin-glow-color);
  color: var(--gwin-background-color);
}

.page-fishing-games-strategy__intro-section,
.page-fishing-games-strategy__strategy-section,
.page-fishing-games-strategy__advanced-strategy-section,
.page-fishing-games-strategy__promotions-section,
.page-fishing-games-strategy__register-download-section,
.page-fishing-games-strategy__faq-section,
.page-fishing-games-strategy__conclusion-section {
  padding: 60px 0;
}

.page-fishing-games-strategy__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

.page-fishing-games-strategy__feature-item {
  background-color: var(--gwin-card-bg);
  border: 1px solid var(--gwin-border-color);
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 calc(50% - 15px);
  box-sizing: border-box;
  max-width: calc(50% - 15px);
  text-align: center;
}

.page-fishing-games-strategy__feature-title {
  color: var(--gwin-gold-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-fishing-games-strategy__feature-description {
  color: var(--gwin-text-secondary);
}

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

.page-fishing-games-strategy__strategy-card,
.page-fishing-games-strategy__promo-card,
.page-fishing-games-strategy__step-item {
  background-color: var(--gwin-card-bg);
  border: 1px solid var(--gwin-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games-strategy__card-title,
.page-fishing-games-strategy__step-title {
  color: var(--gwin-text-main);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games-strategy__card-description,
.page-fishing-games-strategy__step-description {
  color: var(--gwin-text-secondary);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games-strategy__strategy-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

.page-fishing-games-strategy__strategy-cards .page-fishing-games-strategy__card {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background: var(--gwin-deep-green);
  border: 1px solid var(--gwin-primary-color);
  padding: 30px;
  text-align: left;
}

.page-fishing-games-strategy__strategy-cards .page-fishing-games-strategy__card-title {
  color: var(--gwin-glow-color);
}

.page-fishing-games-strategy__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-fishing-games-strategy__faq-list {
  margin-top: 30px;
}

.page-fishing-games-strategy__faq-item {
  background-color: var(--gwin-card-bg);
  border: 1px solid var(--gwin-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--gwin-text-main);
  font-weight: bold;
  font-size: 1.15rem;
  list-style: none; /* For details/summary */
}

.page-fishing-games-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gwin-glow-color);
}

.page-fishing-games-strategy__faq-answer {
  padding: 0 25px 20px;
  color: var(--gwin-text-secondary);
  line-height: 1.8;
}

.page-fishing-games-strategy__faq-item[open] .page-fishing-games-strategy__faq-toggle {
  content: '−';
}

.page-fishing-games-strategy__conclusion-section {
  text-align: center;
}

.page-fishing-games-strategy__conclusion-section .page-fishing-games-strategy__btn-primary {
  margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__feature-item,
  .page-fishing-games-strategy__strategy-cards .page-fishing-games-strategy__card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy__container {
    padding: 0 15px;
  }

  .page-fishing-games-strategy__hero-content {
    padding: 0 15px;
  }

  .page-fishing-games-strategy__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-fishing-games-strategy__subtitle {
    font-size: 1rem;
  }

  .page-fishing-games-strategy__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-fishing-games-strategy__sub-section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-fishing-games-strategy__feature-item,
  .page-fishing-games-strategy__strategy-cards .page-fishing-games-strategy__card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy__btn-secondary,
  .page-fishing-games-strategy a[class*="button"],
  .page-fishing-games-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 0 10px 0 !important; /* Remove left margin for secondary button */
  }

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

  .page-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games-strategy__hero-image-wrapper,
  .page-fishing-games-strategy__strategy-card,
  .page-fishing-games-strategy__promo-card,
  .page-fishing-games-strategy__step-item,
  .page-fishing-games-strategy__feature-item,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__hero-section,
  .page-fishing-games-strategy__intro-section,
  .page-fishing-games-strategy__strategy-section,
  .page-fishing-games-strategy__advanced-strategy-section,
  .page-fishing-games-strategy__promotions-section,
  .page-fishing-games-strategy__register-download-section,
  .page-fishing-games-strategy__faq-section,
  .page-fishing-games-strategy__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-strategy__hero-section { padding-left: 0; padding-right: 0; }
  .page-fishing-games-strategy__hero-content { padding-left: 15px; padding-right: 15px; }

  .page-fishing-games-strategy__hero-section {
    padding-top: 10px !important;
  }
}