.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

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

.page-fishing-games__section-title {
  font-size: 38px;
  color: #CC0000;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-fishing-games__section-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #CC0000, #FFD700);
  overflow: hidden;
}

.page-fishing-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-fishing-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-fishing-games__hero-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-fishing-games__btn-primary:hover {
  background: #a30000;
  border-color: #a30000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__btn-secondary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-center {
  margin-top: 50px;
}

/* About Fishing Games Section */
.page-fishing-games__about-fishing-games {
  background-color: #ffffff;
}

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

.page-fishing-games__grid-item {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__grid-item .page-fishing-games__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__item-title {
  font-size: 24px;
  color: #CC0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__item-text {
  font-size: 16px;
  color: #555555;
}

/* Key Features Section */
.page-fishing-games__key-features {
  background-color: #CC0000;
  color: #ffffff;
}

.page-fishing-games__key-features .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__key-features .page-fishing-games__section-description {
  color: #f0f0f0;
}

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

.page-fishing-games__feature-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.25);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__card-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__card-text {
  font-size: 16px;
  color: #f0f0f0;
}

/* How to Play Section */
.page-fishing-games__how-to-play {
  background-color: #ffffff;
}

.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-fishing-games__step-item {
  background: #fdfdfd;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  padding-left: 70px;
}

.page-fishing-games__step-number {
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 25px;
  width: 40px;
  height: 40px;
  background-color: #CC0000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-item .page-fishing-games__item-title {
  font-size: 20px;
  color: #CC0000;
  margin-top: 0;
}

.page-fishing-games__step-item .page-fishing-games__item-text {
  font-size: 15px;
  color: #666666;
}

.page-fishing-games__image-how-to-play {
  margin-top: 50px;
  padding: 0 10%;
}

.page-fishing-games__image-how-to-play .page-fishing-games__image {
  width: 100%;
  height: auto;
}

.page-fishing-games__additional-text {
  font-size: 17px;
  margin-top: 30px;
  color: #444444;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Game Types Section */
.page-fishing-games__game-types {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-fishing-games__game-types .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__game-types .page-fishing-games__section-description {
  color: #cccccc;
}

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

.page-fishing-games__game-card {
  background: #333333;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-7px);
  background: #444444;
}

.page-fishing-games__game-card .page-fishing-games__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__game-card .page-fishing-games__card-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__game-card .page-fishing-games__card-text {
  font-size: 15px;
  color: #cccccc;
}

/* Strategies Section */
.page-fishing-games__strategies {
  background-color: #f8f8f8;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__strategy-list li {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #CC0000;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 17px;
  color: #333333;
  line-height: 1.5;
}

.page-fishing-games__strategy-list li strong {
  color: #CC0000;
}

.page-fishing-games__image-strategy {
  margin-top: 50px;
  padding: 0 10%;
}

.page-fishing-games__image-strategy .page-fishing-games__image {
  width: 100%;
  height: auto;
}

/* Promotions Section */
.page-fishing-games__promotions {
  background-color: #CC0000;
  color: #ffffff;
}

.page-fishing-games__promotions .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__promotions .page-fishing-games__section-description {
  color: #f0f0f0;
}

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

.page-fishing-games__promo-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.25);
}

.page-fishing-games__promo-card .page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__promo-card .page-fishing-games__card-text {
  font-size: 16px;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__btn-small {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: normal;
  word-wrap: break-word;
}

/* Why VN888 Section */
.page-fishing-games__why-vn888 {
  background-color: #f8f8f8;
}

.page-fishing-games__reason-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

.page-fishing-games__reason-list li {
  background: #ffffff;
  padding: 20px 25px;
  border-left: 4px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 17px;
  color: #333333;
  line-height: 1.5;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-fishing-games__reason-list li:hover {
  transform: translateY(-3px);
  border-color: #CC0000;
}

.page-fishing-games__reason-list li strong {
  color: #CC0000;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #ffffff;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #444444;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-fishing-games__faq-question:active {
  background: #eeeeee;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #CC0000;
  transform: rotate(45deg);
}

/* Final CTA Section */
.page-fishing-games__cta-final {
  background: linear-gradient(135deg, #CC0000, #a30000);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:1920x1080:vn888,fishing_game,underwater_pattern,subtle]') no-repeat center center / cover;
  opacity: 0.1;
  z-index: 1;
}

.page-fishing-games__cta-final-content {
  position: relative;
  z-index: 2;
}

.page-fishing-games__cta-final .page-fishing-games__section-title {
  color: #FFD700;
  font-size: 42px;
}

.page-fishing-games__cta-final .page-fishing-games__section-description {
  color: #f0f0f0;
  font-size: 20px;
  margin-bottom: 50px;
}

.page-fishing-games__cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games__cta-image {
  margin-top: 60px;
  width: 80%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Common dark/light background classes for contrast */
.page-fishing-games__dark-bg {
  color: #ffffff;
  background-color: #CC0000;
}

.page-fishing-games__light-bg {
  color: #333333;
  background-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 44px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__section-description {
    font-size: 17px;
  }
  .page-fishing-games__reason-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__hero-title {
    font-size: 36px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-fishing-games__cta-button {
    padding: 15px 30px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
  }
  .page-fishing-games__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-fishing-games__grid-item, .page-fishing-games__feature-card, .page-fishing-games__game-card, .page-fishing-games__promo-card {
    padding: 20px;
  }
  .page-fishing-games__item-title, .page-fishing-games__card-title {
    font-size: 20px;
  }
  .page-fishing-games__item-text, .page-fishing-games__card-text {
    font-size: 15px;
  }
  .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__step-item {
    padding-left: 60px;
  }
  .page-fishing-games__step-number {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .page-fishing-games__strategy-list li, .page-fishing-games__reason-list li {
    font-size: 15px;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }
  .page-fishing-games__cta-final .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__cta-final .page-fishing-games__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .page-fishing-games__btn-small {
    padding: 8px 20px;
    font-size: 14px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  /* Mobile image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-container,
  .page-fishing-games__promo-card,
  .page-fishing-games__game-card,
  .page-fishing-games__feature-card,
  .page-fishing-games__grid-item,
  .page-fishing-games__step-item,
  .page-fishing-games__faq-list,
  .page-fishing-games__cta-final-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__hero-actions,
  .page-fishing-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}