/* style/high-score-strategies.css */
.page-high-score-strategies {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-high-score-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-high-score-strategies__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4c 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-high-score-strategies__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-high-score-strategies__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-high-score-strategies__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  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-high-score-strategies__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
}

.page-high-score-strategies__cta-button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-high-score-strategies__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-high-score-strategies__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-high-score-strategies__section:last-of-type {
  border-bottom: none;
}

.page-high-score-strategies__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-high-score-strategies__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-high-score-strategies__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-high-score-strategies__content-wrapper:nth-of-type(even) {
  flex-direction: row-reverse;
}

.page-high-score-strategies__text-content {
  flex: 1;
}

.page-high-score-strategies__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-high-score-strategies__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-high-score-strategies__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-high-score-strategies__principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-high-score-strategies__principle-card {
  background-color: #2A303C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-high-score-strategies__principle-card:hover {
  transform: translateY(-5px);
}

.page-high-score-strategies__card-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-high-score-strategies__card-description {
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-high-score-strategies__strategy-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
  background-color: #2A303C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-high-score-strategies__strategy-item--reverse {
  flex-direction: row-reverse;
}

.page-high-score-strategies__strategy-image {
  width: 40%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.page-high-score-strategies__strategy-content {
  flex-grow: 1;
}

.page-high-score-strategies__strategy-content h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-high-score-strategies__strategy-content p {
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-high-score-strategies__strategy-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-high-score-strategies__strategy-content ul li {
  margin-bottom: 8px;
  font-size: 1.0em;
}

.page-high-score-strategies__learn-more-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-high-score-strategies__learn-more-button:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-high-score-strategies__responsibility ul {
  list-style-type: '✅ ';
  margin-left: 20px;
  padding-left: 0;
  color: #E0E0E0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-high-score-strategies__responsibility ul li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-high-score-strategies__responsibility p {
  text-align: center;
  color: #E0E0E0;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

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

.page-high-score-strategies__detail-card {
  background-color: #2A303C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-high-score-strategies__detail-card:hover {
  transform: translateY(-5px);
}

.page-high-score-strategies__detail-card h3 {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-high-score-strategies__detail-card h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-high-score-strategies__detail-card h3 a:hover {
  color: #e5c100;
  text-decoration: underline;
}

.page-high-score-strategies__card-description {
  color: #B0B0B0;
  font-size: 0.9em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-high-score-strategies__conclusion .page-high-score-strategies__cta-button {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-high-score-strategies__hero-title {
    font-size: 2.8em;
  }
  .page-high-score-strategies__section-title {
    font-size: 2em;
  }
  .page-high-score-strategies__content-wrapper {
    flex-direction: column;
  }
  .page-high-score-strategies__content-wrapper:nth-of-type(even) {
    flex-direction: column;
  }
  .page-high-score-strategies__strategy-item {
    flex-direction: column;
  }
  .page-high-score-strategies__strategy-item--reverse {
    flex-direction: column;
  }
  .page-high-score-strategies__strategy-image {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-high-score-strategies__hero {
    padding: 80px 0;
  }
  .page-high-score-strategies__hero-title {
    font-size: 2.2em;
  }
  .page-high-score-strategies__hero-subtitle {
    font-size: 1.2em;
  }
  .page-high-score-strategies__section {
    padding: 40px 0;
  }
  .page-high-score-strategies__section-title {
    font-size: 1.8em;
  }
  .page-high-score-strategies__section-description {
    font-size: 1em;
  }
  .page-high-score-strategies__principles-grid {
    grid-template-columns: 1fr;
  }
  .page-high-score-strategies__strategy-item {
    padding: 20px;
  }
  .page-high-score-strategies__strategy-content h3 {
    font-size: 1.5em;
  }
  .page-high-score-strategies__detail-list {
    grid-template-columns: 1fr;
  }
  .page-high-score-strategies__responsibility ul li {
    font-size: 1em;
  }
}