/* style/blog-how-to-win-188bet-fishing-game.css */

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

/* Main page container - assuming body has a dark background from shared.css */
.page-blog-how-to-win-188bet-fishing-game {
  color: var(--color-text-main); /* Light text for dark background */
  background-color: var(--color-background);
}

/* Hero Section */
.page-blog-how-to-win-188bet-fishing-game__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: var(--color-deep-green);
}

.page-blog-how-to-win-188bet-fishing-game__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-blog-how-to-win-188bet-fishing-game__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.page-blog-how-to-win-188bet-fishing-game__main-title {
  font-size: clamp(2rem, 4vw, 3.5rem); /* Using clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.7);
}

.page-blog-how-to-win-188bet-fishing-game__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-win-188bet-fishing-game__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-blog-how-to-win-188bet-fishing-game__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Content Area */
.page-blog-how-to-win-188bet-fishing-game__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--color-background);
  color: var(--color-text-main);
}

.page-blog-how-to-win-188bet-fishing-game__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-how-to-win-188bet-fishing-game__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-how-to-win-188bet-fishing-game__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--color-text-secondary);
  text-align: justify;
}

/* Card Grid */
.page-blog-how-to-win-188bet-fishing-game__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-blog-how-to-win-188bet-fishing-game__card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--color-text-main);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-blog-how-to-win-188bet-fishing-game__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-win-188bet-fishing-game__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-blog-how-to-win-188bet-fishing-game__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.page-blog-how-to-win-188bet-fishing-game__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-align: justify;
  flex-grow: 1;
}

/* List Styles */
.page-blog-how-to-win-188bet-fishing-game__list,
.page-blog-how-to-win-188bet-fishing-game__error-list,
.page-blog-how-to-win-188bet-fishing-game__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-how-to-win-188bet-fishing-game__list-item,
.page-blog-how-to-win-188bet-fishing-game__error-item,
.page-blog-how-to-win-188bet-fishing-game__benefits-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--color-text-main);
}

.page-blog-how-to-win-188bet-fishing-game__list-title,
.page-blog-how-to-win-188bet-fishing-game__error-title,
.page-blog-how-to-win-188bet-fishing-game__tip-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.page-blog-how-to-win-188bet-fishing-game__list-text,
.page-blog-how-to-win-188bet-fishing-game__error-text,
.page-blog-how-to-win-188bet-fishing-game__tip-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-align: justify;
}

/* Tips Grid */
.page-blog-how-to-win-188bet-fishing-game__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-blog-how-to-win-188bet-fishing-game__tip-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  color: var(--color-text-main);
}

.page-blog-how-to-win-188bet-fishing-game__tip-item a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.page-blog-how-to-win-188bet-fishing-game__tip-item a:hover {
  color: var(--color-gold);
}

/* CTA Section */
.page-blog-how-to-win-188bet-fishing-game__cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-deep-green) 100%);
  border-radius: 15px;
  padding: 50px 30px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.page-blog-how-to-win-188bet-fishing-game__cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-how-to-win-188bet-fishing-game__cta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-blog-how-to-win-188bet-fishing-game__faq-section {
  margin-top: 60px;
}

.page-blog-how-to-win-188bet-fishing-game__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-how-to-win-188bet-fishing-game__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--color-text-main);
  overflow: hidden;
}

.page-blog-how-to-win-188bet-fishing-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-divider);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-win-188bet-fishing-game__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-how-to-win-188bet-fishing-game__faq-question:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.page-blog-how-to-win-188bet-fishing-game__faq-question:hover .page-blog-how-to-win-188bet-fishing-game__faq-toggle {
  color: #ffffff;
}

.page-blog-how-to-win-188bet-fishing-game__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-left: 15px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.page-blog-how-to-win-188bet-fishing-game__faq-item[open] .page-blog-how-to-win-188bet-fishing-game__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-win-188bet-fishing-game__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-align: justify;
}

.page-blog-how-to-win-188bet-fishing-game__faq-answer a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.page-blog-how-to-win-188bet-fishing-game__faq-answer a:hover {
  color: var(--color-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-win-188bet-fishing-game__hero-section {
    padding: 10px 15px 50px;
  }

  .page-blog-how-to-win-188bet-fishing-game__hero-image {
    max-height: 400px;
  }

  .page-blog-how-to-win-188bet-fishing-game__content-area {
    padding: 50px 15px;
  }

  .page-blog-how-to-win-188bet-fishing-game__card-grid,
  .page-blog-how-to-win-188bet-fishing-game__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-win-188bet-fishing-game__hero-section {
    padding: 10px 15px 40px !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__hero-image {
    max-height: 300px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__main-title {
    font-size: 2.2rem !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__hero-description {
    font-size: 1rem !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }
  
  .page-blog-how-to-win-188bet-fishing-game__content-area,
  .page-blog-how-to-win-188bet-fishing-game__cta-section,
  .page-blog-how-to-win-188bet-fishing-game__faq-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__paragraph,
  .page-blog-how-to-win-188bet-fishing-game__card-text,
  .page-blog-how-to-win-188bet-fishing-game__list-text,
  .page-blog-how-to-win-188bet-fishing-game__error-text,
  .page-blog-how-to-win-188bet-fishing-game__tip-text,
  .page-blog-how-to-win-188bet-fishing-game__faq-answer p {
    font-size: 0.9rem !important;
  }

  .page-blog-how-to-win-188bet-fishing-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__card-image {
    height: auto !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__card-grid,
  .page-blog-how-to-win-188bet-fishing-game__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-win-188bet-fishing-game__faq-question {
    font-size: 1rem !important;
    padding: 15px 20px !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__faq-toggle {
    font-size: 1.5rem !important;
  }

  .page-blog-how-to-win-188bet-fishing-game__faq-answer {
    padding: 15px 20px !important;
  }
}