/* style/fish-shooting-games.css */
.page-fish-shooting-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light grey for general text on dark backgrounds */
  background-color: #1a1a1a; /* Very dark background for overall page */
}

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

.page-fish-shooting-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.page-fish-shooting-games__section-title .highlight {
  color: #00BFFF; /* Deep Sky Blue for highlights in titles */
}

.page-fish-shooting-games__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #cccccc; /* Slightly lighter grey for paragraph text */
}

.page-fish-shooting-games__text-content .keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-fish-shooting-games__hero-section {
  background: linear-gradient(135deg, #0086b3, #00BFFF); /* Darker blue to deep sky blue */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff; /* White text on blue background */
}

.page-fish-shooting-games__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-right: 40px;
  text-align: left;
}

.page-fish-shooting-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #FFD700; /* Gold title on blue background */
}

.page-fish-shooting-games__hero-title .highlight {
  color: #ffffff; /* White highlight in title */
}

.page-fish-shooting-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #f0f0f0; /* Light grey description on blue background */
}

.page-fish-shooting-games__hero-description .keyword {
  color: #FFD700;
}

.page-fish-shooting-games__hero-image-wrapper {
  width: 500px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatImage 6s ease-in-out infinite;
}

.page-fish-shooting-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.page-fish-shooting-games__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-fish-shooting-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text on gold button */
  margin-right: 20px;
}

.page-fish-shooting-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-fish-shooting-games__btn--secondary {
  background-color: #00BFFF; /* Deep Sky Blue button */
  color: #ffffff; /* White text on blue button */
  border: 2px solid #00BFFF;
}

.page-fish-shooting-games__btn--secondary:hover {
  background-color: #0099cc;
  border-color: #0099cc;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

.page-fish-shooting-games__btn--link {
  background: none;
  border: 2px solid #FFD700;
  color: #FFD700;
  padding: 10px 25px;
  font-size: 1em;
}

.page-fish-shooting-games__btn--link:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-fish-shooting-games__intro-section, .page-fish-shooting-games__games-showcase, .page-fish-shooting-games__strategy-guide, .page-fish-shooting-games__exclusive-games, .page-fish-shooting-games__promotions, .page-fish-shooting-games__details-list, .page-fish-shooting-games__cta-section {
  padding: 80px 0;
  position: relative;
}

.page-fish-shooting-games__intro-section {
  background-color: #222222;
}

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

.page-fish-shooting-games__feature-item {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fish-shooting-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting-games__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fish-shooting-games__feature-description {
  font-size: 1em;
  color: #b0b0b0;
}

.page-fish-shooting-games__games-showcase {
  background-color: #1a1a1a;
}

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

.page-fish-shooting-games__game-card {
  background-color: #2c2c2c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fish-shooting-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.page-fish-shooting-games__game-title {
  font-size: 1.6em;
  color: #00BFFF;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-fish-shooting-games__game-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-fish-shooting-games__strategy-guide {
  background-color: #222222;
}

.page-fish-shooting-games__strategy-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
}

.page-fish-shooting-games__strategy-text {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.page-fish-shooting-games__strategy-text h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-fish-shooting-games__strategy-text p {
  font-size: 1.05em;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-fish-shooting-games__strategy-text p .keyword {
  color: #00BFFF;
}

.page-fish-shooting-games__strategy-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fish-shooting-games__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting-games__exclusive-games {
  background-color: #1a1a1a;
}

.page-fish-shooting-games__exclusive-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-fish-shooting-games__exclusive-image {
  flex: 1;
  min-width: 400px;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting-games__exclusive-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-fish-shooting-games__exclusive-text h3 {
  font-size: 2.2em;
  color: #00BFFF;
  margin-bottom: 20px;
}

.page-fish-shooting-games__exclusive-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-fish-shooting-games__exclusive-text ul li {
  margin-bottom: 10px;
  color: #cccccc;
  display: flex;
  align-items: flex-start;
}

.page-fish-shooting-games__exclusive-text ul li p {
  margin: 0;
  padding-left: 10px;
}

.page-fish-shooting-games__exclusive-text ul li::before {
  content: '⚡'; /* Unicode lightning bolt */
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1.6;
}

.page-fish-shooting-games__promotions {
  background-color: #222222;
}

.page-fish-shooting-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fish-shooting-games__promo-card {
  background-color: #2c2c2c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fish-shooting-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-fish-shooting-games__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-fish-shooting-games__promo-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-fish-shooting-games__details-list {
  background-color: #1a1a1a;
}

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

.page-fish-shooting-games__detail-card {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-fish-shooting-games__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting-games__detail-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-fish-shooting-games__detail-title a {
  color: #00BFFF; /* Deep Sky Blue for detail page titles */
  text-decoration: none;
  font-weight: bold;
}

.page-fish-shooting-games__detail-title a:hover {
  text-decoration: underline;
  color: #4dd2ff;
}

.page-fish-shooting-games__detail-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-fish-shooting-games__cta-section {
  background: linear-gradient(135deg, #00BFFF, #0086b3); /* Deep Sky Blue to darker blue */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-fish-shooting-games__cta-section .page-fish-shooting-games__section-title {
  color: #FFD700; /* Gold title on blue background */
}

.page-fish-shooting-games__cta-section .page-fish-shooting-games__text-content {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-fish-shooting-games__cta-buttons .page-fish-shooting-games__btn {
  margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fish-shooting-games__hero-content {
    margin-right: 20px;
  }
  .page-fish-shooting-games__hero-title {
    font-size: 3em;
  }
  .page-fish-shooting-games__hero-description {
    font-size: 1.1em;
  }
  .page-fish-shooting-games__hero-image-wrapper {
    width: 400px;
    height: 280px;
  }
  .page-fish-shooting-games__exclusive-image {
    min-width: 300px;
    max-width: 100%;
  }
  .page-fish-shooting-games__exclusive-content {
    flex-direction: column;
    align-items: center;
  }
  .page-fish-shooting-games__exclusive-text {
    text-align: center;
    padding: 0 20px;
  }
  .page-fish-shooting-games__exclusive-text ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 768px) {
  .page-fish-shooting-games__hero-section {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-fish-shooting-games__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-fish-shooting-games__hero-title {
    font-size: 2.5em;
  }
  .page-fish-shooting-games__hero-description {
    font-size: 1em;
  }
  .page-fish-shooting-games__hero-image-wrapper {
    width: 80%;
    height: auto;
  }
  .page-fish-shooting-games__section-title {
    font-size: 2em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-fish-shooting-games__text-content {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-fish-shooting-games__intro-section, .page-fish-shooting-games__games-showcase, .page-fish-shooting-games__strategy-guide, .page-fish-shooting-games__exclusive-games, .page-fish-shooting-games__promotions, .page-fish-shooting-games__details-list, .page-fish-shooting-games__cta-section {
    padding: 60px 0;
  }
  .page-fish-shooting-games__strategy-content {
    flex-direction: column;
    align-items: center;
  }
  .page-fish-shooting-games__strategy-text {
    text-align: center;
  }
  .page-fish-shooting-games__strategy-text h3 {
    font-size: 1.5em;
  }
  .page-fish-shooting-games__strategy-text p {
    font-size: 0.95em;
  }
  .page-fish-shooting-games__cta-buttons .page-fish-shooting-games__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-fish-shooting-games__hero-title {
    font-size: 2em;
  }
  .page-fish-shooting-games__hero-description {
    font-size: 0.9em;
  }
  .page-fish-shooting-games__section-title {
    font-size: 1.8em;
  }
  .page-fish-shooting-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fish-shooting-games__feature-title, .page-fish-shooting-games__game-title, .page-fish-shooting-games__promo-title {
    font-size: 1.4em;
  }
  .page-fish-shooting-games__strategy-text h3 {
    font-size: 1.3em;
  }
  .page-fish-shooting-games__exclusive-text h3 {
    font-size: 1.8em;
  }
  .page-fish-shooting-games__detail-title {
    font-size: 1.3em;
  }
}