/* style/fishing-games.css */

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

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

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

.page-fishing-games__bg-pattern {
  background-color: var(--g6bet-deep-green);
  background-image: radial-gradient(circle, var(--g6bet-deep-green) 10%, transparent 10%), radial-gradient(circle, var(--g6bet-deep-green) 10%, transparent 10%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  color: var(--g6bet-text-main);
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(8, 22, 15, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transform: translateY(-50px);
  margin-bottom: -50px; /* Adjust to pull content up */
}

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--g6bet-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  color: var(--g6bet-text-secondary);
  margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  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(--g6bet-button-gradient);
  color: var(--g6bet-text-main);
  border: 2px solid var(--g6bet-primary-color);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

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

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--g6bet-gold);
  border: 2px solid var(--g6bet-gold);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--g6bet-gold);
  color: var(--g6bet-background);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

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

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

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--g6bet-gold);
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__section-intro {
  font-size: 1.1rem;
  color: var(--g6bet-text-secondary);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__text-block {
  text-align: left;
  font-size: 1rem;
  color: var(--g6bet-text-main);
}

.page-fishing-games__text-block p {
  margin-bottom: 20px;
  color: var(--g6bet-text-main);
}

.page-fishing-games__text-block h3 {
  color: var(--g6bet-gold);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.page-fishing-games__text-block strong {
  color: var(--g6bet-gold);
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__image-centered {
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: var(--g6bet-gold);
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

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

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

.page-fishing-games__game-card {
  background-color: var(--g6bet-card-bg);
  border: 1px solid var(--g6bet-border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games__game-description {
  font-size: 0.95rem;
  color: var(--g6bet-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-fishing-games__more-games-text {
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--g6bet-text-secondary);
}

.page-fishing-games__guide-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
}

.page-fishing-games__guide-steps {
  flex: 1;
}

.page-fishing-games__step-item {
  background-color: var(--g6bet-card-bg);
  border: 1px solid var(--g6bet-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 1.5rem;
  color: var(--g6bet-gold);
  margin-bottom: 10px;
}

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

.page-fishing-games__guide-image {
  flex: 1;
  max-width: 50%;
  object-fit: contain;
  align-self: center;
}

.page-fishing-games__strategy-list {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-fishing-games__strategy-list li {
  background-color: var(--g6bet-card-bg);
  border: 1px solid var(--g6bet-border);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--g6bet-text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__strategy-list li strong {
  color: var(--g6bet-gold);
}

.page-fishing-games__promotion-list {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-fishing-games__promotion-list li {
  background-color: var(--g6bet-card-bg);
  border: 1px solid var(--g6bet-border);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--g6bet-text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__promotion-list li strong {
  color: var(--g6bet-gold);
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: var(--g6bet-card-bg);
  border: 1px solid var(--g6bet-border);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--g6bet-text-main);
}

.page-fishing-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--g6bet-gold);
}

.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.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: var(--g6bet-glow);
}

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

.page-fishing-games__cta-banner {
  padding: 80px 20px;
  background-color: var(--g6bet-deep-green);
  background-image: linear-gradient(rgba(10, 75, 44, 0.8), rgba(10, 75, 44, 0.8)), url('[GALLERY:cta_banner:1920x400:g6bet fishing game,call to action,underwater,vibrant,green gold,secure registration]');
  background-size: cover;
  background-position: center;
  color: var(--g6bet-text-main);
  border-top: 5px solid var(--g6bet-gold);
}

.page-fishing-games__title-glow {
  color: var(--g6bet-gold);
  text-shadow: 0 0 15px var(--g6bet-glow);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    transform: translateY(-30px);
    margin-bottom: -30px;
  }

  .page-fishing-games__hero-image {
    max-height: 60vh;
  }

  .page-fishing-games__guide-flex {
    flex-direction: column;
    align-items: center;
  }

  .page-fishing-games__guide-image {
    max-width: 80%;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-fishing-games__hero-image {
    max-height: 50vh;
  }

  .page-fishing-games__hero-content {
    padding: 15px;
    transform: translateY(-20px);
    margin-bottom: -20px;
  }

  .page-fishing-games__main-title {
    font-size: 2rem;
  }

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

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

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

  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__section-title {
    font-size: 1.8rem;
  }

  .page-fishing-games__section-intro {
    font-size: 1rem;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__guide-image {
    max-width: 100%;
  }

  .page-fishing-games__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

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

  .page-fishing-games__cta-banner {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.6rem;
  }

  .page-fishing-games__section-title {
    font-size: 1.5rem;
  }

  .page-fishing-games__hero-content {
    padding: 10px;
  }

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

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