:root {
  --primary-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: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

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

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

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

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

.page-fishing-games__text-block {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is a small decorative top padding */
  overflow: hidden;
  background-color: var(--deep-green);
}

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

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

.page-fishing-games__main-title {
  color: var(--gold);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  /* No fixed font-size, relying on context and responsive scaling */
}

.page-fishing-games__hero-description {
  color: var(--text-main);
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

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

.page-fishing-games__btn-secondary:hover {
  background-color: var(--border);
  color: #ffffff;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.95em;
}

/* Game Types Grid */
.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__game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  border: 1px solid var(--border);
}

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

.page-fishing-games__game-card-title {
  color: var(--text-main);
  font-size: 1.5em;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-fishing-games__game-card-description {
  color: var(--text-secondary);
  padding: 0 20px;
  margin-bottom: 25px;
  font-size: 0.95em;
}

/* Lists */
.page-fishing-games__ordered-list,
.page-fishing-games__unordered-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__ordered-list li,
.page-fishing-games__unordered-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__ordered-list li p,
.page-fishing-games__unordered-list li p {
  color: var(--text-secondary);
  font-size: 1em;
  text-align: left;
  margin-bottom: 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__promotion-card {
  text-align: center;
  padding-bottom: 30px;
}

.page-fishing-games__promotion-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.page-fishing-games__promotion-title {
  color: var(--text-main);
  font-size: 1.5em;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-fishing-games__promotion-description {
  color: var(--text-secondary);
  padding: 0 20px;
  margin-bottom: 25px;
  font-size: 0.95em;
}

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

.page-fishing-games__feature-item {
  text-align: center;
  padding: 30px 20px;
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-fishing-games__feature-description {
  color: var(--text-secondary);
  font-size: 0.95em;
}

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

.page-fishing-games__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: var(--text-main);
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: var(--deep-green);
}

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

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary);
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__section-spacing {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 1em;
  }
  .page-fishing-games__main-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .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: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promotions-grid,
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__game-card-image,
  .page-fishing-games__promotion-image {
    height: 200px;
  }
  .page-fishing-games__game-card-title,
  .page-fishing-games__promotion-title {
    font-size: 1.3em;
  }
  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }

  /* Mobile responsive images/videos/buttons - IMPORTANT */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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__hero-section,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promotions-grid,
  .page-fishing-games__features-grid,
  .page-fishing-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
  }
  .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;
    /* padding-left: 15px; */ /* Handled by parent container padding */
    /* padding-right: 15px; */
  }
}