/* style/index-core-fish-game-products.css */

/* General Page Styling */
.page-index-core-fish-game-products {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #001A33; /* Very dark blue, darker than #00BFFF for high contrast */
}

.page-index-core-fish-game-products__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-core-fish-game-products__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-core-fish-game-products__section-description {
  font-size: 1.1em;
  color: #B0C4DE; /* Light steel blue for descriptions */
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-core-fish-game-products .highlight {
  color: #FFD700;
}

.page-index-core-fish-game-products__inline-link {
  color: #00BFFF; /* Deep ocean blue for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-core-fish-game-products__inline-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Buttons */
.page-index-core-fish-game-products__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.page-index-core-fish-game-products__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A1A1A; /* Very dark grey/black for text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-core-fish-game-products__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-core-fish-game-products__btn--secondary {
  background-color: transparent;
  color: #00BFFF; /* Deep ocean blue text */
  border: 2px solid #00BFFF;
  margin-left: 20px;
}

.page-index-core-fish-game-products__btn--secondary:hover {
  background-color: #00BFFF;
  color: #001A33; /* Very dark blue for text on blue */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.page-index-core-fish-game-products__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
}

.page-index-core-fish-game-products__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Hero Section */
.page-index-core-fish-game-products__hero {
  background: linear-gradient(135deg, #001A33 0%, #003366 100%); /* Dark blue gradient */
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-index-core-fish-game-products__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[IMAGE:hero_main_bg_pattern]'); /* Placeholder for subtle background pattern */
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-core-fish-game-products__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-index-core-fish-game-products__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-index-core-fish-game-products__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-core-fish-game-products__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  z-index: 1;
}

.page-index-core-fish-game-products__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Featured Games Section */
.page-index-core-fish-game-products__featured-games {
  background-color: #002240; /* Slightly lighter dark blue */
}

.page-index-core-fish-game-products__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-core-fish-game-products__game-card {
  background-color: #003366; /* Medium dark blue for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-core-fish-game-products__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-core-fish-game-products__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-core-fish-game-products__game-description {
  font-size: 0.95em;
  color: #B0C4DE;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Why Choose Section */
.page-index-core-fish-game-products__why-choose {
  background: linear-gradient(135deg, #003366 0%, #004D99 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 50px;
}

.page-index-core-fish-game-products__why-choose-content {
  flex: 1;
  min-width: 300px;
}

.page-index-core-fish-game-products__why-choose-content .page-index-core-fish-game-products__section-title,
.page-index-core-fish-game-products__why-choose-content .page-index-core-fish-game-products__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-index-core-fish-game-products__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-index-core-fish-game-products__feature-list li {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-index-core-fish-game-products__feature-list li .icon-check {
  color: #FFD700;
  font-size: 1.3em;
  margin-right: 15px;
  /* Basic icon style, assuming a font icon or SVG */
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #FFD700;
  border-radius: 50%;
  line-height: 18px;
  text-align: center;
}

.page-index-core-fish-game-products__feature-list li .icon-check::before {
  content: '✓'; /* Unicode checkmark */
  font-size: 1.1em;
  position: relative;
  top: -1px;
}

.page-index-core-fish-game-products__why-choose-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-core-fish-game-products__why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Bonuses Section */
.page-index-core-fish-game-products__bonuses {
  background-color: #002240;
}

.page-index-core-fish-game-products__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-core-fish-game-products__bonus-card {
  background-color: #003366;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-core-fish-game-products__bonus-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-core-fish-game-products__bonus-card p {
  font-size: 1em;
  color: #B0C4DE;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Mobile App Section */
.page-index-core-fish-game-products__mobile-app {
  background: linear-gradient(135deg, #004D99 0%, #0066CC 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 50px;
}

.page-index-core-fish-game-products__mobile-app-content {
  flex: 1;
  min-width: 300px;
}

.page-index-core-fish-game-products__mobile-app-content .page-index-core-fish-game-products__section-title,
.page-index-core-fish-game-products__mobile-app-content .page-index-core-fish-game-products__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-index-core-fish-game-products__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-core-fish-game-products__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsible Gaming Section */
.page-index-core-fish-game-products__responsible-gaming {
  background-color: #002240;
  text-align: center;
}

.page-index-core-fish-game-products__responsible-gaming .page-index-core-fish-game-products__section-description {
  margin-bottom: 20px;
}

/* CTA Section */
.page-index-core-fish-game-products__cta {
  background: linear-gradient(135deg, #FFD700 0%, #E6C200 100%); /* Gold gradient for CTA */
  padding: 80px 20px;
  color: #1A1A1A; /* Dark text on gold background */
}

.page-index-core-fish-game-products__cta .page-index-core-fish-game-products__section-title {
  color: #1A1A1A; /* Dark text for title on gold background */
  text-shadow: none;
}

.page-index-core-fish-game-products__cta .page-index-core-fish-game-products__section-description {
  color: #333333; /* Darker grey for description on gold background */
  margin-bottom: 50px;
}

.page-index-core-fish-game-products__cta .page-index-core-fish-game-products__btn--primary {
  background-color: #003366; /* Dark blue button on gold background */
  color: #FFD700; /* Gold text on dark blue button */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-core-fish-game-products__cta .page-index-core-fish-game-products__btn--primary:hover {
  background-color: #004D99;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-core-fish-game-products__hero {
    flex-direction: column-reverse;
  }

  .page-index-core-fish-game-products__hero-title {
    font-size: 2.8em;
  }

  .page-index-core-fish-game-products__hero-description {
    font-size: 1.1em;
  }

  .page-index-core-fish-game-products__why-choose,
  .page-index-core-fish-game-products__mobile-app {
    flex-direction: column;
  }

  .page-index-core-fish-game-products__why-choose-content,
  .page-index-core-fish-game-products__mobile-app-content {
    order: 2;
  }

  .page-index-core-fish-game-products__why-choose-image-wrapper,
  .page-index-core-fish-game-products__mobile-app-image-wrapper {
    order: 1;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-index-core-fish-game-products__section-title {
    font-size: 2.2em;
  }

  .page-index-core-fish-game-products__section-description {
    font-size: 1em;
  }

  .page-index-core-fish-game-products__hero-title {
    font-size: 2.2em;
  }

  .page-index-core-fish-game-products__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-core-fish-game-products__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-index-core-fish-game-products__game-grid,
  .page-index-core-fish-game-products__bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-core-fish-game-products__section {
    padding: 60px 15px;
  }

  .page-index-core-fish-game-products__hero-title {
    font-size: 1.8em;
  }

  .page-index-core-fish-game-products__hero-description {
    font-size: 0.9em;
  }

  .page-index-core-fish-game-products__btn {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .page-index-core-fish-game-products__hero-content .page-index-core-fish-game-products__btn--secondary {
    margin-top: 15px;
  }

  .page-index-core-fish-game-products__feature-list li {
    font-size: 1em;
  }
}