/* style/fishing-games.css */

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

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

.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 top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  background-color: var(--onbet-deep-green);
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  max-width: 900px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--onbet-gold);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.2rem;
  color: var(--onbet-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-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: bold;
  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(--onbet-button-gradient);
  color: #ffffff;
  border: 2px solid var(--onbet-glow);
  box-shadow: 0 0 15px var(--onbet-glow);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--onbet-glow);
}

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

.page-fishing-games__btn-secondary:hover {
  background: var(--onbet-gold);
  color: var(--onbet-background);
  transform: translateY(-3px);
}

.page-fishing-games__section {
  padding: 80px 20px;
  text-align: center;
}

.page-fishing-games__intro-section {
  background-color: var(--onbet-background);
  color: var(--onbet-text-main);
}

.page-fishing-games__game-types-section,
.page-fishing-games__safety-section,
.page-fishing-games__call-to-action {
  background-color: var(--onbet-deep-green);
  color: var(--onbet-text-main);
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--onbet-gold);
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--onbet-text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__image-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__content-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__image-content-wrapper .page-fishing-games__text-block {
  flex: 1;
  min-width: 400px;
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--onbet-text-main);
}

.page-fishing-games__sub-title {
  font-size: 1.8rem;
  color: var(--onbet-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__image-content-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.page-fishing-games__image-content-wrapper li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: var(--onbet-text-secondary);
}

.page-fishing-games__image-content-wrapper li::before {
  content: '🐟';
  position: absolute;
  left: 0;
  color: var(--onbet-gold);
}

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

.page-fishing-games__card {
  background-color: var(--onbet-card-bg);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--onbet-border);
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: var(--onbet-gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__card-description {
  font-size: 1rem;
  color: var(--onbet-text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__guide-item {
  background-color: var(--onbet-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--onbet-border);
}

.page-fishing-games__guide-title {
  font-size: 1.6rem;
  color: var(--onbet-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__guide-item p {
  color: var(--onbet-text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

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

.page-fishing-games__promotion-cards .page-fishing-games__card-image {
  height: 250px;
}

.page-fishing-games__safety-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__feature-item {
  background-color: var(--onbet-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--onbet-border);
}

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

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: var(--onbet-text-secondary);
}

.page-fishing-games__faq-section {
  background-color: var(--onbet-background);
  color: var(--onbet-text-main);
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--onbet-gold);
  cursor: pointer;
  background-color: var(--onbet-deep-green);
  border-bottom: 1px solid var(--onbet-divider);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

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

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

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

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

.page-fishing-games__call-to-action {
  padding-bottom: 80px;
}

.page-fishing-games__call-to-action .page-fishing-games__section-title {
  margin-bottom: 20px;
}

.page-fishing-games__call-to-action .page-fishing-games__text-block {
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-fishing-games__section-title {
    font-size: 2.2rem;
  }
  .page-fishing-games__content-image,
  .page-fishing-games__image-content-wrapper .page-fishing-games__text-block {
    min-width: unset;
    width: 100%;
  }
}

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

  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, small top padding for section */
  }

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

  .page-fishing-games__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games__hero-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: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section {
    padding: 50px 15px;
  }

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

  .page-fishing-games__text-block {
    font-size: 1rem;
  }

  .page-fishing-games__image-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__content-image,
  .page-fishing-games__card-image,
  .page-fishing-games__promotion-cards .page-fishing-games__card-image,
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__container,
  .page-fishing-games__card,
  .page-fishing-games__guide-item,
  .page-fishing-games__feature-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fishing-games__card-title {
    font-size: 1.3rem;
  }

  .page-fishing-games__guide-item,
  .page-fishing-games__feature-item {
    padding: 20px;
  }

  .page-fishing-games__guide-title,
  .page-fishing-games__feature-title {
    font-size: 1.4rem;
  }

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

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

@media (max-width: 480px) {
  .page-fishing-games__section-title {
    font-size: 1.8rem;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
}