/* style/fish-shooting-games-types-features.css */

.page-fish-shooting-games-types-features {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-fish-shooting-games-types-features .highlight-text {
  color: #FFD700; /* Gold */
  font-weight: bold;
}

/* Hero Section */
.page-fish-shooting-games-types-features__hero {
  position: relative;
  width: 100%;
  height: 500px; /* Increased height for better visual */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.page-fish-shooting-games-types-features__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-fish-shooting-games-types-features__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 191, 255, 0.7), rgba(255, 215, 0, 0.5)); /* #00BFFF to #FFD700 */
  z-index: 2;
}

.page-fish-shooting-games-types-features__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-fish-shooting-games-types-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-weight: bold;
}

.page-fish-shooting-games-types-features__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

/* General Section Styling */
.page-fish-shooting-games-types-features__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-fish-shooting-games-types-features__section:nth-of-type(even) {
  background-color: #f0f8ff; /* Light blue tint for alternating sections */
}

.page-fish-shooting-games-types-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fish-shooting-games-types-features__section-title {
  font-size: 2.5em;
  color: #00BFFF; /* Deep Sea Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fish-shooting-games-types-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold */
  border-radius: 2px;
}

.page-fish-shooting-games-types-features__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-fish-shooting-games-types-features__paragraph strong {
  color: #0086b3; /* Darker blue for strong text */
}

/* Buttons */
.page-fish-shooting-games-types-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fish-shooting-games-types-features__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black for contrast */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-fish-shooting-games-types-features__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-fish-shooting-games-types-features__btn--secondary {
  background-color: #00BFFF; /* Deep Sea Blue */
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.page-fish-shooting-games-types-features__btn--secondary:hover {
  background-color: #009acd; /* Darker blue */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.6);
}

.page-fish-shooting-games-types-features__inline-link {
  color: #00BFFF; /* Deep Sea Blue */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fish-shooting-games-types-features__inline-link:hover {
  color: #FFD700; /* Gold */
  text-decoration: underline;
}

/* Game Types Grid */
.page-fish-shooting-games-types-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fish-shooting-games-types-features__grid-item {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 25px;
}

.page-fish-shooting-games-types-features__grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-fish-shooting-games-types-features__grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-fish-shooting-games-types-features__grid-title {
  font-size: 1.8em;
  color: #00BFFF; /* Deep Sea Blue */
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-fish-shooting-games-types-features__grid-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px;
  text-align: justify;
}

/* Features List */
.page-fish-shooting-games-types-features__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fish-shooting-games-types-features__feature-list li {
  background-color: #f0f8ff;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-fish-shooting-games-types-features__feature-title {
  font-size: 1.6em;
  color: #00BFFF; /* Deep Sea Blue */
  margin-bottom: 10px;
}

.page-fish-shooting-games-types-features__feature-description {
  font-size: 1.05em;
  color: #555;
  text-align: justify;
}

/* Guide Steps */
.page-fish-shooting-games-types-features__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fish-shooting-games-types-features__guide-step {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-fish-shooting-games-types-features__guide-step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-fish-shooting-games-types-features__guide-step-description {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

/* Benefits Cards */
.page-fish-shooting-games-types-features__benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fish-shooting-games-types-features__benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 5px solid #00BFFF; /* Deep Sea Blue accent */
}

.page-fish-shooting-games-types-features__card-title {
  font-size: 1.6em;
  color: #00BFFF; /* Deep Sea Blue */
  margin-bottom: 15px;
}

.page-fish-shooting-games-types-features__card-description {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

/* Call to Action */
.page-fish-shooting-games-types-features__cta {
  background: linear-gradient(135deg, #00BFFF, #FFD700); /* Blue to Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
  border-radius: 15px;
  margin-left: 20px;
  margin-right: 20px;
}

.page-fish-shooting-games-types-features__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-fish-shooting-games-types-features__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-fish-shooting-games-types-features__cta-content {
  max-width: 700px;
}

.page-fish-shooting-games-types-features__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.page-fish-shooting-games-types-features__cta-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

/* Conclusion */
.page-fish-shooting-games-types-features__conclusion {
  background-color: #f0f8ff;
  padding: 60px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fish-shooting-games-types-features__hero-title {
    font-size: 2.8em;
  }
  .page-fish-shooting-games-types-features__hero-subtitle {
    font-size: 1.3em;
  }
  .page-fish-shooting-games-types-features__section-title {
    font-size: 2em;
  }
  .page-fish-shooting-games-types-features__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-fish-shooting-games-types-features__guide-steps,
  .page-fish-shooting-games-types-features__benefit-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-fish-shooting-games-types-features__cta-title {
    font-size: 2.2em;
  }
  .page-fish-shooting-games-types-features__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-fish-shooting-games-types-features__hero {
    height: 400px;
  }
  .page-fish-shooting-games-types-features__hero-title {
    font-size: 2.2em;
  }
  .page-fish-shooting-games-types-features__hero-subtitle {
    font-size: 1.1em;
  }
  .page-fish-shooting-games-types-features__section {
    padding: 40px 0;
  }
  .page-fish-shooting-games-types-features__section-title {
    font-size: 1.8em;
  }
  .page-fish-shooting-games-types-features__paragraph {
    font-size: 1em;
  }
  .page-fish-shooting-games-types-features__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fish-shooting-games-types-features__grid {
    grid-template-columns: 1fr;
  }
  .page-fish-shooting-games-types-features__feature-list li {
    padding: 20px 25px;
  }
  .page-fish-shooting-games-types-features__feature-title {
    font-size: 1.4em;
  }
  .page-fish-shooting-games-types-features__guide-steps,
  .page-fish-shooting-games-types-features__benefit-cards {
    grid-template-columns: 1fr;
  }
  .page-fish-shooting-games-types-features__cta {
    padding: 60px 0;
  }
  .page-fish-shooting-games-types-features__cta-title {
    font-size: 1.8em;
  }
  .page-fish-shooting-games-types-features__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fish-shooting-games-types-features__hero {
    height: 300px;
  }
  .page-fish-shooting-games-types-features__hero-title {
    font-size: 1.8em;
  }
  .page-fish-shooting-games-types-features__hero-subtitle {
    font-size: 0.9em;
  }
  .page-fish-shooting-games-types-features__section-title {
    font-size: 1.5em;
  }
  .page-fish-shooting-games-types-features__grid-title {
    font-size: 1.5em;
  }
  .page-fish-shooting-games-types-features__feature-title,
  .page-fish-shooting-games-types-features__card-title {
    font-size: 1.3em;
  }
}