/* style/fishing-games.css */

/* Variables */
:root {
  --page-bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--page-bg-color);
}

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

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

.page-fishing-games__dark-section {
  background-color: var(--card-bg-color);
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-secondary-color);
}

.page-fishing-games__text-block .highlight {
  color: var(--text-main-color);
  font-weight: bold;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles main offset */
  overflow: hidden;
  color: var(--text-main-color);
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and content */
}

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

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

.page-fishing-games__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--gold-color);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-secondary-color);
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
  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: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.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: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
}

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

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

.page-fishing-games__grid-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--text-main-color);
}

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

.page-fishing-games__card-title {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-fishing-games__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.page-fishing-games__card-text .highlight {
  color: var(--text-main-color);
  font-weight: bold;
}

/* Lists */
.page-fishing-games__game-list,
.page-fishing-games__promo-list,
.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__list-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__list-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-fishing-games__list-description {
  font-size: 1em;
  line-height: 1.5;
  color: var(--text-secondary-color);
}

.page-fishing-games__full-width-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Section */
.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 {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main-color);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--gold-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

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

.page-fishing-games__faq-question:hover {
  background-color: var(--deep-green-color);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--glow-color);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.page-fishing-games__faq-answer p {
  margin: 0;
}

.page-fishing-games__faq-answer .highlight {
  color: var(--text-main-color);
  font-weight: bold;
}

.page-fishing-games__faq-answer .page-fishing-games__btn-secondary {
  margin-top: 15px;
  display: inline-flex;
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Final CTA */
.page-fishing-games__final-cta {
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 10px 0 40px 0;
  }

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

  .page-fishing-games__hero-image-wrapper {
    max-height: 400px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(30px, 7vw, 45px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(16px, 2.8vw, 20px);
    margin-bottom: 30px;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fishing-games__feature-cards,
  .page-fishing-games__strategy-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  /* Mobile image responsiveness */
  .page-fishing-games img {
    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__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;
  }

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

  .page-fishing-games__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    padding: 10px 0 30px 0;
  }

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

  .page-fishing-games__hero-image-wrapper {
    max-height: 300px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(15px, 3.5vw, 18px);
    margin-bottom: 20px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-fishing-games__list-item {
    padding: 15px;
  }

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

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