/* style/game-reviews-fish-shooting.css */

/* Variables */
:root {
  --page-game-reviews-fish-shooting-primary-color: #1A202C;
  --page-game-reviews-fish-shooting-accent-color: #FFD700;
  --page-game-reviews-fish-shooting-text-light: #F0F0F0;
  --page-game-reviews-fish-shooting-text-dark: #1A202C;
  --page-game-reviews-fish-shooting-background-dark: #1A202C;
  --page-game-reviews-fish-shooting-background-light: #F8F8F8;
  --page-game-reviews-fish-shooting-secondary-dark: #0f131a;
}

.page-game-reviews-fish-shooting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-game-reviews-fish-shooting-text-dark);
  background-color: var(--page-game-reviews-fish-shooting-background-light);
}

.page-game-reviews-fish-shooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-game-reviews-fish-shooting__hero {
  background: linear-gradient(135deg, var(--page-game-reviews-fish-shooting-background-dark) 0%, #3a475a 100%);
  color: var(--page-game-reviews-fish-shooting-text-light);
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-game-reviews-fish-shooting__hero-content {
  max-width: 800px;
  padding: 20px;
}

.page-game-reviews-fish-shooting__title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--page-game-reviews-fish-shooting-accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-fish-shooting__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-reviews-fish-shooting__cta-button {
  display: inline-block;
  background-color: var(--page-game-reviews-fish-shooting-accent-color);
  color: var(--page-game-reviews-fish-shooting-text-dark);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-reviews-fish-shooting__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-game-reviews-fish-shooting__hero-image {
  width: 100%;
  max-width: 900px;
  margin-top: 20px;
}

.page-game-reviews-fish-shooting__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* General Sections */
.page-game-reviews-fish-shooting__section {
  padding: 60px 0;
  background-color: var(--page-game-reviews-fish-shooting-background-light);
}

.page-game-reviews-fish-shooting__section--dark {
  background-color: var(--page-game-reviews-fish-shooting-background-dark);
  color: var(--page-game-reviews-fish-shooting-text-light);
}

.page-game-reviews-fish-shooting__section--dark .page-game-reviews-fish-shooting__heading {
  color: var(--page-game-reviews-fish-shooting-accent-color);
}

.page-game-reviews-fish-shooting__heading {
  font-size: 2.5em;
  color: var(--page-game-reviews-fish-shooting-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews-fish-shooting__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-game-reviews-fish-shooting-accent-color);
  border-radius: 2px;
}

.page-game-reviews-fish-shooting__sub-heading {
  font-size: 1.8em;
  color: var(--page-game-reviews-fish-shooting-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-game-reviews-fish-shooting__section--dark .page-game-reviews-fish-shooting__sub-heading {
  color: var(--page-game-reviews-fish-shooting-text-light);
}

.page-game-reviews-fish-shooting__heading--gold {
  color: var(--page-game-reviews-fish-shooting-accent-color);
}

.page-game-reviews-fish-shooting__text--light {
  color: #e0e0e0;
}

.page-game-reviews-fish-shooting p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-game-reviews-fish-shooting strong {
  color: var(--page-game-reviews-fish-shooting-primary-color);
}

.page-game-reviews-fish-shooting__section--dark strong {
  color: var(--page-game-reviews-fish-shooting-accent-color);
}

.page-game-reviews-fish-shooting__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-game-reviews-fish-shooting__list li {
  margin-bottom: 10px;
}

/* Features Grid */
.page-game-reviews-fish-shooting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-fish-shooting__feature-item {
  background-color: var(--page-game-reviews-fish-shooting-secondary-dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-reviews-fish-shooting__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-fish-shooting__feature-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-reviews-fish-shooting__feature-item .page-game-reviews-fish-shooting__sub-heading {
  color: var(--page-game-reviews-fish-shooting-accent-color);
  font-size: 1.5em;
  margin-top: 0;
}

.page-game-reviews-fish-shooting__feature-item p {
  color: #e0e0e0;
}

/* CTA Section */
.page-game-reviews-fish-shooting__section--cta {
  background: linear-gradient(135deg, var(--page-game-reviews-fish-shooting-accent-color) 0%, #e6c200 100%);
  color: var(--page-game-reviews-fish-shooting-text-dark);
  text-align: center;
  padding: 80px 0;
}

.page-game-reviews-fish-shooting__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-game-reviews-fish-shooting__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: var(--page-game-reviews-fish-shooting-primary-color);
  color: var(--page-game-reviews-fish-shooting-accent-color);
}

.page-game-reviews-fish-shooting__cta-button--large:hover {
  background-color: #0f131a; /* Darker primary color */
  transform: translateY(-3px);
}

.page-game-reviews-fish-shooting__promotion-banner {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* App Download Section */
.page-game-reviews-fish-shooting__app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-fish-shooting__app-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-game-reviews-fish-shooting__faq {
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.page-game-reviews-fish-shooting__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-game-reviews-fish-shooting__faq-item .page-game-reviews-fish-shooting__sub-heading {
  color: var(--page-game-reviews-fish-shooting-primary-color);
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-reviews-fish-shooting__faq-item p {
  color: #333;
}

.page-game-reviews-fish-shooting__link {
  color: var(--page-game-reviews-fish-shooting-accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews-fish-shooting__link:hover {
  text-decoration: underline;
  color: #e6c200;
}

/* Final CTA Section */
.page-game-reviews-fish-shooting__section--final-cta {
  background: linear-gradient(135deg, var(--page-game-reviews-fish-shooting-background-dark) 0%, #3a475a 100%);
  color: var(--page-game-reviews-fish-shooting-text-light);
  text-align: center;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-reviews-fish-shooting__title {
    font-size: 2.5em;
  }

  .page-game-reviews-fish-shooting__subtitle {
    font-size: 1em;
  }

  .page-game-reviews-fish-shooting__heading {
    font-size: 2em;
  }

  .page-game-reviews-fish-shooting__sub-heading {
    font-size: 1.5em;
  }

  .page-game-reviews-fish-shooting__features-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-fish-shooting__hero {
    padding: 40px 0;
  }

  .page-game-reviews-fish-shooting__section {
    padding: 40px 0;
  }

  .page-game-reviews-fish-shooting__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-fish-shooting__title {
    font-size: 2em;
  }

  .page-game-reviews-fish-shooting__subtitle {
    font-size: 0.9em;
  }

  .page-game-reviews-fish-shooting__heading {
    font-size: 1.8em;
  }

  .page-game-reviews-fish-shooting__sub-heading {
    font-size: 1.3em;
  }

  .page-game-reviews-fish-shooting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews-fish-shooting__promotion-banner,
  .page-game-reviews-fish-shooting__app-image {
    width: 90%;
  }
}