/* style/blog-fishing-game-strategy.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --background-color: #FFFFFF;
  --register-login-font-color: #FFFF00;
  --text-color-light-bg: #333333;
  --text-color-dark-bg: #FFFFFF;
}

.page-blog-fishing-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-light-bg); /* Default text color for light body background */
  background-color: var(--background-color);
}

/* Main Article Hero Section */
.page-blog-fishing-game-strategy__hero-article-section {
  padding-top: 10px; /* Small top padding, header offset handled by body */
  padding-bottom: 40px;
  text-align: center;
  background-color: var(--background-color);
}

.page-blog-fishing-game-strategy__hero-article-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-blog-fishing-game-strategy__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-fishing-game-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-fishing-game-strategy__intro-text {
  font-size: 1.15rem;
  color: #555555;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fishing-game-strategy__meta-info {
  font-size: 0.9rem;
  color: #888888;
  margin-top: -10px;
  margin-bottom: 30px;
}

/* Content Sections */
.page-blog-fishing-game-strategy__content-section {
  padding: 60px 0;
}

.page-blog-fishing-game-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-fishing-game-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-fishing-game-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-blog-fishing-game-strategy__content-section p {
  margin-bottom: 1em;
  font-size: 1rem;
}

.page-blog-fishing-game-strategy__content-section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1em;
}

.page-blog-fishing-game-strategy__content-section li {
  margin-bottom: 0.5em;
  font-size: 1rem;
}

.page-blog-fishing-game-strategy__text-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.page-blog-fishing-game-strategy__text-link:hover {
  color: darken(var(--primary-color), 10%);
}

/* Image with content block */
.page-blog-fishing-game-strategy__image-content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-blog-fishing-game-strategy__image-content-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-fishing-game-strategy__image-content-block img {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%; /* Ensures it respects flex container */
  height: auto;
  max-width: 100%;
  display: block;
}

.page-blog-fishing-game-strategy__image-content-block .page-blog-fishing-game-strategy__text-block {
  flex: 1.5;
  min-width: 300px;
}

.page-blog-fishing-game-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Color Schemes for Sections */
.page-blog-fishing-game-strategy__light-bg {
  background-color: var(--background-color);
  color: var(--text-color-light-bg);
}

.page-blog-fishing-game-strategy__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-blog-fishing-game-strategy__dark-bg .page-blog-fishing-game-strategy__section-title,
.page-blog-fishing-game-strategy__dark-bg .page-blog-fishing-game-strategy__sub-title {
  color: var(--text-color-dark-bg);
}

.page-blog-fishing-game-strategy__dark-bg .page-blog-fishing-game-strategy__section-title::after {
  background: var(--text-color-dark-bg);
}

.page-blog-fishing-game-strategy__dark-bg .page-blog-fishing-game-strategy__text-link {
  color: var(--register-login-font-color);
}

.page-blog-fishing-game-strategy__dark-bg .page-blog-fishing-game-strategy__text-link:hover {
  color: var(--secondary-color);
}

/* Call to Action Buttons */
.page-blog-fishing-game-strategy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--register-button-color);
  color: var(--register-login-font-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fishing-game-strategy__cta-button:hover {
  background: darken(var(--register-button-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-game-strategy__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-fishing-game-strategy__btn-primary,
.page-blog-fishing-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  flex-shrink: 0;
}

.page-blog-fishing-game-strategy__btn-primary {
  background: var(--register-button-color);
  color: var(--register-login-font-color);
  border-color: var(--register-button-color);
}

.page-blog-fishing-game-strategy__btn-primary:hover {
  background: darken(var(--register-button-color), 10%);
  border-color: darken(var(--register-button-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-game-strategy__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-blog-fishing-game-strategy__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-fishing-game-strategy__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-blog-fishing-game-strategy__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

details.page-blog-fishing-game-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

details.page-blog-fishing-game-strategy__faq-item summary.page-blog-fishing-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

details.page-blog-fishing-game-strategy__faq-item summary.page-blog-fishing-game-strategy__faq-question:hover {
  background: #f5f5f5;
}

.page-blog-fishing-game-strategy__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-color-light-bg);
}

.page-blog-fishing-game-strategy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-fishing-game-strategy__faq-item .page-blog-fishing-game-strategy__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  color: var(--text-color-light-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-fishing-game-strategy__container {
    padding: 0 30px;
  }
  .page-blog-fishing-game-strategy__hero-article-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-game-strategy__hero-article-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-fishing-game-strategy__container {
    padding: 0 15px;
  }

  .page-blog-fishing-game-strategy__main-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .page-blog-fishing-game-strategy__intro-text {
    font-size: 1rem;
  }

  .page-blog-fishing-game-strategy__content-section {
    padding: 40px 0;
  }

  .page-blog-fishing-game-strategy__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-fishing-game-strategy__sub-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-fishing-game-strategy__image-content-block {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .page-blog-fishing-game-strategy__image-content-block--reverse {
    flex-direction: column;
  }

  .page-blog-fishing-game-strategy__image-content-block img {
    min-width: unset;
  }

  .page-blog-fishing-game-strategy__image-content-block .page-blog-fishing-game-strategy__text-block {
    min-width: unset;
  }

  .page-blog-fishing-game-strategy__cta-button,
  .page-blog-fishing-game-strategy__btn-primary,
  .page-blog-fishing-game-strategy__btn-secondary,
  .page-blog-fishing-game-strategy a[class*="button"],
  .page-blog-fishing-game-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;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-fishing-game-strategy__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-fishing-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-fishing-game-strategy__section,
  .page-blog-fishing-game-strategy__card,
  .page-blog-fishing-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-blog-fishing-game-strategy__faq-item summary.page-blog-fishing-game-strategy__faq-question {
    padding: 15px;
  }
  .page-blog-fishing-game-strategy__faq-qtext {
    font-size: 15px;
  }
  details.page-blog-fishing-game-strategy__faq-item .page-blog-fishing-game-strategy__faq-answer {
    padding: 0 15px 15px;
  }
}