/* style/fishing-games.css */

:root {
  --page-bg-color: #0D0E12;
  --card-bg-color: #17191F;
  --text-main-color: #FFF3E6;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
}

.page-fishing-games {
  background-color: var(--page-bg-color);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--glow-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

.page-fishing-games__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color);
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--page-bg-color);
  transform: translateY(-2px);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

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

.page-fishing-games__hero-title {
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--glow-color);
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-main-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-cta {
  font-size: 1.2em;
  padding: 16px 40px;
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 80px 0;
}

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

.page-fishing-games__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games__text-block {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-fishing-games__image-block {
  flex: 1;
  min-width: 200px;
}

.page-fishing-games__image-block--center {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

/* Benefits Section */
.page-fishing-games__benefits-section {
  padding: 80px 0;
  background-color: rgba(23, 25, 31, 0.5); /* Slightly lighter dark background */
}

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

.page-fishing-games__benefit-card {
  text-align: center;
}

.page-fishing-games__benefit-title {
  font-size: 1.5em;
  color: var(--glow-color);
  margin-bottom: 15px;
}

.page-fishing-games__benefit-description {
  font-size: 1em;
  color: var(--text-main-color);
}

/* Featured Games Section */
.page-fishing-games__featured-games-section {
  padding: 80px 0;
}

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

.page-fishing-games__game-card {
  text-align: center;
  overflow: hidden;
}

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

.page-fishing-games__game-title {
  font-size: 1.4em;
  color: var(--glow-color);
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-fishing-games__game-cta {
  width: calc(100% - 60px); /* Adjust for padding */
  margin: 0 30px 10px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
  background-color: rgba(23, 25, 31, 0.5); /* Slightly lighter dark background */
}

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

.page-fishing-games__guide-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
}

.page-fishing-games__guide-title {
  font-size: 1.4em;
  color: var(--glow-color);
  margin-bottom: 10px;
}

.page-fishing-games__guide-text {
  font-size: 1em;
  color: var(--text-main-color);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
}

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

.page-fishing-games__promotion-card {
  text-align: center;
}

.page-fishing-games__promotion-title {
  font-size: 1.5em;
  color: var(--glow-color);
  margin-bottom: 15px;
}

.page-fishing-games__promotion-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-fishing-games__promotion-cta {
  width: calc(100% - 60px);
  margin: 0 30px 10px;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us-section {
  padding: 80px 0;
  background-color: rgba(23, 25, 31, 0.5); /* Slightly lighter dark background */
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
}

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

.page-fishing-games__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--glow-color);
  cursor: pointer;
  position: relative;
}

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-main-color);
}

/* CTA Section */
.page-fishing-games__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--deep-orange-color);
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
  color: #ffffff;
  text-shadow: none;
}

.page-fishing-games__cta-section .page-fishing-games__section-description {
  color: #ffffff;
  margin-bottom: 40px;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2.2em, 4.5vw, 3em);
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__content-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__benefits-section,
  .page-fishing-games__featured-games-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-us-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 0;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

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

  /* Mobile specific image, video, button adaptations */
  .page-fishing-games img,
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .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;
    overflow: hidden !important;
  }

  /* Buttons specific */
  .page-fishing-games__cta-button,
  .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;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

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

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

  .page-fishing-games__game-cta,
  .page-fishing-games__promotion-cta {
    width: 100% !important;
    margin: 0;
  }
  
  .page-fishing-games__faq-item summary {
    font-size: 1em;
  }
}