/* style/fishing-games.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark-bg: #FFFFFF;
  --text-light-bg: #333333;
  --login-button-color: #EA7C07;
  --body-bg-color: #121212; /* From body background info */
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark-bg); /* Default text color for dark body background */
  background-color: var(--body-bg-color);
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  min-height: 600px;
  overflow: hidden;
  color: var(--text-dark-bg);
  background-color: var(--primary-color); /* Fallback/example, actual background is image */
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-dark-bg);
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-dark-bg);
  line-height: 1.5;
}

.page-fishing-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-fishing-games__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark-bg);
  border-color: var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
  background-color: #1e87b6; /* darken(var(--primary-color), 10%) */
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
  background-color: #d1ecf6; /* lighten(var(--primary-color), 40%) */
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* General Section Styles */
.page-fishing-games__intro-section,
.page-fishing-games__games-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
  padding: 80px 0;
}

.page-fishing-games__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-light-bg);
}

.page-fishing-games__dark-bg {
  background-color: #202020; /* Slightly lighter than body bg for contrast, but still dark */
  color: var(--text-dark-bg);
}

.page-fishing-games__intro-title,
.page-fishing-games__games-title,
.page-fishing-games__why-choose-title,
.page-fishing-games__guide-title,
.page-fishing-games__promotions-title,
.page-fishing-games__faq-title,
.page-fishing-games__conclusion-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 50px;
  color: inherit;
}

.page-fishing-games__intro-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-fishing-games__intro-text {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
  max-width: 800px;
}

.page-fishing-games__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Games Section */
.page-fishing-games__games-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-dark-bg);
}

.page-fishing-games__games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.15); /* Adjusted for contrast */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-dark-bg);
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-fishing-games__game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-fishing-games__game-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games__game-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__game-text {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Why Choose Section */
.page-fishing-games__why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-fishing-games__feature-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-light-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__feature-heading {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__feature-text {
  font-size: 1em;
  line-height: 1.6;
}

.page-fishing-games__why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* Guide Section */
.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__step-item {
  background-color: rgba(255, 255, 255, 0.15); /* Adjusted for contrast */
  padding: 30px;
  border-radius: 10px;
  color: var(--text-dark-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-heading {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__step-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-fishing-games__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* Promotions Section */
.page-fishing-games__promotions-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-light-bg);
}

.page-fishing-games__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__promo-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-light-bg);
}

.page-fishing-games__promo-heading {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}