/* style/fishing-games.css */
/* body đã padding-top: var(--header-offset) từ shared.css, không thêm lại tại đây */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Body background is dark, so default text is light */
  background-color: transparent; /* Main content background will be handled by sections */
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding, body handles --header-offset */
  background-color: #0a0a0a; /* Ensure dark background for hero section */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive font size */
}

.page-fishing-games__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  white-space: nowrap; /* Prevent text wrapping for desktop */
}

.page-fishing-games__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.page-fishing-games__section {
  padding: 80px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-fishing-games__dark-bg {
  background-color: #0d0d0d;
  color: var(--text-light);
}

.page-fishing-games__light-bg {
  background-color: var(--background-color);
  color: var(--text-dark);
}

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

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
  color: var(--text-light);
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: var(--text-dark);
}

.page-fishing-games__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-fishing-games__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-fishing-games__dark-bg .page-fishing-games__text-block {
  color: #cccccc;
}

.page-fishing-games__light-bg .page-fishing-games__text-block {
  color: var(--text-dark);
}

.page-fishing-games__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__grid-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-fishing-games__list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
}

.page-fishing-games__list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-fishing-games__dark-bg .page-fishing-games__list li {
  color: #cccccc;
}

.page-fishing-games__light-bg .page-fishing-games__list li {
  color: var(--text-dark);
}

.page-fishing-games__list-item-title {
  color: var(--primary-color);
}

.page-fishing-games__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__card {
  background: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-fishing-games__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__guide-item {
  background: var(--background-color);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.page-fishing-games__guide-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__guide-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-fishing-games__cta-center {
  margin-top: 50px;
}

.page-fishing-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__strategy-item {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-fishing-games__strategy-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__strategy-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
}

.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-card {
  background: var(--background-color);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px; /* Adjust max-width for feature icons */
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
  margin-top: 30px;
}

.page-fishing-games__promo-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
  color: var(--text-dark);
}

.page-fishing-games__promo-list li::before {
  content: '⭐';
  position: absolute;
  left: 0;
  top: 0;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  user-select: none;
  position: relative;
  list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
}

.page-fishing-games__faq-answer p {
  margin: 0;
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-fishing-games__description {
    font-size: 1rem;
  }
  .page-fishing-games__section {
    padding: 60px 15px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games img,
  .page-fishing-games__hero-image,
  .page-fishing-games__grid-image,
  .page-fishing-games__card-image,
  .page-fishing-games__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__image-grid,
  .page-fishing-games__card-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__features-grid,
  .page-fishing-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Buttons responsiveness */
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px; /* Adjust padding for smaller screens */
  }

  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-fishing-games__description {
    font-size: 0.95rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .page-fishing-games__sub-title,
  .page-fishing-games__card-title,
  .page-fishing-games__guide-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__feature-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
  .page-fishing-games__text-block,
  .page-fishing-games__list li,
  .page-fishing-games__card-description,
  .page-fishing-games__guide-text,
  .page-fishing-games__strategy-description,
  .page-fishing-games__feature-description,
  .page-fishing-games__promo-list li,
  .page-fishing-games__faq-question,
  .page-fishing-games__faq-answer {
    font-size: 0.95rem;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
  .page-fishing-games__section {
    padding: 40px 10px;
  }
  .page-fishing-games__container,
  .page-fishing-games__section,
  .page-fishing-games__hero-section,
  .page-fishing-games__card,
  .page-fishing-games__guide-item,
  .page-fishing-games__strategy-item,
  .page-fishing-games__feature-card,
  .page-fishing-games__faq-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-fishing-games__card,
  .page-fishing-games__guide-item,
  .page-fishing-games__strategy-item,
  .page-fishing-games__feature-card {
    padding: 20px;
  }
  .page-fishing-games__faq-question {
    padding: 12px 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px 12px;
  }
}