/* style/game-center-fishing-games-overview.css */
.page-game-center-fishing-games-overview {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-game-center-fishing-games-overview__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #303A4A 100%); /* Dark gradient */
  color: #E2E8F0;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-game-center-fishing-games-overview__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-center-fishing-games-overview__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-game-center-fishing-games-overview__hero-title .highlight {
  color: #E2E8F0; /* Lighter text for highlight within title */
}

.page-game-center-fishing-games-overview__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #CBD5E0; /* Slightly lighter gray for description */
}

.page-game-center-fishing-games-overview__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #1A202C; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-center-fishing-games-overview__hero-button:hover {
  background-color: #E5C100; /* Slightly darker accent on hover */
  transform: translateY(-3px);
}

.page-game-center-fishing-games-overview__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
}

.page-game-center-fishing-games-overview__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-game-center-fishing-games-overview__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-game-center-fishing-games-overview__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: #FFD700;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-game-center-fishing-games-overview__section-title .highlight {
  color: #E2E8F0;
}

.page-game-center-fishing-games-overview__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-center-fishing-games-overview__section-intro {
  font-size: 1.1em;
  color: #CBD5E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-center-fishing-games-overview__features-grid,
.page-game-center-fishing-games-overview__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-center-fishing-games-overview__feature-item,
.page-game-center-fishing-games-overview__game-card {
  background-color: #2D3748; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-center-fishing-games-overview__feature-item:hover,
.page-game-center-fishing-games-overview__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.page-game-center-fishing-games-overview__feature-title,
.page-game-center-fishing-games-overview__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-center-fishing-games-overview__feature-item p,
.page-game-center-fishing-games-overview__game-description {
  color: #E2E8F0;
  font-size: 1em;
}

.page-game-center-fishing-games-overview__feature-image,
.page-game-center-fishing-games-overview__game-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-game-center-fishing-games-overview__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-game-center-fishing-games-overview__game-button:hover {
  background-color: #E5C100;
}

.page-game-center-fishing-games-overview__cta-area {
  margin-top: 60px;
  padding: 40px;
  background-color: #2D3748;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-game-center-fishing-games-overview__main-cta-button,
.page-game-center-fishing-games-overview__final-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-center-fishing-games-overview__main-cta-button:hover,
.page-game-center-fishing-games-overview__final-cta-button:hover {
  background-color: #E5C100;
  transform: translateY(-5px);
}

.page-game-center-fishing-games-overview__cta-text {
  font-size: 1.2em;
  color: #E2E8F0;
  margin-bottom: 20px;
}

.page-game-center-fishing-games-overview__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-center-fishing-games-overview__step-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-game-center-fishing-games-overview__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-center-fishing-games-overview__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-center-fishing-games-overview__step-item p {
  color: #E2E8F0;
  margin-bottom: 20px;
}

.page-game-center-fishing-games-overview__step-button {
  display: inline-block;
  background-color: #4A5568; /* Darker gray for secondary button */
  color: #E2E8F0;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-center-fishing-games-overview__step-button:hover {
  background-color: #616E80;
}

.page-game-center-fishing-games-overview__strategy-list {
  text-align: left;
  list-style: none;
  padding-left: 0;
  color: #E2E8F0;
  margin-top: 20px;
}

.page-game-center-fishing-games-overview__strategy-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-game-center-fishing-games-overview__strategy-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-game-center-fishing-games-overview__promo-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E2E8F0;
  font-size: 1.1em;
}

.page-game-center-fishing-games-overview__promo-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-center-fishing-games-overview__promo-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-game-center-fishing-games-overview__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-center-fishing-games-overview__app-text {
  text-align: left;
  max-width: 600px;
}

.page-game-center-fishing-games-overview__app-text p {
  color: #E2E8F0;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-game-center-fishing-games-overview__app-benefits {
  list-style: none;
  padding-left: 0;
  color: #E2E8F0;
  margin-bottom: 30px;
}

.page-game-center-fishing-games-overview__app-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-game-center-fishing-games-overview__app-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-game-center-fishing-games-overview__app-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-center-fishing-games-overview__app-button:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
}

.page-game-center-fishing-games-overview__app-image-wrapper {
  max-width: 400px;
}

.page-game-center-fishing-games-overview__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-game-center-fishing-games-overview__support-channels {
  list-style: none;
  padding: 0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #E2E8F0;
  font-size: 1.1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-game-center-fishing-games-overview__support-channels li {
  background-color: #2D3748;
  padding: 15px 25px;
  border-radius: 8px;
  border: 1px solid #4A5568;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-game-center-fishing-games-overview__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-game-center-fishing-games-overview__hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-game-center-fishing-games-overview__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
    max-width: 50%;
  }

  .page-game-center-fishing-games-overview__hero-title {
    font-size: 4.5em;
  }

  .page-game-center-fishing-games-overview__section-title {
    font-size: 3.5em;
  }

  .page-game-center-fishing-games-overview__app-content {
    flex-direction: row;
    text-align: left;
  }

  .page-game-center-fishing-games-overview__app-text {
    flex: 1;
    padding-right: 40px;
  }

  .page-game-center-fishing-games-overview__app-image-wrapper {
    flex: 1;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .page-game-center-fishing-games-overview__hero-title {
    font-size: 2.5em;
  }

  .page-game-center-fishing-games-overview__section-title {
    font-size: 2em;
  }

  .page-game-center-fishing-games-overview__features-grid,
  .page-game-center-fishing-games-overview__game-grid,
  .page-game-center-fishing-games-overview__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-game-center-fishing-games-overview__promo-list,
  .page-game-center-fishing-games-overview__support-channels {
    padding: 0 10px;
  }
}