/* style/resources-fishing-games-vn68-beginner-guide.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --accent-color-register: #C30808;
  --accent-color-login: #C30808;
  --text-color-register-login: #FFFF00;
  --background-color: #FFFFFF;
  --dark-text-color: #333333;
  --light-text-color: #FFFFFF;
}

.page-resources-fishing-games-vn68-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: var(--dark-text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

.page-resources-fishing-games-vn68-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-fishing-games-vn68-beginner-guide__section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-resources-fishing-games-vn68-beginner-guide__section--intro,
.page-resources-fishing-games-vn68-beginner-guide__section--rules,
.page-resources-fishing-games-vn68-beginner-guide__section--tips,
.page-resources-fishing-games-vn68-beginner-guide__section--mistakes,
.page-resources-fishing-games-vn68-beginner-guide__section--features,
.page-resources-fishing-games-vn68-beginner-guide__section--faq,
.page-resources-fishing-games-vn68-beginner-guide__section--conclusion {
  background-color: var(--background-color);
}

.page-resources-fishing-games-vn68-beginner-guide__section:nth-of-type(even) {
  background-color: #f9f9f9; /* Light grey for alternating sections */
}

.page-resources-fishing-games-vn68-beginner-guide__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-fishing-games-vn68-beginner-guide__sub-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-fishing-games-vn68-beginner-guide__paragraph,
.page-resources-fishing-games-vn68-beginner-guide__list-item,
.page-resources-fishing-games-vn68-beginner-guide__card-description,
.page-resources-fishing-games-vn68-beginner-guide__faq-answer p {
  font-size: 17px;
  margin-bottom: 15px;
  color: var(--dark-text-color);
}

.page-resources-fishing-games-vn68-beginner-guide__paragraph-solution {
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 15px;
  color: #555;
  font-style: italic;
}

.page-resources-fishing-games-vn68-beginner-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-fishing-games-vn68-beginner-guide__list-item strong {
  color: var(--primary-color);
}

/* HERO Section Styles */
.page-resources-fishing-games-vn68-beginner-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #33a852 100%); /* Green gradient */
  color: var(--light-text-color);
}

.page-resources-fishing-games-vn68-beginner-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-fishing-games-vn68-beginner-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Limit hero image width */
}

.page-resources-fishing-games-vn68-beginner-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-games-vn68-beginner-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-fishing-games-vn68-beginner-guide__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--light-text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.page-resources-fishing-games-vn68-beginner-guide__intro-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--light-text-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-games-vn68-beginner-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

.page-resources-fishing-games-vn68-beginner-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-fishing-games-vn68-beginner-guide__btn-primary {
  background: var(--accent-color-register); /* #C30808 */
  color: var(--text-color-register-login); /* #FFFF00 */
  border: 2px solid var(--text-color-register-login);
}

.page-resources-fishing-games-vn68-beginner-guide__btn-primary:hover {
  background: #e02a2a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-games-vn68-beginner-guide__btn-secondary {
  background: var(--primary-color); /* #017439 */
  color: var(--light-text-color); /* #FFFFFF */
  border: 2px solid var(--light-text-color);
}

.page-resources-fishing-games-vn68-beginner-guide__btn-secondary:hover {
  background: #005a2e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-games-vn68-beginner-guide__cta-buttons--center {
  text-align: center;
}

/* Image Wrapper for content images */
.page-resources-fishing-games-vn68-beginner-guide__image-wrapper {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-fishing-games-vn68-beginner-guide__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Features Grid */
.page-resources-fishing-games-vn68-beginner-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-fishing-games-vn68-beginner-guide__feature-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-fishing-games-vn68-beginner-guide__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-fishing-games-vn68-beginner-guide__feature-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure images are responsive */
}

.page-resources-fishing-games-vn68-beginner-guide__card-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-fishing-games-vn68-beginner-guide__card-description {
  font-size: 16px;
  color: #555;
}

/* FAQ Section Styles */
.page-resources-fishing-games-vn68-beginner-guide__faq-list {
  margin-top: 40px;
}

.page-resources-fishing-games-vn68-beginner-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-resources-fishing-games-vn68-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-resources-fishing-games-vn68-beginner-guide__faq-question:hover {
  background: #f5f5f5;
}

.page-resources-fishing-games-vn68-beginner-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark-text-color);
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-fishing-games-vn68-beginner-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-fishing-games-vn68-beginner-guide__faq-item.active .page-resources-fishing-games-vn68-beginner-guide__faq-toggle {
  color: #C30808; /* Change color when active */
}

.page-resources-fishing-games-vn68-beginner-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #f9f9f9;
  color: var(--dark-text-color);
}

.page-resources-fishing-games-vn68-beginner-guide__faq-item.active .page-resources-fishing-games-vn68-beginner-guide__faq-answer {
  max-height: 2000px !important; /* Ensure it expands sufficiently */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid #eee;
}

/* Conclusion Section */
.page-resources-fishing-games-vn68-beginner-guide__section--conclusion {
  text-align: center;
  background: linear-gradient(135deg, #f9f9f9, var(--background-color));
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-fishing-games-vn68-beginner-guide__main-title {
    font-size: 42px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__intro-description {
    font-size: 18px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__section-title {
    font-size: 32px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__sub-title {
    font-size: 22px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__paragraph,
  .page-resources-fishing-games-vn68-beginner-guide__list-item,
  .page-resources-fishing-games-vn68-beginner-guide__card-description,
  .page-resources-fishing-games-vn68-beginner-guide__faq-answer p {
    font-size: 16px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__cta-button {
    padding: 14px 35px;
    font-size: 17px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__features-grid {
    gap: 20px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__feature-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-resources-fishing-games-vn68-beginner-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__intro-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px; /* Limit button group width */
    margin-left: auto;
    margin-right: auto;
  }
  .page-resources-fishing-games-vn68-beginner-guide__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-fishing-games-vn68-beginner-guide__section {
    padding: 40px 0;
  }
  .page-resources-fishing-games-vn68-beginner-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__sub-title {
    font-size: 20px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__paragraph,
  .page-resources-fishing-games-vn68-beginner-guide__list-item,
  .page-resources-fishing-games-vn68-beginner-guide__card-description,
  .page-resources-fishing-games-vn68-beginner-guide__faq-answer p {
    font-size: 15px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__image-wrapper {
    margin: 20px auto;
  }
  .page-resources-fishing-games-vn68-beginner-guide__image-wrapper img,
  .page-resources-fishing-games-vn68-beginner-guide__feature-card img,
  .page-resources-fishing-games-vn68-beginner-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-fishing-games-vn68-beginner-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-fishing-games-vn68-beginner-guide__feature-card {
    padding: 20px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__feature-card img {
    
  }
  .page-resources-fishing-games-vn68-beginner-guide__faq-question {
    padding: 15px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__faq-item.active .page-resources-fishing-games-vn68-beginner-guide__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-fishing-games-vn68-beginner-guide__main-title {
    font-size: 32px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__section-title {
    font-size: 24px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__sub-title {
    font-size: 18px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-resources-fishing-games-vn68-beginner-guide__feature-card img {
    
  }
}