/* style/blog-i9bet121-fishing-game-guide-tips.css */
:root {
  --i9bet121-primary-color: #017439;
  --i9bet121-secondary-color: #FFFFFF;
  --i9bet121-register-login-color: #C30808;
  --i9bet121-register-login-font-color: #FFFF00;
  --i9bet121-background-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
}

.page-blog-i9bet121-fishing-game-guide-tips {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Body background is light, so use dark text */
  background-color: var(--i9bet121-background-color);
}

.page-blog-i9bet121-fishing-game-guide-tips__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: var(--i9bet121-background-color);
  position: relative;
  overflow: hidden;
}

.page-blog-i9bet121-fishing-game-guide-tips__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

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

.page-blog-i9bet121-fishing-game-guide-tips__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  background-color: rgba(255, 255, 255, 0.85); /* Slightly translucent background for text on image */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-i9bet121-fishing-game-guide-tips__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--i9bet121-primary-color);
  margin-bottom: 15px;
  font-size: clamp(2em, 4vw, 3.5em);
}

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

.page-blog-i9bet121-fishing-game-guide-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-blog-i9bet121-fishing-game-guide-tips__btn-primary,
.page-blog-i9bet121-fishing-game-guide-tips__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-i9bet121-fishing-game-guide-tips__btn-primary {
  background-color: var(--i9bet121-register-login-color); /* #C30808 */
  color: var(--i9bet121-register-login-font-color); /* #FFFF00 */
  border: 2px solid var(--i9bet121-register-login-color);
}

.page-blog-i9bet121-fishing-game-guide-tips__btn-primary:hover {
  background-color: #a30707;
  border-color: #a30707;
}

.page-blog-i9bet121-fishing-game-guide-tips__btn-secondary {
  background-color: var(--i9bet121-secondary-color); /* #FFFFFF */
  color: var(--i9bet121-primary-color); /* #017439 */
  border: 2px solid var(--i9bet121-primary-color);
}

.page-blog-i9bet121-fishing-game-guide-tips__btn-secondary:hover {
  background-color: var(--i9bet121-primary-color);
  color: var(--i9bet121-secondary-color);
}

.page-blog-i9bet121-fishing-game-guide-tips__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
}

.page-blog-i9bet121-fishing-game-guide-tips__heading {
  font-size: 2em;
  color: var(--i9bet121-primary-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-i9bet121-fishing-game-guide-tips__sub-heading {
  font-size: 1.4em;
  color: var(--i9bet121-primary-color);
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-blog-i9bet121-fishing-game-guide-tips p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.page-blog-i9bet121-fishing-game-guide-tips__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-blog-i9bet121-fishing-game-guide-tips__list,
.page-blog-i9bet121-fishing-game-guide-tips__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-blog-i9bet121-fishing-game-guide-tips__ordered-list {
  list-style-type: decimal;
}

.page-blog-i9bet121-fishing-game-guide-tips__list-item {
  margin-bottom: 10px;
}

.page-blog-i9bet121-fishing-game-guide-tips__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-i9bet121-fishing-game-guide-tips__grid-item {
  background-color: var(--i9bet121-secondary-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-i9bet121-fishing-game-guide-tips__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.page-blog-i9bet121-fishing-game-guide-tips__grid-item p {
  font-size: 0.95em;
  line-height: 1.5;
  color: var(--text-dark);
}

.page-blog-i9bet121-fishing-game-guide-tips__faq-list {
  margin-top: 30px;
}

.page-blog-i9bet121-fishing-game-guide-tips__faq-item {
  background-color: var(--i9bet121-secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-blog-i9bet121-fishing-game-guide-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  background-color: #f9f9f9;
  color: var(--i9bet121-primary-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-i9bet121-fishing-game-guide-tips__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-i9bet121-fishing-game-guide-tips__faq-question:hover {
  background-color: #f0f0f0;
}

.page-blog-i9bet121-fishing-game-guide-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--i9bet121-primary-color);
}

.page-blog-i9bet121-fishing-game-guide-tips__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-blog-i9bet121-fishing-game-guide-tips__faq-item[open] .page-blog-i9bet121-fishing-game-guide-tips__faq-question {
  background-color: #f0f0f0;
}

.page-blog-i9bet121-fishing-game-guide-tips__cta-section {
  background-color: var(--i9bet121-primary-color); /* #017439 */
  color: var(--text-light); /* White text on dark background */
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.page-blog-i9bet121-fishing-game-guide-tips__cta-section .page-blog-i9bet121-fishing-game-guide-tips__heading {
  color: var(--text-light);
}

.page-blog-i9bet121-fishing-game-guide-tips__cta-section .page-blog-i9bet121-fishing-game-guide-tips__description {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-i9bet121-fishing-game-guide-tips__text-link {
  color: var(--i9bet121-register-login-font-color); /* #FFFF00 */
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-i9bet121-fishing-game-guide-tips__text-link:hover {
  color: #ffcc00;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-i9bet121-fishing-game-guide-tips__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-i9bet121-fishing-game-guide-tips__heading {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-blog-i9bet121-fishing-game-guide-tips__hero-content {
    padding: 15px;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-i9bet121-fishing-game-guide-tips__description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__btn-primary,
  .page-blog-i9bet121-fishing-game-guide-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__section {
    padding: 25px 15px;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__heading {
    font-size: 1.6em;
    margin-bottom: 20px;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__sub-heading {
    font-size: 1.2em;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__grid-item {
    padding: 20px;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__card-image {
    height: 180px;
  }
  .page-blog-i9bet121-fishing-game-guide-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__hero-image-wrapper,
  .page-blog-i9bet121-fishing-game-guide-tips__section,
  .page-blog-i9bet121-fishing-game-guide-tips__grid-item,
  .page-blog-i9bet121-fishing-game-guide-tips__faq-item,
  .page-blog-i9bet121-fishing-game-guide-tips__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-i9bet121-fishing-game-guide-tips__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-blog-i9bet121-fishing-game-guide-tips__heading {
    font-size: 1.4em;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__sub-heading {
    font-size: 1.1em;
  }
  .page-blog-i9bet121-fishing-game-guide-tips__card-image {
    height: 150px;
  }
}