:root {
  --primary-color: #DC143C;
  --secondary-color: #36454F;
  --text-color-light: #F8F8F8;
  --text-color-dark: #222222;
  --background-light: #F0F2F5;
  --background-dark: #2A3138;
}

.page-game-guides-red88-fishing-high-score {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

.page-game-guides-red88-fishing-high-score__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-red88-fishing-high-score__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-color-light);
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-game-guides-red88-fishing-high-score__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--text-color-light);
}

.page-game-guides-red88-fishing-high-score__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-game-guides-red88-fishing-high-score__cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-red88-fishing-high-score__cta-button:hover {
  background-color: #ff3355; /* Lighter shade of primary for hover */
  transform: translateY(-2px);
}

.page-game-guides-red88-fishing-high-score__cta-button--secondary {
  background-color: var(--secondary-color);
  margin-left: 20px;
}

.page-game-guides-red88-fishing-high-score__cta-button--secondary:hover {
  background-color: #4a5a6a; /* Lighter shade of secondary for hover */
}

.page-game-guides-red88-fishing-high-score__content-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-game-guides-red88-fishing-high-score__content-section:nth-of-type(even) {
  background-color: #E6E8EB;
}

.page-game-guides-red88-fishing-high-score__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-red88-fishing-high-score__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-game-guides-red88-fishing-high-score__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-color-dark);
  text-align: justify;
}

.page-game-guides-red88-fishing-high-score__content-section p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-red88-fishing-high-score__content-section p a:hover {
  text-decoration: underline;
}

.page-game-guides-red88-fishing-high-score__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

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

.page-game-guides-red88-fishing-high-score__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-game-guides-red88-fishing-high-score__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-guides-red88-fishing-high-score__feature-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-game-guides-red88-fishing-high-score__strategy-list,
.page-game-guides-red88-fishing-high-score__management-list,
.page-game-guides-red88-fishing-high-score__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-guides-red88-fishing-high-score__strategy-list li,
.page-game-guides-red88-fishing-high-score__management-list li,
.page-game-guides-red88-fishing-high-score__benefit-list li {
  background-color: #FFFFFF;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  border-left: 5px solid var(--primary-color);
}

.page-game-guides-red88-fishing-high-score__list-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-game-guides-red88-fishing-high-score__benefit-list li strong {
  color: var(--primary-color);
}

.page-game-guides-red88-fishing-high-score__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-game-guides-red88-fishing-high-score__conclusion p {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-red88-fishing-high-score__hero-section {
    padding: 80px 0;
  }

  .page-game-guides-red88-fishing-high-score__main-title {
    font-size: 2.5em;
  }

  .page-game-guides-red88-fishing-high-score__subtitle {
    font-size: 1.1em;
  }

  .page-game-guides-red88-fishing-high-score__section-title {
    font-size: 2em;
  }

  .page-game-guides-red88-fishing-high-score__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides-red88-fishing-high-score__cta-button {
    width: 100%;
    margin: 10px 0 !important;
  }

  .page-game-guides-red88-fishing-high-score__cta-button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-game-guides-red88-fishing-high-score__main-title {
    font-size: 2em;
  }

  .page-game-guides-red88-fishing-high-score__subtitle {
    font-size: 1em;
  }

  .page-game-guides-red88-fishing-high-score__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-red88-fishing-high-score__content-section p {
    font-size: 1em;
  }

  .page-game-guides-red88-fishing-high-score__feature-item,
  .page-game-guides-red88-fishing-high-score__strategy-list li,
  .page-game-guides-red88-fishing-high-score__management-list li,
  .page-game-guides-red88-fishing-high-score__benefit-list li {
    padding: 20px;
  }
}