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

/* Custom Colors */
:root {
  --vz99-bg-color: #08160F;
  --vz99-card-bg: #11271B;
  --vz99-text-main: #F2FFF6;
  --vz99-text-secondary: #A7D9B8;
  --vz99-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --vz99-border-color: #2E7A4E;
  --vz99-glow-color: #57E38D;
  --vz99-gold-color: #F2C14E;
  --vz99-divider-color: #1E3A2A;
  --vz99-deep-green: #0A4B2C;
}

.page-blog-fishing-game-tips {
  font-family: 'Arial', sans-serif;
  color: var(--vz99-text-main); /* Default text color for the page */
  background-color: var(--vz99-bg-color); /* Page background color */
}

.page-blog-fishing-game-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--vz99-deep-green);
  overflow: hidden;
}

.page-blog-fishing-game-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-blog-fishing-game-tips__hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  color: var(--vz99-text-main);
}

.page-blog-fishing-game-tips__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: var(--vz99-gold-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-fishing-game-tips__hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--vz99-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fishing-game-tips__btn-primary,
.page-blog-fishing-game-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-fishing-game-tips__btn-primary {
  background: var(--vz99-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
  margin: 10px;
}

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

.page-blog-fishing-game-tips__btn-secondary {
  background: transparent;
  color: var(--vz99-glow-color);
  border: 2px solid var(--vz99-glow-color);
  margin: 10px;
}

.page-blog-fishing-game-tips__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: var(--vz99-text-main);
}

.page-blog-fishing-game-tips__section {
  padding: 60px 20px;
  background-color: var(--vz99-bg-color);
  color: var(--vz99-text-main);
}

.page-blog-fishing-game-tips__introduction {
  background-color: var(--vz99-card-bg);
}

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

.page-blog-fishing-game-tips__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--vz99-gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-fishing-game-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--vz99-glow-color);
  border-radius: 2px;
}

.page-blog-fishing-game-tips__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--vz99-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-fishing-game-tips__tips-section {
  background-color: var(--vz99-bg-color);
}

.page-blog-fishing-game-tips__tip-card {
  background-color: var(--vz99-card-bg);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--vz99-border-color);
  display: flex;
  flex-direction: column;
}

.page-blog-fishing-game-tips__tip-card:last-child {
  margin-bottom: 0;
}

.page-blog-fishing-game-tips__card-title {
  font-size: 1.8rem;
  color: var(--vz99-glow-color);
  padding: 25px;
  background-color: var(--vz99-deep-green);
  text-align: center;
  border-bottom: 1px solid var(--vz99-divider-color);
}

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

.page-blog-fishing-game-tips__card-content {
  padding: 30px;
}

.page-blog-fishing-game-tips__card-subtitle {
  font-size: 1.4rem;
  color: var(--vz99-text-main);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.page-blog-fishing-game-tips__card-subtitle::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--vz99-gold-color);
  font-size: 1.5em;
  line-height: 0.8;
}

.page-blog-fishing-game-tips__why-choose-section {
  background-color: var(--vz99-deep-green);
}

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

.page-blog-fishing-game-tips__feature-item {
  background-color: var(--vz99-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--vz99-border-color);
}

.page-blog-fishing-game-tips__feature-title {
  font-size: 1.5rem;
  color: var(--vz99-glow-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fishing-game-tips__feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--vz99-text-secondary);
}

.page-blog-fishing-game-tips__faq-section {
  background-color: var(--vz99-bg-color);
}

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

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

.page-blog-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--vz99-text-main);
  cursor: pointer;
  background-color: var(--vz99-deep-green);
  border-bottom: 1px solid var(--vz99-divider-color);
  list-style: none; /* For details/summary */
}

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

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

.page-blog-fishing-game-tips__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--vz99-gold-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-fishing-game-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--vz99-text-secondary);
  background-color: var(--vz99-card-bg);
}

.page-blog-fishing-game-tips__cta-section {
  background-color: var(--vz99-deep-green);
  text-align: center;
}

.page-blog-fishing-game-tips__cta-section .page-blog-fishing-game-tips__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--vz99-text-main);
}

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

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-fishing-game-tips {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-blog-fishing-game-tips__hero-content,
  .page-blog-fishing-game-tips__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-fishing-game-tips__main-title {
    font-size: 2rem;
  }

  .page-blog-fishing-game-tips__hero-description {
    font-size: 1rem;
  }

  .page-blog-fishing-game-tips__btn-primary,
  .page-blog-fishing-game-tips__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
    margin: 5px 0;
  }

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

  .page-blog-fishing-game-tips__section {
    padding: 40px 15px;
  }

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

  .page-blog-fishing-game-tips__text-block {
    font-size: 0.95rem;
  }

  .page-blog-fishing-game-tips__tip-card {
    margin-bottom: 30px;
  }

  .page-blog-fishing-game-tips__card-title {
    font-size: 1.5rem;
    padding: 20px;
  }

  .page-blog-fishing-game-tips__card-image {
    height: 250px;
  }

  .page-blog-fishing-game-tips__card-content {
    padding: 20px;
  }

  .page-blog-fishing-game-tips__card-subtitle {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .page-blog-fishing-game-tips__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-fishing-game-tips__feature-item {
    padding: 25px;
  }

  .page-blog-fishing-game-tips__feature-title {
    font-size: 1.3rem;
  }

  .page-blog-fishing-game-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-fishing-game-tips__faq-toggle {
    font-size: 1.5rem;
  }

  .page-blog-fishing-game-tips__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-blog-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-fishing-game-tips__section,
  .page-blog-fishing-game-tips__card,
  .page-blog-fishing-game-tips__container,
  .page-blog-fishing-game-tips__tip-card,
  .page-blog-fishing-game-tips__feature-item,
  .page-blog-fishing-game-tips__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */
    /* padding-right: 15px; */
  }

  .page-blog-fishing-game-tips__hero-image-wrapper {
    max-height: 400px;
  }
  
  .page-blog-fishing-game-tips__video-section { /* If video existed */
    padding-top: 10px !important; 
  }
}

@media (min-width: 769px) {
  .page-blog-fishing-game-tips__tip-card {
    flex-direction: row;
  }
  .page-blog-fishing-game-tips__card-image {
    width: 40%;
    height: auto;
  }
  .page-blog-fishing-game-tips__card-content {
    width: 60%;
  }
  .page-blog-fishing-game-tips__tip-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-blog-fishing-game-tips__tip-card:nth-child(even) .page-blog-fishing-game-tips__card-image {
    order: 2;
  }
  .page-blog-fishing-game-tips__tip-card:nth-child(even) .page-blog-fishing-game-tips__card-content {
    order: 1;
  }
}