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

/* Custom Colors */
:root {
  --ke68-green-main: #11A84E;
  --ke68-green-accent: #22C768;
  --ke68-button-gradient-start: #2AD16F;
  --ke68-button-gradient-end: #13994A;
  --ke68-card-bg: #11271B;
  --ke68-background: #08160F;
  --ke68-text-main: #F2FFF6;
  --ke68-text-secondary: #A7D9B8;
  --ke68-border: #2E7A4E;
  --ke68-glow: #57E38D;
  --ke68-gold: #F2C14E;
  --ke68-divider: #1E3A2A;
  --ke68-deep-green: #0A4B2C;
}

.page-blog-fishing-game-secrets {
  background-color: var(--ke68-background);
  color: var(--ke68-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-fishing-game-secrets__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-fishing-game-secrets__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-blog-fishing-game-secrets__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim image for text readability */
}

.page-blog-fishing-game-secrets__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-blog-fishing-game-secrets__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--ke68-gold);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-fishing-game-secrets__description {
  font-size: 1.1rem;
  color: var(--ke68-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-fishing-game-secrets__btn-primary,
.page-blog-fishing-game-secrets__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-fishing-game-secrets__btn-primary {
  background: linear-gradient(180deg, var(--ke68-button-gradient-start) 0%, var(--ke68-button-gradient-end) 100%);
  color: var(--ke68-text-main);
  border: 2px solid var(--ke68-green-accent);
}

.page-blog-fishing-game-secrets__btn-primary:hover {
  background: linear-gradient(180deg, var(--ke68-button-gradient-end) 0%, var(--ke68-button-gradient-start) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--ke68-green-accent), 0.4);
}

.page-blog-fishing-game-secrets__btn-secondary {
  background-color: transparent;
  color: var(--ke68-green-accent);
  border: 2px solid var(--ke68-green-accent);
}

.page-blog-fishing-game-secrets__btn-secondary:hover {
  background-color: var(--ke68-green-accent);
  color: var(--ke68-text-main);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--ke68-green-accent), 0.4);
}

.page-blog-fishing-game-secrets__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--ke68-divider);
}

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

.page-blog-fishing-game-secrets__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ke68-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-game-secrets__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ke68-green-accent);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-fishing-game-secrets__text-block {
  font-size: 1rem;
  color: var(--ke68-text-secondary);
  margin-bottom: 20px;
}

.page-blog-fishing-game-secrets__text-block a {
  color: var(--ke68-green-accent);
  text-decoration: underline;
}

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

.page-blog-fishing-game-secrets__card {
  background-color: var(--ke68-card-bg);
  border: 1px solid var(--ke68-border);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ke68-text-main);
}

.page-blog-fishing-game-secrets__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(var(--ke68-green-accent), 0.3);
}

.page-blog-fishing-game-secrets__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-fishing-game-secrets__card-title {
  font-size: 1.3rem;
  color: var(--ke68-gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-fishing-game-secrets__card-text {
  font-size: 0.95rem;
  color: var(--ke68-text-secondary);
}

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

.page-blog-fishing-game-secrets__step-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-blog-fishing-game-secrets__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--ke68-card-bg);
  border: 1px solid var(--ke68-border);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-fishing-game-secrets__step-number {
  min-width: 40px;
  height: 40px;
  background-color: var(--ke68-green-main);
  color: var(--ke68-text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.page-blog-fishing-game-secrets__step-content {
  flex-grow: 1;
}

.page-blog-fishing-game-secrets__cta-block {
  text-align: center;
  margin-top: 40px;
}

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

.page-blog-fishing-game-secrets__faq-item {
  background-color: var(--ke68-card-bg);
  border: 1px solid var(--ke68-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--ke68-text-main);
}

.page-blog-fishing-game-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--ke68-green-accent);
  list-style: none; /* For details tag */
}

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

.page-blog-fishing-game-secrets__faq-qtext {
  flex-grow: 1;
}

.page-blog-fishing-game-secrets__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-fishing-game-secrets__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--ke68-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-fishing-game-secrets__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }
  .page-blog-fishing-game-secrets__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-blog-fishing-game-secrets__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-blog-fishing-game-secrets__content-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  .page-blog-fishing-game-secrets__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-fishing-game-secrets__hero-content {
    padding: 0 15px;
  }

  .page-blog-fishing-game-secrets__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 15px;
  }

  .page-blog-fishing-game-secrets__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

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

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

  .page-blog-fishing-game-secrets__container {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-fishing-game-secrets__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-fishing-game-secrets__sub-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

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

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

  .page-blog-fishing-game-secrets__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .page-blog-fishing-game-secrets__card-image {
    max-height: 200px;
  }

  .page-blog-fishing-game-secrets__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-blog-fishing-game-secrets__step-number {
    margin-bottom: 15px;
  }

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

  /* Ensure all video elements are responsive */
  .page-blog-fishing-game-secrets video,
  .page-blog-fishing-game-secrets__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Video containers mobile adaptation */
  .page-blog-fishing-game-secrets__video-section,
  .page-blog-fishing-game-secrets__video-container,
  .page-blog-fishing-game-secrets__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Video section small top padding for mobile */
  .page-blog-fishing-game-secrets__video-section {
    padding-top: 10px !important;
  }

  /* Ensure all containers with images/videos/buttons are constrained */
  .page-blog-fishing-game-secrets__hero-section,
  .page-blog-fishing-game-secrets__section,
  .page-blog-fishing-game-secrets__card,
  .page-blog-fishing-game-secrets__container,
  .page-blog-fishing-game-secrets__cta-buttons,
  .page-blog-fishing-game-secrets__button-group,
  .page-blog-fishing-game-secrets__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-fishing-game-secrets__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-fishing-game-secrets__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-fishing-game-secrets__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-fishing-game-secrets__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-blog-fishing-game-secrets__btn-primary,
  .page-blog-fishing-game-secrets__btn-secondary {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}