.page-ban-ca-high-score-tips {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A202C;
  line-height: 1.6;
}

.page-ban-ca-high-score-tips-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-ban-ca-high-score-tips-hero {
  background: linear-gradient(135deg, #FFD700, #1A202C);
  padding: 100px 0;
  text-align: center;
  color: #1A202C; /* Text on hero should be dark for contrast */
}

.page-ban-ca-high-score-tips-hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A202C;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-ban-ca-high-score-tips-hero p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333;
}

.page-ban-ca-high-score-tips-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-ban-ca-high-score-tips-btn-primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-ban-ca-high-score-tips-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-ban-ca-high-score-tips-btn-secondary {
  background-color: #333;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-ban-ca-high-score-tips-btn-secondary:hover {
  background-color: #444;
  color: #e6c200;
  transform: translateY(-3px);
}

.page-ban-ca-high-score-tips-btn-large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-ban-ca-high-score-tips-section {
  padding: 60px 0;
  text-align: left;
}

.page-ban-ca-high-score-tips-section:nth-of-type(even) {
  background-color: #2a303a;
}

.page-ban-ca-high-score-tips-section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-ban-ca-high-score-tips-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-ban-ca-high-score-tips-section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-ban-ca-high-score-tips-section p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-ban-ca-high-score-tips-content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-ban-ca-high-score-tips-content-grid.page-ban-ca-high-score-tips-reverse-grid {
  flex-direction: row-reverse;
}

.page-ban-ca-high-score-tips-text-content {
  flex: 1;
}

.page-ban-ca-high-score-tips-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-ban-ca-high-score-tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-ban-ca-high-score-tips-rule-cards, .page-ban-ca-high-score-tips-weapon-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-ban-ca-high-score-tips-card {
  background-color: #2a303a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-top: 5px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca-high-score-tips-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-ban-ca-high-score-tips-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
}

.page-ban-ca-high-score-tips-center-text {
  text-align: center;
}

.page-ban-ca-high-score-tips-center-text p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-ban-ca-high-score-tips-small-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca-high-score-tips-small-text a:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-ban-ca-high-score-tips-faq-item {
  background-color: #2a303a;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
}

.page-ban-ca-high-score-tips-faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-ban-ca-high-score-tips-faq-item p {
  color: #CCCCCC;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ban-ca-high-score-tips-hero h1 {
    font-size: 2.8em;
  }
  .page-ban-ca-high-score-tips-section h2 {
    font-size: 2em;
  }
  .page-ban-ca-high-score-tips-section h3 {
    font-size: 1.6em;
  }
  .page-ban-ca-high-score-tips-content-grid {
    flex-direction: column;
  }
  .page-ban-ca-high-score-tips-content-grid.page-ban-ca-high-score-tips-reverse-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-ban-ca-high-score-tips-hero {
    padding: 80px 0;
  }
  .page-ban-ca-high-score-tips-hero h1 {
    font-size: 2.2em;
  }
  .page-ban-ca-high-score-tips-hero p {
    font-size: 1em;
  }
  .page-ban-ca-high-score-tips-btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-ban-ca-high-score-tips-btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-ban-ca-high-score-tips-section {
    padding: 40px 0;
  }
  .page-ban-ca-high-score-tips-section h2 {
    font-size: 1.8em;
  }
  .page-ban-ca-high-score-tips-card {
    padding: 20px;
  }
  .page-ban-ca-high-score-tips-card h3 {
    font-size: 1.3em;
  }
  .page-ban-ca-high-score-tips-faq-item h3 {
    font-size: 1.2em;
  }
}