/* style/fishing-games-tips.css */

:root {
  --ev99-primary-color: #11A84E;
  --ev99-secondary-color: #22C768;
  --ev99-card-bg: #11271B;
  --ev99-background-color: #08160F;
  --ev99-text-main: #F2FFF6;
  --ev99-text-secondary: #A7D9B8;
  --ev99-border-color: #2E7A4E;
  --ev99-glow-color: #57E38D;
  --ev99-gold-color: #F2C14E;
  --ev99-divider-color: #1E3A2A;
  --ev99-deep-green: #0A4B2C;
  --ev99-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-fishing-games-tips {
  background-color: var(--ev99-background-color);
  color: var(--ev99-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  background-color: var(--ev99-deep-green);
}

.page-fishing-games-tips__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-fishing-games-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games-tips__hero-content {
  max-width: 800px;
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: var(--ev99-text-main);
}

.page-fishing-games-tips__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: var(--ev99-gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games-tips__subtitle {
  font-size: 1.1em;
  color: var(--ev99-text-secondary);
  margin-bottom: 30px;
}

.page-fishing-games-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games-tips__btn-primary {
  background: var(--ev99-button-gradient);
  color: var(--ev99-text-main);
  border: none;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-tips__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games-tips__btn-secondary {
  background-color: transparent;
  color: var(--ev99-gold-color);
  border: 2px solid var(--ev99-gold-color);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-fishing-games-tips__btn-secondary:hover {
  background-color: var(--ev99-gold-color);
  color: var(--ev99-background-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-fishing-games-tips__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: var(--ev99-gold-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-fishing-games-tips__introduction-section,
.page-fishing-games-tips__game-types-section,
.page-fishing-games-tips__mistakes-section,
.page-fishing-games-tips__faq-section {
  padding: 60px 0;
}

.page-fishing-games-tips__dark-section {
  background-color: var(--ev99-card-bg);
}

.page-fishing-games-tips__text-block {
  font-size: 1.05em;
  color: var(--ev99-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-fishing-games-tips__card {
  background-color: var(--ev99-card-bg);
  border: 1px solid var(--ev99-border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--ev99-text-main);
}

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

.page-fishing-games-tips__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games-tips__card-title {
  font-size: 1.5em;
  color: var(--ev99-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games-tips__card-text {
  font-size: 0.95em;
  color: var(--ev99-text-secondary);
}

.page-fishing-games-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-tips__list-item {
  background-color: var(--ev99-deep-green);
  border-left: 5px solid var(--ev99-gold-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-tips__list-title {
  font-size: 1.4em;
  color: var(--ev99-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games-tips__list-text {
  font-size: 1em;
  color: var(--ev99-text-secondary);
}

.page-fishing-games-tips__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games-tips__tips-section {
  padding: 60px 0;
}

.page-fishing-games-tips__tip-item {
  background-color: var(--ev99-card-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--ev99-border-color);
}

.page-fishing-games-tips__tip-title {
  font-size: 1.6em;
  color: var(--ev99-gold-color);
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 2px solid var(--ev99-divider-color);
  padding-bottom: 10px;
}

.page-fishing-games-tips__tip-text {
  font-size: 1.05em;
  color: var(--ev99-text-main);
  text-align: justify;
}

.page-fishing-games-tips__mistake-card {
  background-color: var(--ev99-deep-green);
  border: 1px solid var(--ev99-border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  color: var(--ev99-text-main);
}

.page-fishing-games-tips__mistake-title {
  font-size: 1.4em;
  color: var(--ev99-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games-tips__mistake-text {
  font-size: 1em;
  color: var(--ev99-text-secondary);
}

.page-fishing-games-tips__join-guide-section {
  padding: 60px 0;
  background-color: var(--ev99-background-color);
}

.page-fishing-games-tips__step-card {
  background-color: var(--ev99-card-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--ev99-border-color);
  text-align: center;
}

.page-fishing-games-tips__step-title {
  font-size: 1.6em;
  color: var(--ev99-gold-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-fishing-games-tips__step-text {
  font-size: 1.05em;
  color: var(--ev99-text-main);
  margin-bottom: 20px;
}

.page-fishing-games-tips__faq-section {
  padding: 60px 0;
}

.page-fishing-games-tips__faq-item {
  background-color: var(--ev99-deep-green);
  border: 1px solid var(--ev99-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--ev99-text-main);
}

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--ev99-gold-color);
  cursor: pointer;
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

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

.page-fishing-games-tips__faq-question::marker {
  display: none;
}

.page-fishing-games-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--ev99-gold-color);
}

.page-fishing-games-tips__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--ev99-text-secondary);
}

.page-fishing-games-tips__faq-answer p {
  margin-bottom: 10px;
}

.page-fishing-games-tips__faq-answer .page-fishing-games-tips__btn-secondary {
  margin-top: 15px;
  display: inline-block;
}

.page-fishing-games-tips__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--ev99-background-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games-tips__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-fishing-games-tips__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-fishing-games-tips__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
  .page-fishing-games-tips__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }
  .page-fishing-games-tips__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-fishing-games-tips__subtitle {
    font-size: 1em;
  }
  .page-fishing-games-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games-tips__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-fishing-games-tips__introduction-section,
  .page-fishing-games-tips__game-types-section,
  .page-fishing-games-tips__mistakes-section,
  .page-fishing-games-tips__faq-section,
  .page-fishing-games-tips__tips-section,
  .page-fishing-games-tips__join-guide-section,
  .page-fishing-games-tips__conclusion-section {
    padding: 40px 0;
  }
  .page-fishing-games-tips__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-tips__grid-container {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-tips__card-image {
    height: 150px;
  }
  .page-fishing-games-tips__card,
  .page-fishing-games-tips__list-item,
  .page-fishing-games-tips__tip-item,
  .page-fishing-games-tips__mistake-card,
  .page-fishing-games-tips__step-card,
  .page-fishing-games-tips__faq-item {
    padding: 20px;
  }
  .page-fishing-games-tips__tip-title,
  .page-fishing-games-tips__step-title,
  .page-fishing-games-tips__mistake-title,
  .page-fishing-games-tips__list-title {
    font-size: 1.3em;
  }
  .page-fishing-games-tips__text-block,
  .page-fishing-games-tips__card-text,
  .page-fishing-games-tips__list-text,
  .page-fishing-games-tips__tip-text,
  .page-fishing-games-tips__mistake-text,
  .page-fishing-games-tips__step-text,
  .page-fishing-games-tips__faq-answer p {
    font-size: 0.95em;
  }
  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-tips__hero-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset */
  }
}

@media (max-width: 480px) {
  .page-fishing-games-tips__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-fishing-games-tips__main-title {
    font-size: clamp(1.5em, 7vw, 2.2em);
  }
  .page-fishing-games-tips__section-title {
    font-size: clamp(1.2em, 6vw, 1.8em);
  }
  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary {
    padding: 10px 15px;
    font-size: 0.95em;
  }
  .page-fishing-games-tips__card-image {
    height: 120px;
  }
  .page-fishing-games-tips__card-title,
  .page-fishing-games-tips__list-title,
  .page-fishing-games-tips__tip-title,
  .page-fishing-games-tips__mistake-title,
  .page-fishing-games-tips__step-title {
    font-size: 1.2em;
  }
  .page-fishing-games-tips__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-fishing-games-tips__faq-answer {
    padding: 0 15px 15px;
  }
}