/* style/blog-cq9-fishing-games-tips-high-score-secrets.css */
.page-blog-cq9-fishing-games-tips-high-score-secrets {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-color);
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-blog-cq9-fishing-games-tips-high-score-secrets__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__text-block {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__cta-button--center {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 300px;
}

/* Card Styling */
.page-blog-cq9-fishing-games-tips-high-score-secrets__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Feature Grid */
.page-blog-cq9-fishing-games-tips-high-score-secrets__feature-grid,
.page-blog-cq9-fishing-games-tips-high-score-secrets__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__feature-title,
.page-blog-cq9-fishing-games-tips-high-score-secrets__benefit-title {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

/* FAQ Section */
.page-blog-cq9-fishing-games-tips-high-score-secrets__faq-list {
  margin-top: 30px;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__faq-item summary:hover {
  background-color: var(--primary-color);
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: 15px;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__faq-answer {
  padding: 20px 25px;
  background-color: var(--card-bg);
  color: var(--text-secondary);
  font-size: 1rem;
  border-top: none;
}

.page-blog-cq9-fishing-games-tips-high-score-secrets__faq-item[open] summary .page-blog-cq9-fishing-games-tips-high-score-secrets__faq-toggle {
  content: '−';
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-cq9-fishing-games-tips-high-score-secrets__hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .page-blog-cq9-fishing-games-tips-high-score-secrets__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__hero-description {
    font-size: 1rem;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__container {
    padding: 20px 15px;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__text-block {
    font-size: 0.95rem;
  }
  
  /* Mobile image responsiveness */
  .page-blog-cq9-fishing-games-tips-high-score-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__hero-image {
    min-width: unset !important;
    min-height: unset !important;
  }
  
  /* Mobile button responsiveness */
  .page-blog-cq9-fishing-games-tips-high-score-secrets__cta-button,
  .page-blog-cq9-fishing-games-tips-high-score-secrets__btn-primary,
  .page-blog-cq9-fishing-games-tips-high-score-secrets__btn-secondary,
  .page-blog-cq9-fishing-games-tips-high-score-secrets a[class*="button"],
  .page-blog-cq9-fishing-games-tips-high-score-secrets 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 !important;
    padding-right: 15px !important;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__cta-button--center {
    max-width: 100% !important;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__cta-buttons,
  .page-blog-cq9-fishing-games-tips-high-score-secrets__button-group,
  .page-blog-cq9-fishing-games-tips-high-score-secrets__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__cta-buttons {
    flex-direction: column;
  }

  /* General container adaptation */
  .page-blog-cq9-fishing-games-tips-high-score-secrets__section,
  .page-blog-cq9-fishing-games-tips-high-score-secrets__card,
  .page-blog-cq9-fishing-games-tips-high-score-secrets__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__feature-grid,
  .page-blog-cq9-fishing-games-tips-high-score-secrets__benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-cq9-fishing-games-tips-high-score-secrets__faq-answer {
    padding: 15px 20px;
  }
}