/* style/fishing-games-latest-introduction.css */
.page-fishing-games-latest-introduction {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text color for light body background */
  background-color: var(--bg-color, #ffffff);
}

.page-fishing-games-latest-introduction__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  background-color: #f0f8ff; /* Light blue background for hero */
  overflow: hidden;
}

.page-fishing-games-latest-introduction__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-fishing-games-latest-introduction__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games-latest-introduction__hero-content {
  max-width: 900px;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: -80px; /* Overlap with image slightly for visual appeal */
  position: relative;
  z-index: 1;
}

.page-fishing-games-latest-introduction__main-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* Responsive font size for H1 */
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games-latest-introduction__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.page-fishing-games-latest-introduction__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-latest-introduction__btn-primary,
.page-fishing-games-latest-introduction__btn-secondary {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games-latest-introduction__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games-latest-introduction__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-fishing-games-latest-introduction__btn-secondary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-fishing-games-latest-introduction__btn-secondary:hover {
  background-color: #c96806;
  border-color: #c96806;
}

.page-fishing-games-latest-introduction__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.page-fishing-games-latest-introduction__section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #26A9E0;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-fishing-games-latest-introduction p {
  margin-bottom: 1.2em;
  color: #333333;
}

.page-fishing-games-latest-introduction__highlight {
  color: #EA7C07;
  font-weight: 600;
}

.page-fishing-games-latest-introduction__image-container {
  margin: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-fishing-games-latest-introduction__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-latest-introduction__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-latest-introduction__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.page-fishing-games-latest-introduction__text-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: 600;
}

.page-fishing-games-latest-introduction__text-link:hover {
  color: #1e87b7;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-fishing-games-latest-introduction {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-latest-introduction__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-fishing-games-latest-introduction__main-title {
    font-size: 2rem;
  }

  .page-fishing-games-latest-introduction__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games-latest-introduction__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-fishing-games-latest-introduction__btn-primary,
  .page-fishing-games-latest-introduction__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-latest-introduction__content-area {
    padding: 40px 15px;
  }

  .page-fishing-games-latest-introduction__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-fishing-games-latest-introduction img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games-latest-introduction__image-container,
  .page-fishing-games-latest-introduction__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-fishing-games-latest-introduction__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important; /* Ensure video takes full height within its wrapper */
  }

  .page-fishing-games-latest-introduction__hero-section {
    padding: 10px 0 40px 0;
  }
}