/* style/fishing-games-tips.css */

/* Base styles */
.page-fishing-games-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background */
  background-color: var(--background-color, #FFFFFF);
}

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

.page-fishing-games-tips__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games-tips__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
  font-weight: bold;
  color: #26A9E0;
}

.page-fishing-games-tips__section-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-fishing-games-tips__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-fishing-games-tips__link {
  color: #26A9E0;
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding */
  color: #ffffff;
  overflow: hidden;
}

.page-fishing-games-tips__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

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

.page-fishing-games-tips__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games-tips__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-fishing-games-tips__intro-text {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-fishing-games-tips__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin: 0 10px 15px;
}

.page-fishing-games-tips__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-fishing-games-tips__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin: 0 10px 15px;
}

.page-fishing-games-tips__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-fishing-games-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-fishing-games-tips__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  border: 1px solid #e0e0e0;
}

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

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

.page-fishing-games-tips__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games-tips__card-text {
  font-size: 16px;
  color: #555555;
}

/* Tip & Strategy Lists */
.page-fishing-games-tips__tip-list,
.page-fishing-games-tips__strategy-list,
.page-fishing-games-tips__mistake-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games-tips__tip-item,
.page-fishing-games-tips__mistake-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-fishing-games-tips__tip-item:last-child,
.page-fishing-games-tips__mistake-item:last-child {
  margin-bottom: 0;
}

.page-fishing-games-tips__tip-title,
.page-fishing-games-tips__mistake-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

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

.page-fishing-games-tips__tip-text,
.page-fishing-games-tips__mistake-text {
  font-size: 17px;
  color: #555555;
  text-align: center;
  max-width: 700px;
}

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

.page-fishing-games-tips__strategy-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games-tips__strategy-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-fishing-games-tips__strategy-text {
  font-size: 16px;
  color: #f0f0f0;
}

/* HF888 Platform Section */
.page-fishing-games-tips__hf888-platform-section {
  color: #ffffff;
}

.page-fishing-games-tips__platform-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-fishing-games-tips__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-tips__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-fishing-games-tips__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #26A9E0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

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

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-fishing-games-tips__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-fishing-games-tips__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

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

.page-fishing-games-tips__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #555555;
  text-align: left;
  border-top: 1px solid #eee;
}

.page-fishing-games-tips__faq-answer p {
  margin-bottom: 10px;
}

.page-fishing-games-tips__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-fishing-games-tips__conclusion-section {
  color: #ffffff;
}

/* Background colors for contrast */
.page-fishing-games-tips__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-tips__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games-tips__section-title {
    font-size: clamp(24px, 4vw, 38px);
  }
  .page-fishing-games-tips__hero-image-wrapper {
    max-height: 400px;
  }
}

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

  .page-fishing-games-tips__section {
    padding: 40px 0;
  }

  .page-fishing-games-tips__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-fishing-games-tips__main-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .page-fishing-games-tips__intro-text {
    font-size: 17px;
  }

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

  .page-fishing-games-tips__feature-grid,
  .page-fishing-games-tips__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-tips__tip-item,
  .page-fishing-games-tips__mistake-item {
    padding: 20px;
  }

  .page-fishing-games-tips__tip-title,
  .page-fishing-games-tips__mistake-title {
    font-size: 22px;
  }

  .page-fishing-games-tips__strategy-title {
    font-size: 20px;
  }

  .page-fishing-games-tips__faq-item summary {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-fishing-games-tips__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }

  /* Mobile image responsiveness */
  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games-tips__section,
  .page-fishing-games-tips__card,
  .page-fishing-games-tips__container,
  .page-fishing-games-tips__hero-section,
  .page-fishing-games-tips__hero-image-wrapper,
  .page-fishing-games-tips__hero-content,
  .page-fishing-games-tips__feature-grid,
  .page-fishing-games-tips__tip-list,
  .page-fishing-games-tips__strategy-list,
  .page-fishing-games-tips__mistake-list,
  .page-fishing-games-tips__hf888-platform-section,
  .page-fishing-games-tips__faq-list,
  .page-fishing-games-tips__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary,
  .page-fishing-games-tips a[class*="button"],
  .page-fishing-games-tips 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-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-tips__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}