.page-fishing-community {
  --primary-color: #0047AB;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light-gray: #f1f3f5;
  --border-light: #e4e4e4;
  --dark-bg-1: #0d0d0d; /* Assuming this is a dark background from shared.css */
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Ensure consistency */
}

.page-fishing-community__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-community h1,
.page-fishing-community h2,
.page-fishing-community h3 {
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-fishing-community p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-fishing-community a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-community a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-fishing-community__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  text-align: center;
}

.page-fishing-community__cta-button:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-community__cta-button--inverted {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-fishing-community__cta-button--inverted:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* HERO Section */
.page-fishing-community__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, var(--primary-color), #002D62); /* Darker blue gradient */
}

.page-fishing-community__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-community__hero-image {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
}

.page-fishing-community__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-fishing-community__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page-fishing-community__hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-fishing-community__hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* Module 1: Game Leaderboard */
.page-fishing-community__game-leaderboard-section {
  padding: 60px 20px;
  background: var(--bg-light-gray); /* Light background for leaderboard */
  color: var(--text-dark); /* Dark text on light background */
}

.page-fishing-community__game-leaderboard-section h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-fishing-community__game-leaderboard {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-fishing-community__game-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-fishing-community__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-community__game-card-segment {
  padding: 0 20px;
  border-left: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-fishing-community__segment-1 {
  border-left: none;
  padding-left: 0;
  min-width: 150px; /* Adjusted width */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-fishing-community__rank-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-fishing-community__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.page-fishing-community__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
}

.page-fishing-community__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333);
}

.page-fishing-community__game-icon {
  max-width: 100px;
  height: auto;
  display: block;
  border-radius: 4px;
  margin-top: 10px;
}

.page-fishing-community__segment-2 {
  flex: 1;
  text-align: center;
}

.page-fishing-community__game-name {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
}

.page-fishing-community__game-name-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-community__game-name-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-fishing-community__game-description {
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-fishing-community__game-description a {
  color: #0066cc;
  font-weight: bold;
}

.page-fishing-community__game-description a:hover {
  color: #004499;
  text-decoration: underline;
}

.page-fishing-community__segment-3 {
  min-width: 180px; /* Adjusted width */
  text-align: center;
}

.page-fishing-community__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--text-dark);
}

.page-fishing-community__stars {
  color: var(--secondary-color);
  margin-right: 5px;
  font-weight: bold;
}

.page-fishing-community__rating-number {
  font-weight: bold;
}

.page-fishing-community__promotion-text {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-community__promotion-link {
  color: #0066cc;
  margin-right: 5px;
}

.page-fishing-community__promotion-link:hover {
  color: #004499;
}

.page-fishing-community__hot-badge {
  background: #dc3545;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}

.page-fishing-community__segment-4 {
  min-width: 200px; /* Adjusted width */
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 0;
}

.page-fishing-community__btn-download,
.page-fishing-community__btn-review {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  text-transform: uppercase;
}

.page-fishing-community__btn-download {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
}

.page-fishing-community__btn-download:hover {
  background: linear-gradient(135deg, #0056b3, #003d7a);
  transform: translateY(-2px);
}

.page-fishing-community__btn-review {
  background: linear-gradient(135deg, var(--secondary-color), #d6a100);
  color: var(--primary-color);
}

.page-fishing-community__btn-review:hover {
  background: linear-gradient(135deg, #d6a100, #a07a00);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Module 1.5: Brand Review Content */
.page-fishing-community__review-content-section {
  padding: 40px 20px;
  background: var(--bg-light-gray); /* Light background */
  color: var(--text-dark);
}

.page-fishing-community__review-content-container {
  max-width: 1400px; /* Wider than leaderboard cards */
  margin: 0 auto;
}

.page-fishing-community__review-content-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-fishing-community__review-content-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.page-fishing-community__review-content-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-fishing-community__review-body {
  color: var(--text-dark);
  line-height: 1.7;
}

.page-fishing-community__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-dark);
}

.page-fishing-community__review-body p a {
  color: var(--primary-color);
}

.page-fishing-community__review-body p a:hover {
  color: var(--secondary-color);
}

/* Module 2: Homepage Introduction */
.page-fishing-community__introduction-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #003366, var(--primary-color)); /* Darker blue gradient */
  color: var(--text-light);
  text-align: center;
}

.page-fishing-community__introduction-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-fishing-community__introduction-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
}

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

.page-fishing-community__feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  color: var(--text-light);
}

.page-fishing-community__feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.page-fishing-community__feature-icon {
  width: 100px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.page-fishing-community__feature-item h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.page-fishing-community__feature-item p {
  font-size: 16px;
  color: var(--text-light);
}

/* Module 3: Core Game/Service Introduction */
.page-fishing-community__games-overview-section {
  padding: 80px 20px;
  background: var(--bg-light-gray); /* Light background */
  color: var(--text-dark);
  text-align: center;
}

.page-fishing-community__games-overview-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-fishing-community__games-overview-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-dark);
}

.page-fishing-community__game-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-community__game-card-large {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.page-fishing-community__game-card-large:hover {
  transform: translateY(-10px);
}

.page-fishing-community__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-community__game-card-large h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 15px 10px 15px;
  color: var(--text-dark);
}

.page-fishing-community__game-card-large p {
  font-size: 16px;
  padding: 0 15px 20px 15px;
  color: var(--text-dark);
}

.page-fishing-community__game-card-large .page-fishing-community__cta-button {
  margin-bottom: 20px;
  padding: 12px 30px;
}

/* Module 4: Promotions */
.page-fishing-community__promotions-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color), #002D62); /* Darker blue gradient */
  color: var(--text-light);
  text-align: center;
}

.page-fishing-community__promotions-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-fishing-community__promotions-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
}

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

.page-fishing-community__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  color: var(--text-light);
}

.page-fishing-community__promo-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.page-fishing-community__promo-image {
  width: 120px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.page-fishing-community__promo-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.page-fishing-community__promo-card p {
  font-size: 16px;
  color: var(--text-light);
}

/* Module 5: Latest Blog Content */
.page-fishing-community__blog-section {
  padding: 80px 20px;
  background: var(--bg-light-gray); /* Light background */
  color: var(--text-dark);
  text-align: center;
}

.page-fishing-community__blog-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-fishing-community__blog-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-dark);
}

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

.page-fishing-community__blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.page-fishing-community__blog-card:hover {
  transform: translateY(-10px);
}

.page-fishing-community__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-community__blog-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 15px 10px 15px;
  color: var(--text-dark);
}

.page-fishing-community__blog-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
}

.page-fishing-community__blog-card h3 a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-fishing-community__blog-card p {
  font-size: 16px;
  padding: 0 15px 15px 15px;
  color: var(--text-dark);
}

.page-fishing-community__read-more {
  display: inline-block;
  padding: 0 15px 20px 15px;
  color: var(--primary-color);
  font-weight: bold;
}

.page-fishing-community__read-more:hover {
  text-decoration: underline;
}

.page-fishing-community__view-all-button-wrapper {
  margin-top: 40px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-community__hero-content h1 {
    font-size: 40px;
  }
  .page-fishing-community__hero-content p {
    font-size: 18px;
  }
  .page-fishing-community__game-leaderboard-section h2,
  .page-fishing-community__introduction-section h2,
  .page-fishing-community__games-overview-section h2,
  .page-fishing-community__promotions-section h2,
  .page-fishing-community__blog-section h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-community__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-community__hero-image img {
    border-radius: 4px;
  }
  .page-fishing-community__hero-content h1 {
    font-size: 32px;
  }
  .page-fishing-community__hero-content p {
    font-size: 16px;
  }
  .page-fishing-community__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  /* Leaderboard Mobile */
  .page-fishing-community__game-leaderboard-section {
    padding: 30px 15px;
  }
  .page-fishing-community__game-leaderboard-section h2 {
    font-size: 28px;
  }
  .page-fishing-community__game-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .page-fishing-community__game-card-segment {
    width: 100%;
    border-left: none;
    padding: 10px 0;
    align-items: center;
  }
  .page-fishing-community__segment-1 {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    min-width: auto;
    padding-top: 0;
    position: relative;
    top: auto;
    left: auto;
  }
  .page-fishing-community__rank-badge {
    position: static;
    margin-right: 10px;
  }
  .page-fishing-community__game-icon {
    margin-top: 0;
  }
  .page-fishing-community__segment-2 {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
  }
  .page-fishing-community__game-name {
    font-size: 20px;
  }
  .page-fishing-community__game-description {
    font-size: 13px;
  }
  .page-fishing-community__segment-3 {
    min-width: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
  }
  .page-fishing-community__segment-4 {
    min-width: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    max-width: 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-fishing-community__btn-download,
  .page-fishing-community__btn-review {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 14px !important;
    padding: 10px 12px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    min-width: auto !important;
  }

  /* Review Content Mobile */
  .page-fishing-community__review-content-section {
    padding: 20px 15px;
  }
  .page-fishing-community__review-content-card {
    padding: 24px 20px;
  }
  .page-fishing-community__review-content-card h2 {
    font-size: 24px;
  }
  .page-fishing-community__review-content-card h3 {
    font-size: 18px;
  }
  .page-fishing-community__review-body p {
    font-size: 15px;
  }

  /* Introduction Mobile */
  .page-fishing-community__introduction-section {
    padding: 40px 15px;
  }
  .page-fishing-community__introduction-section h2 {
    font-size: 28px;
  }
  .page-fishing-community__intro-features {
    grid-template-columns: 1fr;
  }
  .page-fishing-community__feature-item {
    padding: 20px;
  }
  .page-fishing-community__feature-icon {
    width: 80px;
  }
  .page-fishing-community__feature-item h3 {
    font-size: 20px;
  }

  /* Games Overview Mobile */
  .page-fishing-community__games-overview-section {
    padding: 40px 15px;
  }
  .page-fishing-community__games-overview-section h2 {
    font-size: 28px;
  }
  .page-fishing-community__game-cards-wrapper {
    grid-template-columns: 1fr;
  }
  .page-fishing-community__game-card-image {
    height: 200px;
  }

  /* Promotions Mobile */
  .page-fishing-community__promotions-section {
    padding: 40px 15px;
  }
  .page-fishing-community__promotions-section h2 {
    font-size: 28px;
  }
  .page-fishing-community__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-community__promo-image {
    width: 100px;
  }

  /* Blog Mobile */
  .page-fishing-community__blog-section {
    padding: 40px 15px;
  }
  .page-fishing-community__blog-section h2 {
    font-size: 28px;
  }
  .page-fishing-community__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-community__blog-image {
    height: 180px;
  }

  /* General Image Responsive Fix */
  .page-fishing-community img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-community__section,
  .page-fishing-community__card,
  .page-fishing-community__container,
  .page-fishing-community__game-leaderboard-section,
  .page-fishing-community__review-content-section,
  .page-fishing-community__introduction-section,
  .page-fishing-community__games-overview-section,
  .page-fishing-community__promotions-section,
  .page-fishing-community__blog-section,
  .page-fishing-community__game-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}