/* style/blog-fishing-game-high-score-guide-and-tips.css */

:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --background-dark: #0D0E12;
  --card-bg: #17191F;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-blog-fishing-game-high-score-guide-and-tips {
  color: var(--text-main); /* Ensure light text on dark body background */
  background-color: var(--background-dark);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-fishing-game-high-score-guide-and-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-fishing-game-high-score-guide-and-tips__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-fishing-game-high-score-guide-and-tips__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-fishing-game-high-score-guide-and-tips__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-fishing-game-high-score-guide-and-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Use clamp for H1 font size */
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255,165,58,0.5);
}

.page-blog-fishing-game-high-score-guide-and-tips__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-blog-fishing-game-high-score-guide-and-tips__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,140,26,0.4);
  border: none;
  cursor: pointer;
}

.page-blog-fishing-game-high-score-guide-and-tips__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,140,26,0.6);
}

.page-blog-fishing-game-high-score-guide-and-tips__cta-button--secondary {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  color: var(--text-main);
  box-shadow: none;
}

.page-blog-fishing-game-high-score-guide-and-tips__cta-button--secondary:hover {
  background: var(--deep-orange);
  border-color: var(--deep-orange);
  color: var(--text-main);
}

.page-blog-fishing-game-high-score-guide-and-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-main);
}

.page-blog-fishing-game-high-score-guide-and-tips__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-fishing-game-high-score-guide-and-tips__section-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-fishing-game-high-score-guide-and-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.page-blog-fishing-game-high-score-guide-and-tips__sub-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid var(--deep-orange);
  padding-left: 15px;
}

.page-blog-fishing-game-high-score-guide-and-tips__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-fishing-game-high-score-guide-and-tips__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-fishing-game-high-score-guide-and-tips__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.page-blog-fishing-game-high-score-guide-and-tips__list-item::before {
  content: '✓';
  color: var(--glow-color);
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-fishing-game-high-score-guide-and-tips__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-fishing-game-high-score-guide-and-tips__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-fishing-game-high-score-guide-and-tips__video-container {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.6);
}

.page-blog-fishing-game-high-score-guide-and-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%; /* Desktop width: 100% alongside max-width */
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-fishing-game-high-score-guide-and-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-blog-fishing-game-high-score-guide-and-tips__video-caption {
  text-align: center;
  padding: 15px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-list {
  margin-top: 40px;
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-question:hover {
  background-color: rgba(255, 140, 26, 0.1);
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-qtext {
  flex-grow: 1;
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 20px;
  text-align: center;
  color: var(--glow-color);
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-item[open] .page-blog-fishing-game-high-score-guide-and-tips__faq-question {
  background-color: rgba(255, 140, 26, 0.15);
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-answer p {
  margin-bottom: 0;
}

/* Details element specific styling */
.page-blog-fishing-game-high-score-guide-and-tips__faq-item summary {
  list-style: none;
}

.page-blog-fishing-game-high-score-guide-and-tips__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-fishing-game-high-score-guide-and-tips__hero-content {
    margin-top: 20px;
  }

  .page-blog-fishing-game-high-score-guide-and-tips__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-fishing-game-high-score-guide-and-tips__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-blog-fishing-game-high-score-guide-and-tips__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add margin for stacked buttons */
  }

  .page-blog-fishing-game-high-score-guide-and-tips__content-area,
  .page-blog-fishing-game-high-score-guide-and-tips__container,
  .page-blog-fishing-game-high-score-guide-and-tips__video-container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-fishing-game-high-score-guide-and-tips__section-title {
    font-size: 2rem;
  }

  .page-blog-fishing-game-high-score-guide-and-tips__sub-title {
    font-size: 1.5rem;
  }

  .page-blog-fishing-game-high-score-guide-and-tips__text-block,
  .page-blog-fishing-game-high-score-guide-and-tips__list-item,
  .page-blog-fishing-game-high-score-guide-and-tips__faq-question,
  .page-blog-fishing-game-high-score-guide-and-tips__faq-answer {
    font-size: 1rem;
  }

  /* Mobile image responsiveness */
  .page-blog-fishing-game-high-score-guide-and-tips img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset !important; /* Reset min-width for mobile */
    min-height: unset !important; /* Reset min-height for mobile */
  }

  /* Mobile video responsiveness */
  .page-blog-fishing-game-high-score-guide-and-tips video,
  .page-blog-fishing-game-high-score-guide-and-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-fishing-game-high-score-guide-and-tips__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-fishing-game-high-score-guide-and-tips__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-fishing-game-high-score-guide-and-tips__faq-question {
    padding: 15px 20px;
  }

  .page-blog-fishing-game-high-score-guide-and-tips__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-fishing-game-high-score-guide-and-tips__section-title {
    font-size: 1.8rem;
  }
  .page-blog-fishing-game-high-score-guide-and-tips__sub-title {
    font-size: 1.3rem;
  }
}