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

:root {
  --page-fishing-games-strategy-primary-color: #26A9E0;
  --page-fishing-games-strategy-secondary-color: #FFFFFF;
  --page-fishing-games-strategy-text-dark: #333333;
  --page-fishing-games-strategy-text-light: #ffffff;
  --page-fishing-games-strategy-bg-dark: #0a0a0a; /* Body background from shared */
  --page-fishing-games-strategy-login-color: #EA7C07;
}

.page-fishing-games-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-fishing-games-strategy-text-light); /* Default text color for dark body bg */
  background-color: var(--page-fishing-games-strategy-bg-dark);
}

.page-fishing-games-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-fishing-games-strategy__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 60px;
  background-color: var(--page-fishing-games-strategy-primary-color);
  color: var(--page-fishing-games-strategy-text-light);
}

.page-fishing-games-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-fishing-games-strategy__hero-section .page-fishing-games-strategy__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-fishing-games-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--page-fishing-games-strategy-text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  color: var(--page-fishing-games-strategy-text-light);
}

/* Buttons */
.page-fishing-games-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  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-strategy__btn-primary {
  background-color: var(--page-fishing-games-strategy-login-color); /* Sử dụng màu login */
  color: var(--page-fishing-games-strategy-text-light);
  border: 2px solid var(--page-fishing-games-strategy-login-color);
}

.page-fishing-games-strategy__btn-primary:hover {
  background-color: darken(var(--page-fishing-games-strategy-login-color), 10%);
  border-color: darken(var(--page-fishing-games-strategy-login-color), 10%);
}

.page-fishing-games-strategy__btn-secondary {
  background-color: transparent;
  color: var(--page-fishing-games-strategy-text-light);
  border: 2px solid var(--page-fishing-games-strategy-text-light);
}

.page-fishing-strategy__btn-secondary:hover {
  background-color: var(--page-fishing-games-strategy-text-light);
  color: var(--page-fishing-games-strategy-primary-color);
}

/* Section Titles and Paragraphs */
.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-fishing-games-strategy-primary-color);
}

.page-fishing-games-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-fishing-games-strategy-text-dark);
}

.page-fishing-games-strategy__dark-bg .page-fishing-games-strategy__paragraph,
.page-fishing-games-strategy__dark-bg .page-fishing-games-strategy__section-title {
  color: var(--page-fishing-games-strategy-text-light);
}

/* Introduction Section */
.page-fishing-games-strategy__introduction-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-strategy-secondary-color);
  color: var(--page-fishing-games-strategy-text-dark);
}

/* Video Guide Section */
.page-fishing-games-strategy__video-guide-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-strategy-bg-dark);
  color: var(--page-fishing-games-strategy-text-light);
  text-align: center;
}

.page-fishing-games-strategy__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games-strategy__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.page-fishing-games-strategy__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-fishing-games-strategy__video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4em;
  color: var(--page-fishing-games-strategy-text-light);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Allow click to pass through to video link */
}

/* Core Strategies Section */
.page-fishing-games-strategy__core-strategies {
  padding: 80px 0;
  background-color: var(--page-fishing-games-strategy-secondary-color);
  color: var(--page-fishing-games-strategy-text-dark);
}

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

.page-fishing-games-strategy__card {
  background-color: var(--page-fishing-games-strategy-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}

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

.page-fishing-games-strategy__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--page-fishing-games-strategy-primary-color);
}

.page-fishing-games-strategy__card .page-fishing-games-strategy__paragraph {
  color: var(--page-fishing-games-strategy-text-dark);
  text-align: left;
}

/* Advanced Tips Section */
.page-fishing-games-strategy__advanced-tips {
  padding: 80px 0;
  background-color: var(--page-fishing-games-strategy-bg-dark);
  color: var(--page-fishing-games-strategy-text-light);
}

.page-fishing-games-strategy__list {
  list-style: none;
  padding: 0;
}

.page-fishing-games-strategy__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__list-item:last-child {
  margin-bottom: 0;
}

.page-fishing-games-strategy__list-item-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--page-fishing-games-strategy-primary-color);
  text-align: center;
}

.page-fishing-games-strategy__list-item .page-fishing-games-strategy__paragraph {
  color: var(--page-fishing-games-strategy-text-light);
  text-align: center;
  max-width: 800px;
  margin-bottom: 20px;
}

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

/* FAQ Section */
.page-fishing-games-strategy__faq-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-strategy-secondary-color);
  color: var(--page-fishing-games-strategy-text-dark);
}

.page-fishing-games-strategy__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-strategy__faq-item {
  background-color: var(--page-fishing-games-strategy-text-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-fishing-games-strategy-primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-fishing-games-strategy__faq-question:hover {
  background-color: #f0f0f0;
}

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-games-strategy__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--page-fishing-games-strategy-text-dark);
}

/* CTA Section */
.page-fishing-games-strategy__cta-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-strategy-bg-dark);
  color: var(--page-fishing-games-strategy-text-light);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__hero-title {
    font-size: 3em;
  }
  .page-fishing-games-strategy__section-title {
    font-size: 2em;
  }
  .page-fishing-games-strategy__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games-strategy__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-fishing-games-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-strategy__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }
  .page-fishing-games-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games-strategy__introduction-section,
  .page-fishing-games-strategy__video-guide-section,
  .page-fishing-games-strategy__core-strategies,
  .page-fishing-games-strategy__advanced-tips,
  .page-fishing-games-strategy__faq-section,
  .page-fishing-games-strategy__cta-section {
    padding: 50px 0;
  }
  .page-fishing-games-strategy__container {
    padding: 0 15px;
  }
  .page-fishing-games-strategy__grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-strategy__card {
    padding: 20px;
  }
  .page-fishing-games-strategy__card-image {
    height: 200px;
  }
  .page-fishing-games-strategy__list-item {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-fishing-games-strategy__list-item-title {
    font-size: 1.5em;
  }
  .page-fishing-games-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-strategy video,
  .page-fishing-games-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-strategy__video-section,
  .page-fishing-games-strategy__video-container,
  .page-fishing-games-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__cta-buttons,
  .page-fishing-games-strategy__button-group,
  .page-fishing-games-strategy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* For button groups */
    gap: 10px; /* For button groups */
  }
  .page-fishing-games-strategy__cta-buttons {
    flex-direction: column;
  }
}