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

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

.page-fishing-games__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__section-description--bottom {
  margin-top: 30px;
  margin-bottom: 0;
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-fishing-games__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 0;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.page-fishing-games__cta-button--primary {
  background: #A020F0;
  color: #ffffff;
}

.page-fishing-games__cta-button--primary:hover {
  background: #8A00C8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button--secondary {
  background: #FFD700;
  color: #0a0a0a;
}

.page-fishing-games__cta-button--secondary:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Video Section */
.page-fishing-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-fishing-games__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 32, 240, 0.4);
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 3px solid #A020F0;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none;
}

.page-fishing-games__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-fishing-games__video-link:hover .page-fishing-games__video-overlay {
  opacity: 1;
}

.page-fishing-games__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: rgba(160, 32, 240, 0.8);
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.page-fishing-games__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.page-fishing-games__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: #FFD700;
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 30px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.page-fishing-games__play-now-button:hover {
  background: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Title Section */
.page-fishing-games__title-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-fishing-games__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__title-description {
  font-size: 20px;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* About Section */
.page-fishing-games__about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #A020F0 0%, #7A00C8 100%);
  color: #ffffff;
}

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

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

.page-fishing-games__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-fishing-games__content-wrapper p {
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
  max-width: 900px;
}

.page-fishing-games__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-fishing-games__image--right {
  order: 2;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

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

.page-fishing-games__game-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(160, 32, 240, 0.5);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 1px solid #333333;
}

.page-fishing-games__game-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__game-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__game-title a:hover {
  color: #A020F0;
}

.page-fishing-games__game-description {
  font-size: 15px;
  color: #cccccc;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games__game-button {
  display: inline-block;
  padding: 10px 25px;
  background: #A020F0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games__game-button:hover {
  background: #7A00C8;
  transform: translateY(-1px);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

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

.page-fishing-games__promotion-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-fishing-games__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.page-fishing-games__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 1px solid #333333;
}

.page-fishing-games__promotion-title {
  font-size: 22px;
  font-weight: bold;
  color: #A020F0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__promotion-text {
  font-size: 15px;
  color: #cccccc;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games__promotion-button {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games__promotion-button:hover {
  background: #E6C200;
  transform: translateY(-1px);
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

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

.page-fishing-games__guide-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  padding: 30px;
  text-align: center;
  border: 1px solid #333333;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__guide-icon {
  width: 60px;
  height: 60px;
  background-color: #A020F0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__guide-item h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__guide-item p {
  font-size: 16px;
  color: #cccccc;
}

.page-fishing-games__guide-item p a {
  color: #A020F0;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__guide-item p a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #A020F0 0%, #7A00C8 100%);
  color: #ffffff;
}

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

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 10px;
  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: #2a2a2a;
  border-color: #A020F0;
}

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

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

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

.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 25px;
  opacity: 0;
  background: #2a2a2a;
  color: #cccccc;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border: 1px solid #333333;
  border-top: none;
}

.page-fishing-games__faq-answer p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__faq-answer p a:hover {
  text-decoration: underline;
}

/* Brand Section */
.page-fishing-games__brand-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

.page-fishing-games__brand-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-fishing-games__brand-content p {
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
  max-width: 900px;
}

.page-fishing-games__brand-content .page-fishing-games__image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #A020F0;
}

.page-fishing-games__image--left {
  order: 1;
}

/* Blog Section */
.page-fishing-games__blog-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #A020F0 0%, #7A00C8 100%);
}

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

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

.page-fishing-games__blog-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-fishing-games__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.page-fishing-games__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-fishing-games__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 1px solid #333333;
}

.page-fishing-games__blog-item-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__blog-item-excerpt {
  font-size: 15px;
  color: #cccccc;
  padding: 0 15px;
  margin-bottom: 15px;
}

.page-fishing-games__blog-item-date {
  font-size: 13px;
  color: #999999;
  padding: 0 15px 15px 15px;
  display: block;
}

/* General image responsive styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* General video responsive styles */
.page-fishing-games video,
.page-fishing-games__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__video-section,
.page-fishing-games__video-container,
.page-fishing-games__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 20px 15px;
  }

  .page-fishing-games__section-title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .page-fishing-games__section-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 25px;
    font-size: 16px;
  }

  /* Video Section Mobile */
  .page-fishing-games__video-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-fishing-games__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-fishing-games__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    overflow: hidden !important;
  }
  
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
  }

  .page-fishing-games__video-click-hint {
    font-size: 16px;
    padding: 10px 20px;
  }

  .page-fishing-games__video-cta {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-fishing-games__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Title Section Mobile */
  .page-fishing-games__title-section {
    padding: 50px 15px;
  }

  .page-fishing-games__main-title {
    font-size: 34px;
  }

  .page-fishing-games__title-description {
    font-size: 17px;
  }

  /* About Section Mobile */
  .page-fishing-games__about-section {
    padding: 50px 15px;
  }

  .page-fishing-games__content-wrapper p {
    font-size: 16px;
  }

  .page-fishing-games__image {
    border-radius: 8px;
  }

  /* Games Showcase Section Mobile */
  .page-fishing-games__games-showcase-section {
    padding: 50px 15px;
  }

  .page-fishing-games__game-list {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__game-image {
    height: 200px;
  }

  .page-fishing-games__game-title {
    font-size: 20px;
  }

  /* Promotions Section Mobile */
  .page-fishing-games__promotions-section {
    padding: 50px 15px;
  }

  .page-fishing-games__promotion-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__promotion-image {
    height: 150px;
  }

  .page-fishing-games__promotion-title {
    font-size: 19px;
  }

  /* Guide Section Mobile */
  .page-fishing-games__guide-section {
    padding: 50px 15px;
  }

  .page-fishing-games__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__guide-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .page-fishing-games__guide-item h3 {
    font-size: 19px;
  }

  .page-fishing-games__guide-item p {
    font-size: 15px;
  }

  /* FAQ Section Mobile */
  .page-fishing-games__faq-section {
    padding: 50px 15px;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
    margin-left: 15px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }

  /* Brand Section Mobile */
  .page-fishing-games__brand-section {
    padding: 50px 15px;
  }

  /* Blog Section Mobile */
  .page-fishing-games__blog-section {
    padding: 50px 15px;
  }

  .page-fishing-games__blog-list {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__blog-image {
    height: 150px;
  }

  .page-fishing-games__blog-item-title {
    font-size: 18px;
  }

  .page-fishing-games__blog-item-excerpt {
    font-size: 14px;
  }

  /* Ensure all images are responsive and do not overflow */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Ensure all video elements are responsive and do not overflow */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__title-section,
  .page-fishing-games__about-section,
  .page-fishing-games__games-showcase-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__brand-section,
  .page-fishing-games__blog-section,
  .page-fishing-games__game-card,
  .page-fishing-games__promotion-card,
  .page-fishing-games__guide-item,
  .page-fishing-games__blog-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
}