/* style/fishing-games-bonus-features.css */
.page-fishing-games-bonus-features {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text on dark background */
  background-color: #0A1931; /* Main dark background */
  line-height: 1.6;
}

.page-fishing-games-bonus-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games-bonus-features .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-fishing-games-bonus-features .btn-primary {
  background-color: #FFD700; /* Accent color */
  color: #0A1931; /* Dark text on accent background */
  border: 2px solid #FFD700;
}

.page-fishing-games-bonus-features .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-fishing-games-bonus-features .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Accent color */
  border: 2px solid #FFD700;
}

.page-fishing-games-bonus-features .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

/* Hero Section */
.page-fishing-games-bonus-features .hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A1931 0%, #2a3a5a 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-fishing-games-bonus-features .hero-section .container {
  position: relative;
  z-index: 2;
}

.page-fishing-games-bonus-features .hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-fishing-games-bonus-features .hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-bonus-features .hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-fishing-games-bonus-features .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-fishing-games-bonus-features .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games-bonus-features .intro-section, 
.page-fishing-games-bonus-features .features-section,
.page-fishing-games-bonus-features .advanced-features-section,
.page-fishing-games-bonus-features .strategy-section,
.page-fishing-games-bonus-features .cta-section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-fishing-games-bonus-features .intro-section p, 
.page-fishing-games-bonus-features .features-section p,
.page-fishing-games-bonus-features .advanced-features-section p,
.page-fishing-games-bonus-features .strategy-section p,
.page-fishing-games-bonus-features .features-section li,
.page-fishing-games-bonus-features .strategy-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #B0B0B0;
}

.page-fishing-games-bonus-features .features-section h3, 
.page-fishing-games-bonus-features .advanced-features-section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-fishing-games-bonus-features .features-section ul,
.page-fishing-games-bonus-features .strategy-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-fishing-games-bonus-features .features-section ul li,
.page-fishing-games-bonus-features .strategy-list li {
  margin-bottom: 10px;
}

/* Feature Items */
.page-fishing-games-bonus-features .feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-bonus-features .feature-item.reverse {
  flex-direction: row-reverse;
}

.page-fishing-games-bonus-features .feature-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  height: 350px;
}

.page-fishing-games-bonus-features .feature-content {
  flex: 1;
  max-width: 50%;
}

/* Strategy Section */
.page-fishing-games-bonus-features .strategy-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-fishing-games-bonus-features .strategy-list li {
  background-color: #1a2a47;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 45px;
  color: #E0E0E0;
}

.page-fishing-games-bonus-features .strategy-list li::before {
  content: '✓';
  color: #FFD700;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 15px;
}

.page-fishing-games-bonus-features .strategy-image {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.page-fishing-games-bonus-features .cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A1931;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-bonus-features .cta-section .section-title {
  margin-bottom: 20px;
}

.page-fishing-games-bonus-features .cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-fishing-games-bonus-features .cta-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-fishing-games-bonus-features .cta-section .container {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-bonus-features .hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-bonus-features .hero-subtitle {
    font-size: 1.3em;
  }
  .page-fishing-games-bonus-features .section-title {
    font-size: 2em;
  }
  .page-fishing-games-bonus-features .feature-item {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games-bonus-features .feature-item.reverse {
    flex-direction: column;
  }
  .page-fishing-games-bonus-features .feature-image,
  .page-fishing-games-bonus-features .feature-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-bonus-features .hero-section {
    padding: 80px 0;
  }
  .page-fishing-games-bonus-features .hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-bonus-features .hero-subtitle {
    font-size: 1.1em;
  }
  .page-fishing-games-bonus-features .section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-bonus-features .intro-section, 
  .page-fishing-games-bonus-features .features-section,
  .page-fishing-games-bonus-features .advanced-features-section,
  .page-fishing-games-bonus-features .strategy-section,
  .page-fishing-games-bonus-features .cta-section {
    padding: 40px 0;
  }
  .page-fishing-games-bonus-features .feature-item {
    margin-bottom: 50px;
    padding: 20px;
  }
  .page-fishing-games-bonus-features .feature-image {
    height: 250px;
  }
  .page-fishing-games-bonus-features .strategy-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-bonus-features .hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-bonus-features .hero-subtitle {
    font-size: 1em;
  }
  .page-fishing-games-bonus-features .section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-bonus-features .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-fishing-games-bonus-features .intro-section p, 
  .page-fishing-games-bonus-features .features-section p,
  .page-fishing-games-bonus-features .advanced-features-section p,
  .page-fishing-games-bonus-features .strategy-section p,
  .page-fishing-games-bonus-features .features-section li,
  .page-fishing-games-bonus-features .strategy-list li {
    font-size: 1em;
  }
  .page-fishing-games-bonus-features .features-section h3, 
  .page-fishing-games-bonus-features .advanced-features-section h3 {
    font-size: 1.5em;
  }
  .page-fishing-games-bonus-features .feature-image {
    height: 200px;
  }
}