/* style/game-center-fishing-games.css */
.page-game-center-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f5f7fa;
}

.page-game-center-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-center-fishing-games__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-center-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
}

.page-game-center-fishing-games__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-game-center-fishing-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-game-center-fishing-games__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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-center-fishing-games__btn--primary {
  background-color: #FFD700;
  color: #1A237E;
  border: 2px solid #FFD700;
}

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

.page-game-center-fishing-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-center-fishing-games__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-game-center-fishing-games__section-title {
  font-size: 2.8em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-center-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-center-fishing-games__about-section,
.page-game-center-fishing-games__how-to-play-section,
.page-game-center-fishing-games__tips-section,
.page-game-center-fishing-games__promotions-section,
.page-game-center-fishing-games__cta-download-section,
.page-game-center-fishing-games__faq-section,
.page-game-center-fishing-games__final-cta {
  padding: 80px 0;
}

.page-game-center-fishing-games__about-section {
  background-color: #fff;
}

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

.page-game-center-fishing-games__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-center-fishing-games__grid-item:hover {
  transform: translateY(-5px);
}

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

.page-game-center-fishing-games__item-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-center-fishing-games__item-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
}

.page-game-center-fishing-games__description {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.8;
  color: #444;
}

.page-game-center-fishing-games__how-to-play-section {
  background-color: #e8eaf6; /* Light purple-blue */
}

.page-game-center-fishing-games__numbered-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-game-center-fishing-games__numbered-list li {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
}

.page-game-center-fishing-games__numbered-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 25px;
  top: 30px;
  background-color: #FFD700;
  color: #1A237E;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-center-fishing-games__list-title {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-game-center-fishing-games__numbered-list p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
}

.page-game-center-fishing-games__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-game-center-fishing-games__call-to-action p {
  font-size: 1.5em;
  font-weight: bold;
  color: #1A237E;
  margin-bottom: 30px;
}

.page-game-center-fishing-games__promotions-section {
  background-color: #fff;
}

.page-game-center-fishing-games__promotions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-center-fishing-games__promotion-item {
  background-color: #f0f4f7;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.page-game-center-fishing-games__promotion-item .page-game-center-fishing-games__item-title {
  color: #1A237E;
  font-size: 1.5em;
}

.page-game-center-fishing-games__promotion-item .page-game-center-fishing-games__item-description {
  color: #666;
  font-size: 1em;
}

.page-game-center-fishing-games__cta-download-section {
  background: linear-gradient(to right, #1A237E, #3F51B5);
  color: #fff;
}

.page-game-center-fishing-games__cta-download-section .page-game-center-fishing-games__section-title,
.page-game-center-fishing-games__cta-download-section .page-game-center-fishing-games__description {
  color: #fff;
}

.page-game-center-fishing-games__cta-download-section .page-game-center-fishing-games__section-title::after {
  background-color: #FFD700;
}

.page-game-center-fishing-games__download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-game-center-fishing-games__download-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-game-center-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-center-fishing-games__feature-list li {
  font-size: 1.2em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #e0e0e0;
}

.page-game-center-fishing-games__feature-list li .icon-check {
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.3em;
  /* Placeholder for icon, assuming shared.css provides it or a custom font icon */
}

.page-game-center-fishing-games__download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-game-center-fishing-games__download-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.page-game-center-fishing-games__download-image .page-game-center-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-center-fishing-games__faq-section {
  background-color: #f5f7fa;
}

.page-game-center-fishing-games__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-center-fishing-games__accordion-item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-game-center-fishing-games__accordion-header {
  background-color: #1A237E;
  color: #fff;
  padding: 20px 30px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-game-center-fishing-games__accordion-header:hover {
  background-color: #3F51B5;
}

.page-game-center-fishing-games__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-center-fishing-games__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-center-fishing-games__accordion-content {
  padding: 0 30px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-game-center-fishing-games__accordion-content p {
  padding: 20px 0;
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
}

.page-game-center-fishing-games__final-cta {
  background-color: #1A237E;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.page-game-center-fishing-games__final-cta .page-game-center-fishing-games__section-title,
.page-game-center-fishing-games__final-cta .page-game-center-fishing-games__description {
  color: #fff;
}

.page-game-center-fishing-games__final-cta .page-game-center-fishing-games__section-title::after {
  background-color: #FFD700;
}

.page-game-center-fishing-games__final-cta .page-game-center-fishing-games__btn {
  margin: 0 10px;
}

.page-game-center-fishing-games .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-center-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-game-center-fishing-games__section-title {
    font-size: 2.2em;
  }
  .page-game-center-fishing-games__download-content {
    flex-direction: column;
  }
  .page-game-center-fishing-games__download-text,
  .page-game-center-fishing-games__download-image {
    text-align: center;
  }
  .page-game-center-fishing-games__download-buttons {
    justify-content: center;
  }
  .page-game-center-fishing-games__feature-list {
    text-align: left;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-game-center-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-game-center-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-game-center-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-center-fishing-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-center-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-center-fishing-games__description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-game-center-fishing-games__grid-item {
    padding: 20px;
  }
  .page-game-center-fishing-games__item-title {
    font-size: 1.4em;
  }
  .page-game-center-fishing-games__item-description {
    font-size: 0.95em;
  }
  .page-game-center-fishing-games__numbered-list li {
    padding: 20px 20px 20px 60px;
  }
  .page-game-center-fishing-games__numbered-list li::before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-game-center-fishing-games__list-title {
    font-size: 1.3em;
  }
  .page-game-center-fishing-games__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-game-center-fishing-games__accordion-content p {
    font-size: 1em;
    padding: 15px 0;
  }
  .page-game-center-fishing-games__final-cta .page-game-center-fishing-games__btn {
    width: 90%;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-game-center-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-game-center-fishing-games__section-title {
    font-size: 1.6em;
  }
  .page-game-center-fishing-games__btn {
    width: 95%;
  }
  .page-game-center-fishing-games__download-buttons {
    flex-direction: column;
  }
  .page-game-center-fishing-games__final-cta .page-game-center-fishing-games__btn {
    width: 95%;
  }
}