/* style/fishing-games-popular-titles.css */

/* Variables */
:root {
  --page-fishing-games-popular-titles-primary-color: #1A2E44;
  --page-fishing-games-popular-titles-accent-color: #FFD700;
  --page-fishing-games-popular-titles-text-light: #F0F2F5;
  --page-fishing-games-popular-titles-text-dark: #1A2E44;
  --page-fishing-games-popular-titles-background-light: #ffffff;
  --page-fishing-games-popular-titles-background-dark: #1A2E44;
  --page-fishing-games-popular-titles-border-color: #334D6B;
}

.page-fishing-games-popular-titles {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--page-fishing-games-popular-titles-text-dark); /* Default text color */
  background-color: var(--page-fishing-games-popular-titles-background-light);
}

.page-fishing-games-popular-titles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-fishing-games-popular-titles__hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--page-fishing-games-popular-titles-primary-color) 0%, #334D6B 100%);
  color: var(--page-fishing-games-popular-titles-text-light);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-fishing-games-popular-titles__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_water,fish_pattern,subtle_texture]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-fishing-games-popular-titles__hero > .page-fishing-games-popular-titles__container {
  position: relative;
  z-index: 2;
}

.page-fishing-games-popular-titles__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-fishing-games-popular-titles-accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-popular-titles__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-popular-titles__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-fishing-games-popular-titles__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-fishing-games-popular-titles__btn--primary {
  background-color: var(--page-fishing-games-popular-titles-accent-color);
  color: var(--page-fishing-games-popular-titles-primary-color);
  border: 2px solid var(--page-fishing-games-popular-titles-accent-color);
}

.page-fishing-games-popular-titles__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-fishing-games-popular-titles__btn--secondary {
  background-color: transparent;
  color: var(--page-fishing-games-popular-titles-accent-color);
  border: 2px solid var(--page-fishing-games-popular-titles-accent-color);
}

.page-fishing-games-popular-titles__btn--secondary:hover {
  background-color: var(--page-fishing-games-popular-titles-accent-color);
  color: var(--page-fishing-games-popular-titles-primary-color);
  transform: translateY(-3px);
}

.page-fishing-games-popular-titles__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-fishing-games-popular-titles__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-fishing-games-popular-titles__hero-image {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 300px;
  opacity: 0.8;
  z-index: 0;
  display: none; /* Hidden by default, only for decorative purposes if needed */
}

/* General Section Styling */
.page-fishing-games-popular-titles__section {
  padding: 60px 0;
  text-align: left;
}

.page-fishing-games-popular-titles__section-title {
  font-size: 2.5em;
  color: var(--page-fishing-games-popular-titles-primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games-popular-titles__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-fishing-games-popular-titles-accent-color);
  border-radius: 2px;
}

.page-fishing-games-popular-titles__section--dark {
  background-color: var(--page-fishing-games-popular-titles-primary-color);
  color: var(--page-fishing-games-popular-titles-text-light);
}

.page-fishing-games-popular-titles__section--dark .page-fishing-games-popular-titles__section-title {
  color: var(--page-fishing-games-popular-titles-accent-color);
}

.page-fishing-games-popular-titles__img-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Game Grid */
.page-fishing-games-popular-titles__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-titles__game-card {
  background-color: var(--page-fishing-games-popular-titles-background-light);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--page-fishing-games-popular-titles-text-dark);
}

.page-fishing-games-popular-titles__section--dark .page-fishing-games-popular-titles__game-card {
  background-color: #2A4460; /* Slightly lighter dark for contrast */
  color: var(--page-fishing-games-popular-titles-text-light);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-popular-titles__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-popular-titles__game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games-popular-titles__game-card-title {
  font-size: 1.8em;
  color: var(--page-fishing-games-popular-titles-primary-color);
  margin-bottom: 10px;
}

.page-fishing-games-popular-titles__section--dark .page-fishing-games-popular-titles__game-card-title {
  color: var(--page-fishing-games-popular-titles-accent-color);
}

.page-fishing-games-popular-titles__game-card-description {
  font-size: 1em;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-fishing-games-popular-titles__game-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-fishing-games-popular-titles__game-card-features li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-fishing-games-popular-titles__game-card-features li::before {
  content: '✔';
  color: var(--page-fishing-games-popular-titles-accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* Benefits Grid */
.page-fishing-games-popular-titles__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-fishing-games-popular-titles__benefit-item {
  background-color: var(--page-fishing-games-popular-titles-background-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-fishing-games-popular-titles__benefit-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games-popular-titles__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-fishing-games-popular-titles__benefit-title {
  font-size: 1.5em;
  color: var(--page-fishing-games-popular-titles-primary-color);
  margin-bottom: 10px;
}

/* Strategy Section */
.page-fishing-games-popular-titles__section--strategy {
  background-color: #F8F9FA;
}

.page-fishing-games-popular-titles__strategy-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-fishing-games-popular-titles__strategy-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-popular-titles__strategy-text {
  flex: 2;
  min-width: 300px;
}

.page-fishing-games-popular-titles__strategy-text ol {
  margin-left: 20px;
  padding-left: 0;
  list-style-type: decimal;
}

.page-fishing-games-popular-titles__strategy-text li {
  margin-bottom: 10px;
}

.page-fishing-games-popular-titles__strategy-text strong {
  color: var(--page-fishing-games-popular-titles-primary-color);
}

/* Guide List */
.page-fishing-games-popular-titles__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-popular-titles__guide-list li {
  background-color: #EBF2F7; /* Light blueish background */
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid var(--page-fishing-games-popular-titles-accent-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-fishing-games-popular-titles__guide-list li strong {
  font-size: 1.2em;
  color: var(--page-fishing-games-popular-titles-primary-color);
}

/* CTA Section */
.page-fishing-games-popular-titles__cta-section {
  background: linear-gradient(90deg, var(--page-fishing-games-popular-titles-primary-color) 0%, #334D6B 100%);
  color: var(--page-fishing-games-popular-titles-text-light);
  padding: 80px 0;
  text-align: center;
  border-radius: 15px;
  margin: 60px auto;
  max-width: 1000px;
}

.page-fishing-games-popular-titles__cta-title {
  font-size: 2.8em;
  color: var(--page-fishing-games-popular-titles-accent-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-popular-titles__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsible Gaming Section */
.page-fishing-games-popular-titles__section--responsible-gaming {
  background-color: #f0f0f0;
  border-top: 1px solid #e0e0e0;
  color: #555;
  font-size: 0.95em;
}

.page-fishing-games-popular-titles__section--responsible-gaming .page-fishing-games-popular-titles__section-title {
  color: var(--page-fishing-games-popular-titles-primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-popular-titles__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games-popular-titles__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games-popular-titles__section-title {
    font-size: 2em;
  }
  .page-fishing-games-popular-titles__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-fishing-games-popular-titles__strategy-content {
    flex-direction: column;
  }
  .page-fishing-games-popular-titles__strategy-image {
    max-width: 100%;
  }
  .page-fishing-games-popular-titles__cta-title {
    font-size: 2.2em;
  }
  .page-fishing-games-popular-titles__cta-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-popular-titles__hero {
    padding: 80px 0;
  }
  .page-fishing-games-popular-titles__hero-title {
    font-size: 2em;
  }
  .page-fishing-games-popular-titles__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-popular-titles__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-popular-titles__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-fishing-games-popular-titles__section {
    padding: 40px 0;
  }
  .page-fishing-games-popular-titles__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-popular-titles__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-popular-titles__cta-section {
    padding: 50px 0;
    margin: 40px auto;
  }
  .page-fishing-games-popular-titles__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games-popular-titles__cta-description {
    font-size: 1em;
  }
}