/* style/games-fishing.css */
.page-games-fishing {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2463; /* Primary dark blue background */
}

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

.page-games-fishing__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-games-fishing__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-games-fishing__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-fishing__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-games-fishing__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-games-fishing__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-games-fishing__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-games-fishing__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-games-fishing__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-games-fishing__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-games-fishing__hero-image {
  width: 100%;
  max-width: 900px;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-games-fishing__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-games-fishing__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-games-fishing__text-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-games-fishing__text-content a:hover {
  text-decoration: underline;
}

.page-games-fishing__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-games-fishing__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 500px;
}

.page-games-fishing__image--center {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.page-games-fishing__about-sodo .page-games-fishing__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-games-fishing__about-sodo .page-games-fishing__section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}

.page-games-fishing__about-sodo .page-games-fishing__text-content {
  flex: 1;
  min-width: 300px;
}

.page-games-fishing__about-sodo .page-games-fishing__image--right {
  flex: 0 0 auto;
}

.page-games-fishing__highlights .page-games-fishing__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-fishing__highlight-item {
  background-color: #1A3E8A; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-fishing__highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-games-fishing__highlight-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-games-fishing__highlight-description {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
}

.page-games-fishing__how-to-play .page-games-fishing__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-games-fishing__step-list li {
  margin-bottom: 40px;
  position: relative;
  padding-left: 70px;
}

.page-games-fishing__step-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.page-games-fishing__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
}

.page-games-fishing__sub-list {
  list-style: disc;
  margin-left: 30px;
  color: #E0E0E0;
}

.page-games-fishing__sub-list li {
  margin-bottom: 15px;
  padding-left: 0;
}

.page-games-fishing__sub-list li::before {
  content: none;
}

.page-games-fishing__sub-title {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.page-games-fishing__fish-types .page-games-fishing__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.page-games-fishing__content-block {
  background-color: #1A3E8A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-games-fishing__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-games-fishing__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-games-fishing__list li::before {
  content: '▶';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9em;
}

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

.page-games-fishing__promo-list li {
  background-color: #1A3E8A;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-games-fishing__promo-list li strong {
  color: #FFD700;
  font-size: 1.2em;
}

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

.page-games-fishing__why-sodo .page-games-fishing__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.page-games-fishing__download-app {
  text-align: center;
}

.page-games-fishing__download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.page-games-fishing__btn--download {
  background-color: #1A3E8A;
  color: #FFFFFF;
  border: 2px solid #FFD700;
  padding: 15px 35px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-games-fishing__btn--download:hover {
  background-color: #0A2463;
  border-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-games-fishing__icon {
  width: 28px;
  height: 28px;
  filter: invert(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-games-fishing__faq-item {
  background-color: #1A3E8A;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-games-fishing__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-games-fishing__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-games-fishing__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-games-fishing__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-games-fishing__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-games-fishing__conclusion {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-fishing__hero-title {
    font-size: 2.8em;
  }

  .page-games-fishing__section-title {
    font-size: 2.2em;
  }

  .page-games-fishing__grid-3-col, .page-games-fishing__grid-2-col {
    grid-template-columns: 1fr;
  }

  .page-games-fishing__image--right {
    float: none;
    margin: 30px auto;
  }

  .page-games-fishing__about-sodo .page-games-fishing__container {
    flex-direction: column;
  }

  .page-games-fishing__about-sodo .page-games-fishing__section-title {
    text-align: center;
  }

  .page-games-fishing__step-list li {
    padding-left: 0;
    text-align: center;
  }

  .page-games-fishing__step-list li::before {
    position: static;
    margin-bottom: 15px;
  }

  .page-games-fishing__sub-list {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-games-fishing__hero-title {
    font-size: 2.2em;
  }

  .page-games-fishing__hero-description {
    font-size: 1em;
  }

  .page-games-fishing__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-games-fishing__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-games-fishing__section-title {
    font-size: 1.8em;
  }

  .page-games-fishing__highlight-title {
    font-size: 1.4em;
  }

  .page-games-fishing__sub-section-title {
    font-size: 1.6em;
  }

  .page-games-fishing__btn--download {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .page-games-fishing__download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-games-fishing__hero-section, .page-games-fishing__section {
    padding: 40px 0;
  }

  .page-games-fishing__hero-title {
    font-size: 1.8em;
  }

  .page-games-fishing__section-title {
    font-size: 1.5em;
  }

  .page-games-fishing__container {
    padding: 0 15px;
  }

  .page-games-fishing__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-games-fishing__highlight-item, .page-games-fishing__content-block, .page-games-fishing__faq-item {
    padding: 20px;
  }

  .page-games-fishing__step-title {
    font-size: 1.5em;
  }

  .page-games-fishing__faq-question {
    font-size: 1.2em;
  }
}