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

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

.page-fishing-games__dark-bg {
  background-color: var(--background);
  color: var(--text-main);
}

.page-fishing-games__light-bg {
  background-color: #11271B; /* Card BG for contrast */
  color: var(--text-main);
}

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

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

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

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

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

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

.page-fishing-games__hero-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Clamp for responsive H1 */
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

/* Buttons */
.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;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

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

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

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

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

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

.page-fishing-games__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  min-height: 200px;
  box-sizing: border-box;
}

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

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

.page-fishing-games__card-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
}

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

/* Games Showcase */
.page-fishing-games__games-showcase {
  padding: 80px 0;
}

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

.page-fishing-games__game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-fishing-games__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__game-card-title {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--gold);
  margin: 20px 0 10px;
}

.page-fishing-games__game-card-text {
  font-size: 1em;
  color: var(--text-secondary);
  padding: 0 20px 20px;
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
  margin-bottom: 20px;
}

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

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

.page-fishing-games__step-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-fishing-games__step-number {
  font-size: 3em;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 15px;
}

.page-fishing-games__step-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
}

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

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

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

.page-fishing-games__strategy-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

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

.page-fishing-games__strategy-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
}

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

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

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

.page-fishing-games__promo-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

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

.page-fishing-games__promo-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
}

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

/* Access Guide Section */
.page-fishing-games__access-guide-section {
  padding: 80px 0;
}

.page-fishing-games__access-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__access-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__access-text {
  flex: 2 1 500px;
  color: var(--text-secondary);
}

.page-fishing-games__access-subtitle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--text-main);
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-fishing-games__access-text p {
  margin-bottom: 15px;
}

.page-fishing-games__access-text ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-fishing-games__access-text li {
  margin-bottom: 8px;
}

/* 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);
  border: 1px solid var(--divider);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-fishing-games__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
  background-color: #11271B; /* Slightly darker than card-bg */
  color: var(--text-main);
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider);
}

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

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__access-content {
    flex-direction: column;
  }
  .page-fishing-games__access-image {
    flex: none;
    width: 100%;
  }
  .page-fishing-games__access-text {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 30px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .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-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-fishing-games__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-fishing-games__advantages-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__access-guide-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding: 50px 0;
  }
  .page-fishing-games__card,
  .page-fishing-games__game-card,
  .page-fishing-games__step-item,
  .page-fishing-games__strategy-item,
  .page-fishing-games__promo-item {
    padding: 20px;
  }
  .page-fishing-games__card-image,
  .page-fishing-games__game-card-image,
  .page-fishing-games__strategy-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__access-image,
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-fishing-games__card,
  .page-fishing-games__section,
  .page-fishing-games__box,
  .page-fishing-games__game-card,
  .page-fishing-games__step-item,
  .page-fishing-games__strategy-item,
  .page-fishing-games__promo-item,
  .page-fishing-games__faq-item,
  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fishing-games__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 1.2em;
  }
  .page-fishing-games__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-fishing-games__access-subtitle {
    font-size: 1.5em;
  }
}

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

/* Ensure color contrast */
.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3 {
  color: var(--text-main);
}

.page-fishing-games p,
.page-fishing-games li {
  color: var(--text-secondary);
}

.page-fishing-games__hero-title {
  color: var(--gold);
}

.page-fishing-games__btn-primary {
  color: var(--text-main);
}

.page-fishing-games__btn-secondary {
  color: var(--main-color);
}

.page-fishing-games__btn-secondary:hover {
  color: var(--text-main);
}

.page-fishing-games__card-title {
  color: var(--text-main);
}

.page-fishing-games__game-card-title {
  color: var(--gold);
}

.page-fishing-games__step-number {
  color: var(--main-color);
}

.page-fishing-games__step-title {
  color: var(--text-main);
}

.page-fishing-games__strategy-title {
  color: var(--text-main);
}

.page-fishing-games__promo-title {
  color: var(--text-main);
}

.page-fishing-games__access-subtitle {
  color: var(--text-main);
}

.page-fishing-games__faq-item summary {
  color: var(--text-main);
}

.page-fishing-games__faq-toggle {
  color: var(--main-color);
}

.page-fishing-games__faq-answer {
  color: var(--text-secondary);
}