/* style/card-poker-fish-shooter.css */

.page-card-poker-fish-shooter {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5; /* Light grey background for overall page */
}

.page-card-poker-fish-shooter__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-card-poker-fish-shooter__hero {
  background: linear-gradient(135deg, #0A1931, #2C3E50); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-card-poker-fish-shooter__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-card-poker-fish-shooter__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title on dark background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-card-poker-fish-shooter__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0; /* Light grey text on dark background */
}

.page-card-poker-fish-shooter__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-card-poker-fish-shooter__section {
  padding: 60px 0;
  background-color: #FFFFFF; /* White background for sections */
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-card-poker-fish-shooter__section:nth-of-type(even) {
  background-color: #F8F8F8; /* Slightly different background for alternating sections */
}

.page-card-poker-fish-shooter__section-title {
  font-size: 2.5em;
  color: #0A1931; /* Dark blue title on light background */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-card-poker-fish-shooter__subtitle {
  font-size: 1.8em;
  color: #0A1931; /* Dark blue subtitle on light background */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding-left: 15px;
}

.page-card-poker-fish-shooter p {
  margin-bottom: 15px;
  color: #333333; /* Dark grey text on light background */
}

.page-card-poker-fish-shooter ul,
.page-card-poker-fish-shooter ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #333333; /* Dark grey text on light background */
}

.page-card-poker-fish-shooter li {
  margin-bottom: 8px;
}

.page-card-poker-fish-shooter__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-card-poker-fish-shooter__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold button */
  border: 2px solid #FFD700;
}

.page-card-poker-fish-shooter__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  border-color: #E6C200;
  transform: translateY(-2px);
}

.page-card-poker-fish-shooter__btn--secondary {
  background-color: #0A1931; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue button */
  border: 2px solid #0A1931;
}

.page-card-poker-fish-shooter__btn--secondary:hover {
  background-color: #1A2F4A; /* Slightly lighter dark blue on hover */
  border-color: #1A2F4A;
  transform: translateY(-2px);
}

.page-card-poker-fish-shooter__features-grid,
.page-card-poker-fish-shooter__versions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-card-poker-fish-shooter__feature-item,
.page-card-poker-fish-shooter__version-item {
  background-color: #FDFDFD;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-card-poker-fish-shooter__feature-item:hover,
.page-card-poker-fish-shooter__version-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-card-poker-fish-shooter__feature-image,
.page-card-poker-fish-shooter__version-image,
.page-card-poker-fish-shooter__security-image,
.page-card-poker-fish-shooter__bonus-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-card-poker-fish-shooter__feature-title,
.page-card-poker-fish-shooter__version-title {
  font-size: 1.5em;
  color: #0A1931; /* Dark blue title */
  margin-bottom: 10px;
}

.page-card-poker-fish-shooter__link {
  color: #0A1931; /* Dark blue link */
  text-decoration: underline;
  font-weight: bold;
}

.page-card-poker-fish-shooter__link:hover {
  color: #FFD700; /* Gold link on hover */
}

.page-card-poker-fish-shooter__cta-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555; /* Medium grey text */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-card-poker-fish-shooter__hero-title {
    font-size: 2.8em;
  }
  .page-card-poker-fish-shooter__hero-description {
    font-size: 1.1em;
  }
  .page-card-poker-fish-shooter__section-title {
    font-size: 2em;
  }
  .page-card-poker-fish-shooter__subtitle {
    font-size: 1.5em;
  }
  .page-card-poker-fish-shooter__features-grid,
  .page-card-poker-fish-shooter__versions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-card-poker-fish-shooter__hero {
    padding: 60px 0;
  }
  .page-card-poker-fish-shooter__hero-title {
    font-size: 2.2em;
  }
  .page-card-poker-fish-shooter__hero-description {
    font-size: 1em;
  }
  .page-card-poker-fish-shooter__section {
    padding: 40px 0;
  }
  .page-card-poker-fish-shooter__section-title {
    font-size: 1.8em;
  }
  .page-card-poker-fish-shooter__subtitle {
    font-size: 1.3em;
  }
  .page-card-poker-fish-shooter__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-card-poker-fish-shooter__hero-title {
    font-size: 1.8em;
  }
  .page-card-poker-fish-shooter__hero-description {
    font-size: 0.9em;
  }
  .page-card-poker-fish-shooter__section-title {
    font-size: 1.5em;
  }
  .page-card-poker-fish-shooter__subtitle {
    font-size: 1.2em;
  }
  .page-card-poker-fish-shooter__features-grid,
  .page-card-poker-fish-shooter__versions-grid {
    grid-template-columns: 1fr;
  }
}