/* style/games-fishing.css */
.page-games-fishing {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
}

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

.page-games-fishing__section {
  padding: 80px 0;
  text-align: center;
}

.page-games-fishing__section:nth-of-type(even) {
  background-color: #2a3240; /* Slightly lighter dark for contrast */
}

.page-games-fishing__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-games-fishing__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #B0B0B0;
}

.page-games-fishing__highlight-text {
  color: #FFD700;
  font-weight: bold;
}

/* Hero Section */
.page-games-fishing__hero {
  background: linear-gradient(135deg, #1A202C 0%, #4a5568 100%); /* Gradient with primary color */
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-games-fishing__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,underwater_pattern,subtle]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-games-fishing__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.page-games-fishing__hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 900px;
  line-height: 1.5;
  z-index: 1;
}

.page-games-fishing__hero-image-wrapper {
  margin-top: 50px;
  width: 80%;
  max-width: 900px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-games-fishing__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.page-games-fishing__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  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;
  color: #1A202C;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-games-fishing__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-games-fishing__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 13px 33px;
}

.page-games-fishing__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-games-fishing__btn--small {
  padding: 10px 25px;
  font-size: 0.9em;
  border-radius: 30px;
  margin-top: 20px;
  display: inline-block;
}

/* Features Section */
.page-games-fishing__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-games-fishing__feature-item {
  background-color: #2a3240;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-fishing__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-games-fishing__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-games-fishing__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-fishing__feature-description {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Game List Section */
.page-games-fishing__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-games-fishing__game-item {
  background-color: #1A202C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-fishing__game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-games-fishing__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-games-fishing__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-games-fishing__game-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Weapons Section */
.page-games-fishing__weapons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-games-fishing__weapon-item {
  background-color: #2a3240;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-games-fishing__weapon-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-games-fishing__weapon-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-fishing__weapon-description {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Strategy Section */
.page-games-fishing__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-games-fishing__strategy-list li {
  background-color: #2a3240;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-games-fishing__strategy-description {
  font-size: 1.05em;
  color: #B0B0B0;
  line-height: 1.7;
}

/* Jackpot Section */
.page-games-fishing__jackpot-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.page-games-fishing__jackpot-list li {
  background-color: #2a3240;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}

.page-games-fishing__jackpot-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-games-fishing__jackpot-list li strong {
  display: block;
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-fishing__jackpot-list li p {
  color: #B0B0B0;
  line-height: 1.6;
}

/* Guide Section */
.page-games-fishing__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-games-fishing__step-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-games-fishing__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #1A202C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-games-fishing__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-fishing__step-description {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Promotions Section */
.page-games-fishing__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-games-fishing__promotion-item {
  background-color: #2a3240;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-fishing__promotion-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-games-fishing__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-games-fishing__promotion-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-games-fishing__promotion-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* App Download Section */
.page-games-fishing__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  text-align: left;
  background-color: #2a3240;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-games-fishing__app-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin-right: 40px;
}

.page-games-fishing__app-text .page-games-fishing__section-title {
  text-align: left;
}

.page-games-fishing__app-text .page-games-fishing__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-games-fishing__app-text .page-games-fishing__section-description {
  text-align: left;
  margin-left: 0;
}

.page-games-fishing__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-games-fishing__app-benefits li {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-games-fishing__app-benefits li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-games-fishing__app-image-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: center;
}

.page-games-fishing__app-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-games-fishing__faq-list {
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-fishing__faq-item {
  background-color: #2a3240;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px 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;
  font-weight: bold;
  color: #FFD700;
}

.page-games-fishing__faq-item.active .page-games-fishing__faq-question::after {
  content: '-';
}

.page-games-fishing__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  display: none; /* Hidden by default */
  margin-top: 15px;
}

.page-games-fishing__faq-item.active .page-games-fishing__faq-answer {
  display: block;
}

/* CTA Section */
.page-games-fishing__section--cta {
  background-color: #1A202C;
  padding: 80px 0;
}

.page-games-fishing__section--cta .page-games-fishing__section-title {
  color: #FFD700;
}

.page-games-fishing__section--cta .page-games-fishing__section-description {
  color: #E0E0E0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-fishing__hero-title {
    font-size: 3em;
  }
  .page-games-fishing__hero-subtitle {
    font-size: 1.2em;
  }
  .page-games-fishing__section-title {
    font-size: 2.2em;
  }
  .page-games-fishing__app-content {
    flex-direction: column;
    padding: 40px;
  }
  .page-games-fishing__app-text {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-games-fishing__app-text .page-games-fishing__section-title,
  .page-games-fishing__app-text .page-games-fishing__section-title::after,
  .page-games-fishing__app-text .page-games-fishing__section-description {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-games-fishing__app-benefits {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-games-fishing__hero {
    padding: 80px 0;
  }
  .page-games-fishing__hero-title {
    font-size: 2.5em;
  }
  .page-games-fishing__hero-subtitle {
    font-size: 1.1em;
  }
  .page-games-fishing__section {
    padding: 60px 0;
  }
  .page-games-fishing__section-title {
    font-size: 1.8em;
  }
  .page-games-fishing__features-grid,
  .page-games-fishing__game-list,
  .page-games-fishing__weapons-grid,
  .page-games-fishing__promotion-grid,
  .page-games-fishing__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-games-fishing__jackpot-list {
    flex-direction: column;
    align-items: center;
  }
  .page-games-fishing__jackpot-list li {
    max-width: 90%;
  }
  .page-games-fishing__strategy-list li,
  .page-games-fishing__faq-list {
    padding: 20px;
  }
  .page-games-fishing__app-content {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-games-fishing__hero-title {
    font-size: 2em;
  }
  .page-games-fishing__hero-subtitle {
    font-size: 1em;
  }
  .page-games-fishing__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-fishing__section-title {
    font-size: 1.6em;
  }
  .page-games-fishing__feature-title,
  .page-games-fishing__game-title,
  .page-games-fishing__weapon-title,
  .page-games-fishing__strategy-title,
  .page-games-fishing__step-title,
  .page-games-fishing__promotion-title,
  .page-games-fishing__faq-question {
    font-size: 1.3em;
  }
  .page-games-fishing__faq-list {
    padding: 15px;
  }
}