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

.page-blog-fishing-game-strategy {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--bg-color); /* Content background, body background from shared.css */
}

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

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

.page-blog-fishing-game-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width for desktop */
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-blog-fishing-game-strategy__hero-content-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-fishing-game-strategy__main-title {
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-blog-fishing-game-strategy__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-fishing-game-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-fishing-game-strategy__btn-primary,
.page-blog-fishing-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

.page-blog-fishing-game-strategy__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-fishing-game-strategy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-fishing-game-strategy__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

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

/* Content Sections */
.page-blog-fishing-game-strategy__content-section {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.page-blog-fishing-game-strategy__dark-section {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-blog-fishing-game-strategy__section-title {
  font-size: 2.2em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-fishing-game-strategy__paragraph {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-blog-fishing-game-strategy__paragraph a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-blog-fishing-game-strategy__paragraph a:hover {
  color: var(--primary-color);
}

.page-blog-fishing-game-strategy__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

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

.page-blog-fishing-game-strategy__content-image {
  flex: 1;
  min-width: 200px; /* Minimum size requirement */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: 100%; /* HTML width/height attributes will be used for display size */
  height: auto;
  display: block;
}

.page-blog-fishing-game-strategy__text-content {
  flex: 1;
}

.page-blog-fishing-game-strategy__sub-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-blog-fishing-game-strategy__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-fishing-game-strategy__card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.page-blog-fishing-game-strategy__card-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-fishing-game-strategy__list {
  list-style: none;
  padding-left: 0;
}

.page-blog-fishing-game-strategy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-main);
}

.page-blog-fishing-game-strategy__list-item::before {
  content: '✦'; /* Star icon */
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 0;
}

/* FAQ Section */
.page-blog-fishing-game-strategy__faq-list {
  margin-top: 40px;
}

.page-blog-fishing-game-strategy__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-fishing-game-strategy__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--gold-color);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
}

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

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

.page-blog-fishing-game-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-fishing-game-strategy__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-fishing-game-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-fishing-game-strategy__faq-answer p {
  margin-bottom: 0;
}

/* CTA Section */
.page-blog-fishing-game-strategy__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--deep-green);
  border-top: 1px solid var(--divider-color);
}

.page-blog-fishing-game-strategy__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-fishing-game-strategy__image-text-block {
    flex-direction: column;
    text-align: center;
  }

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

  .page-blog-fishing-game-strategy__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-fishing-game-strategy__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-blog-fishing-game-strategy__section-title {
    font-size: 2em;
  }

  .page-blog-fishing-game-strategy__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-game-strategy__hero-section,
  .page-blog-fishing-game-strategy__content-section,
  .page-blog-fishing-game-strategy__cta-section {
    padding: 40px 0;
  }

  .page-blog-fishing-game-strategy__container {
    padding: 0 15px;
  }

  .page-blog-fishing-game-strategy__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

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

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

  .page-blog-fishing-game-strategy__btn-primary,
  .page-blog-fishing-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-fishing-game-strategy__card-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-fishing-game-strategy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-fishing-game-strategy__image-text-block {
    gap: 20px;
  }

  /* Ensure all image containers are responsive */
  .page-blog-fishing-game-strategy__hero-image-wrapper,
  .page-blog-fishing-game-strategy__image-text-block,
  .page-blog-fishing-game-strategy__card,
  .page-blog-fishing-game-strategy__faq-item,
  .page-blog-fishing-game-strategy__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure all video containers are responsive (if any) */
  .page-blog-fishing-game-strategy video,
  .page-blog-fishing-game-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-fishing-game-strategy__video-section,
  .page-blog-fishing-game-strategy__video-container,
  .page-blog-fishing-game-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-fishing-game-strategy__video-section {
    padding-top: 10px !important;
  }
}