/* style/blog-5win-fishing-game-guide.css */

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

.page-blog-5win-fishing-game-guide {
  background-color: var(--page-background-color);
  color: var(--page-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

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

.page-blog-5win-fishing-game-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 40px;
}

.page-blog-5win-fishing-game-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-blog-5win-fishing-game-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-5win-fishing-game-guide__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  background: var(--page-card-bg);
  border-radius: 12px;
  margin-top: -100px; /* Pull up to overlap image slightly for visual effect */
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-border-color);
}

.page-blog-5win-fishing-game-guide__main-title {
  color: var(--page-gold-color);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-5win-fishing-game-guide__hero-description {
  font-size: 1.1rem;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-5win-fishing-game-guide__btn-primary,
.page-blog-5win-fishing-game-guide__btn-secondary,
.page-blog-5win-fishing-game-guide__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

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

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

.page-blog-5win-fishing-game-guide__btn-secondary {
  background: transparent;
  color: var(--page-glow-color);
  border: 2px solid var(--page-glow-color);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.2);
}

.page-blog-5win-fishing-game-guide__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

.page-blog-5win-fishing-game-guide__btn-link {
  background: transparent;
  color: var(--page-glow-color);
  border: 1px solid var(--page-border-color);
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-blog-5win-fishing-game-guide__btn-link:hover {
  background: var(--page-deep-green);
  border-color: var(--page-glow-color);
  color: #ffffff;
}

.page-blog-5win-fishing-game-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-blog-5win-fishing-game-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-5win-fishing-game-guide__text-block {
  font-size: 1.05rem;
  color: var(--page-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-5win-fishing-game-guide__features-grid,
.page-blog-5win-fishing-game-guide__steps-grid,
.page-blog-5win-fishing-game-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-5win-fishing-game-guide__feature-card,
.page-blog-5win-fishing-game-guide__step-card,
.page-blog-5win-fishing-game-guide__promo-card {
  background: var(--page-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--page-border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-5win-fishing-game-guide__feature-icon,
.page-blog-5win-fishing-game-guide__promo-image,
.page-blog-5win-fishing-game-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-border-color);
}

.page-blog-5win-fishing-game-guide__feature-title,
.page-blog-5win-fishing-game-guide__promo-title,
.page-blog-5win-fishing-game-guide__game-title {
  font-size: 1.5rem;
  color: var(--page-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-5win-fishing-game-guide__feature-card p,
.page-blog-5win-fishing-game-guide__promo-card p {
  color: var(--page-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-5win-fishing-game-guide__step-number {
  width: 50px;
  height: 50px;
  background: var(--page-glow-color);
  color: var(--page-deep-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-blog-5win-fishing-game-guide__step-title {
  font-size: 1.4rem;
  color: var(--page-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-5win-fishing-game-guide__step-card p {
  color: var(--page-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-5win-fishing-game-guide__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-5win-fishing-game-guide__game-card {
  background: var(--page-card-bg);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--page-border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-blog-5win-fishing-game-guide__game-card p {
  color: var(--page-text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
}

.page-blog-5win-fishing-game-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-5win-fishing-game-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-5win-fishing-game-guide__strategy-card {
  background: var(--page-card-bg);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--page-border-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.page-blog-5win-fishing-game-guide__strategy-title {
  font-size: 1.3rem;
  color: var(--page-glow-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-5win-fishing-game-guide__strategy-card p {
  color: var(--page-text-secondary);
  font-size: 0.95rem;
}

.page-blog-5win-fishing-game-guide__app-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-blog-5win-fishing-game-guide__app-content {
  flex: 1;
}

.page-blog-5win-fishing-game-guide__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-blog-5win-fishing-game-guide__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--page-border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-5win-fishing-game-guide__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.page-blog-5win-fishing-game-guide__app-benefits li {
  color: var(--page-text-main);
  font-size: 1.05rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-blog-5win-fishing-game-guide__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  background-color: var(--page-glow-color);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.page-blog-5win-fishing-game-guide__icon--mobile {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17 1H7C5.89543 1 5 1.89543 5 3V21C5 22.1046 5.89543 23 7 23H17C18.1046 23 19 22.1046 19 21V3C19 1.89543 18.1046 1 17 1ZM7 3H17V17H7V3ZM12 20C11.4477 20 11 20.4477 11 21C11 21.5523 11.4477 22 12 22C12.5523 22 13 21.5523 13 21C13 20.4477 12.5523 20 12 20Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17 1H7C5.89543 1 5 1.89543 5 3V21C5 22.1046 5.89543 23 7 23H17C18.1046 23 19 22.1046 19 21V3C19 1.89543 18.1046 1 17 1ZM7 3H17V17H7V3ZM12 20C11.4477 20 11 20.4477 11 21C11 21.5523 11.4477 22 12 22C12.5523 22 13 21.5523 13 21C13 20.4477 12.5523 20 12 20Z"/></svg>');
}

.page-blog-5win-fishing-game-guide__icon--secure {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 1C8.13401 1 5 4.13401 5 8V11H4C3.44772 11 3 11.4477 3 12V21C3 21.5523 3.44772 22 4 22H20C20.5523 22 21 21.5523 21 21V12C21 11.4477 20.5523 11 20 11H19V8C19 4.13401 15.866 1 12 1ZM7 8C7 5.23858 9.23858 3 12 3C14.7614 3 17 5.23858 17 8V11H7V8ZM12 13C12.5523 13 13 13.4477 13 14V18C13 18.5523 12.5523 19 12 19C11.4477 19 11 18.5523 11 18V14C11 13.4477 11.4477 13 12 13Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 1C8.13401 1 5 4.13401 5 8V11H4C3.44772 11 3 11.4477 3 12V21C3 21.5523 3.44772 22 4 22H20C20.5523 22 21 21.5523 21 21V12C21 11.4477 20.5523 11 20 11H19V8C19 4.13401 15.866 1 12 1ZM7 8C7 5.23858 9.23858 3 12 3C14.7614 3 17 5.23858 17 8V11H7V8ZM12 13C12.5523 13 13 13.4477 13 14V18C13 18.5523 12.5523 19 12 19C11.4477 19 11 18.5523 11 18V14C11 13.4477 11.4477 13 12 13Z"/></svg>');
}

.page-blog-5win-fishing-game-guide__icon--bonus {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4ZM12 6C11.4477 6 11 6.44772 11 7V11H7C6.44772 11 6 11.4477 6 12C6 12.5523 6.44772 13 7 13H11V17C11 17.5523 11.4477 18 12 18C12.5523 18 13 17.5523 13 17V13H17C17.5523 13 18 12.5523 18 12C18 11.4477 17.5523 11 17 11H13V7C13 6.44772 12.5523 6 12 6Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4ZM12 6C11.4477 6 11 6.44772 11 7V11H7C6.44772 11 6 11.4477 6 12C6 12.5523 6.44772 13 7 13H11V17C11 17.5523 11.4477 18 12 18C12.5523 18 13 17.5523 13 17V13H17C17.5523 13 18 12.5523 18 12C18 11.4477 17.5523 11 17 11H13V7C13 6.44772 12.5523 6 12 6Z"/></svg>');
}

.page-blog-5win-fishing-game-guide__app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-blog-5win-fishing-game-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-5win-fishing-game-guide__faq-item {
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-5win-fishing-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--page-text-main);
  cursor: pointer;
  background: var(--page-deep-green);
  border-bottom: 1px solid var(--page-border-color);
}

.page-blog-5win-fishing-game-guide__faq-item[open] .page-blog-5win-fishing-game-guide__faq-question {
  border-bottom: 1px solid var(--page-border-color);
}

.page-blog-5win-fishing-game-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-5win-fishing-game-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: var(--page-gold-color);
}

.page-blog-5win-fishing-game-guide__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--page-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.page-blog-5win-fishing-game-guide__faq-answer p {
  margin-top: 15px;
}

.page-blog-5win-fishing-game-guide__conclusion .page-blog-5win-fishing-game-guide__text-block {
  margin-bottom: 40px;
}

/* --- Responsive Design --- */

@media (min-width: 769px) {
  .page-blog-5win-fishing-game-guide__app-image-wrapper {
    order: 2; /* Image on right */
  }
  .page-blog-5win-fishing-game-guide__app-content {
    order: 1; /* Content on left */
    text-align: left;
  }
  .page-blog-5win-fishing-game-guide__app-content .page-blog-5win-fishing-game-guide__section-title {
    text-align: left;
  }
  .page-blog-5win-fishing-game-guide__app-content .page-blog-5win-fishing-game-guide__text-block {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .page-blog-5win-fishing-game-guide__app-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .page-blog-5win-fishing-game-guide__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-blog-5win-fishing-game-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
  }
  .page-blog-5win-fishing-game-guide__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  }
  .page-blog-5win-fishing-game-guide__app-flex {
    flex-direction: column;
  }
  .page-blog-5win-fishing-game-guide__app-content {
    text-align: center;
  }
  .page-blog-5win-fishing-game-guide__app-content .page-blog-5win-fishing-game-guide__section-title,
  .page-blog-5win-fishing-game-guide__app-content .page-blog-5win-fishing-game-guide__text-block {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-5win-fishing-game-guide__app-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-blog-5win-fishing-game-guide {
    font-size: 15px;
    line-height: 1.5;
  }
  .page-blog-5win-fishing-game-guide__hero-section {
    padding-top: 10px !important;
    margin-bottom: 20px;
  }
  .page-blog-5win-fishing-game-guide__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    max-width: 95%;
  }
  .page-blog-5win-fishing-game-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-5win-fishing-game-guide__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-blog-5win-fishing-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-5win-fishing-game-guide__btn-primary,
  .page-blog-5win-fishing-game-guide__btn-secondary,
  .page-blog-5win-fishing-game-guide__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-blog-5win-fishing-game-guide__section {
    padding: 40px 0;
  }
  .page-blog-5win-fishing-game-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-blog-5win-fishing-game-guide__text-block {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-blog-5win-fishing-game-guide__features-grid,
  .page-blog-5win-fishing-game-guide__steps-grid,
  .page-blog-5win-fishing-game-guide__promo-grid,
  .page-blog-5win-fishing-game-guide__game-list,
  .page-blog-5win-fishing-game-guide__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-5win-fishing-game-guide__feature-icon,
  .page-blog-5win-fishing-game-guide__promo-image,
  .page-blog-5win-fishing-game-guide__game-image {
    height: 180px;
  }
  .page-blog-5win-fishing-game-guide__app-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-blog-5win-fishing-game-guide__app-image-wrapper {
    order: 1;
  }
  .page-blog-5win-fishing-game-guide__app-content {
    order: 2;
    text-align: center;
  }
  .page-blog-5win-fishing-game-guide__app-content .page-blog-5win-fishing-game-guide__section-title,
  .page-blog-5win-fishing-game-guide__app-content .page-blog-5win-fishing-game-guide__text-block {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-5win-fishing-game-guide__app-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-5win-fishing-game-guide__app-benefits li {
    font-size: 1rem;
    justify-content: center;
  }
  .page-blog-5win-fishing-game-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-5win-fishing-game-guide__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }
  /* Mobile specific image/video/container handling */
  .page-blog-5win-fishing-game-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-5win-fishing-game-guide__section,
  .page-blog-5win-fishing-game-guide__card,
  .page-blog-5win-fishing-game-guide__container,
  .page-blog-5win-fishing-game-guide__hero-image-wrapper,
  .page-blog-5win-fishing-game-guide__app-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-5win-fishing-game-guide__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-5win-fishing-game-guide__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-blog-5win-fishing-game-guide__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-blog-5win-fishing-game-guide__cta-buttons {
    gap: 10px;
  }
}