/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  line-height: 1.6;
}

/* Section common styles */
.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-fishing-games__section-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand primary color for titles */
}

.page-fishing-games__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555555;
}

.page-fishing-games__text-block p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-fishing-games__keyword {
  font-weight: bold;
  color: #26A9E0;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is decorative */
  color: #ffffff;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 font size */
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
  background: #1e87b8;
  border-color: #1e87b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
  background: #e0f2f7;
  color: #1e87b8;
  border-color: #1e87b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

/* Grid Layouts */
.page-fishing-games__grid-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-fishing-games__grid-layout--reversed {
  flex-direction: row-reverse;
}

.page-fishing-games__grid-layout .page-fishing-games__text-block,
.page-fishing-games__grid-layout .page-fishing-games__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark bg */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-fishing-games__card-description {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-fishing-games__card .page-fishing-games__btn-secondary {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

/* Registration Guide */
.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__step-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-fishing-games__step-icon {
  font-size: 2em;
  font-weight: bold;
  color: #26A9E0;
  background: #e0f2f7;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-fishing-games__step-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333333;
}

.page-fishing-games__step-description {
  font-size: 1.05em;
  line-height: 1.6;
  color: #555555;
}

/* Tips & Tricks */
.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__list-item {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: left;
}

.page-fishing-games__list-item::before {
  content: '✓';
  color: #26A9E0;
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.page-fishing-games__promo-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-fishing-games__promo-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games__promo-description {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555555;
  flex-grow: 1;
}

.page-fishing-games__promo-note {
  margin-top: 40px;
  font-size: 0.95em;
  color: #777777;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #f0f0f0;
  text-align: left;
}

/* Color Contrast Classes */
.page-fishing-games__dark-bg {
  background: #26A9E0;
  color: #ffffff;
}

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

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__light-bg .page-fishing-games__subtitle {
  color: #555555;
}

.page-fishing-games__light-bg .page-fishing-games__text-block p {
  color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__step-title {
  color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__step-description {
  color: #555555;
}

.page-fishing-games__light-bg .page-fishing-games__promo-title {
  color: #26A9E0;
}

.page-fishing-games__light-bg .page-fishing-games__promo-description {
  color: #555555;
}

/* Links within content */
.page-fishing-games a {
  color: #EA7C07; /* Login color for general links for visibility */
  text-decoration: underline;
}

.page-fishing-games a:hover {
  color: #c46606;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    max-width: 700px;
  }

  .page-fishing-games__section-title {
    font-size: 2.2em;
  }

  .page-fishing-games__subtitle {
    font-size: 1.1em;
  }

  .page-fishing-games__grid-layout {
    flex-direction: column;
  }

  .page-fishing-games__grid-layout--reversed {
    flex-direction: column;
  }

  .page-fishing-games__grid-layout .page-fishing-games__text-block,
  .page-fishing-games__grid-layout .page-fishing-games__image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__hero-section {
    padding: 10px 0 40px 0 !important;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2em, 8vw, 2.8em) !important;
    margin-bottom: 15px;
  }

  .page-fishing-games__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Images responsive */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsive */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }

  /* Buttons responsive */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games__cta-center {
    display: flex;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-fishing-games__section-title {
    font-size: 2em !important;
  }

  .page-fishing-games__subtitle {
    font-size: 1em !important;
  }

  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__card-image {
    height: 180px;
  }

  .page-fishing-games__card-title {
    font-size: 1.5em;
  }

  .page-fishing-games__step-item {
    padding: 20px;
  }

  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 9vw, 2.5em) !important;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em !important;
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
}