:root {
  --primary-color: #007BFF;
  --secondary-color: #28A745;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f1f3f5;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
  --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500);
  --gradient-silver: linear-gradient(135deg, #C0C0C0, #A0A0A0);
  --gradient-bronze: linear-gradient(135deg, #CD7F32, #B87333);
  --gradient-orange: linear-gradient(135deg, #ff6b35, #ff8c42);
}

/* Ensure content is not hidden by fixed header */
.page-top-10-betting-sites {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  color: var(--text-dark); /* Default text color for the page content */
}

.page-top-10-betting-sites__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-top-10-betting-sites__section-title,
.page-top-10-betting-sites__main-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-top-10-betting-sites__section-description {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-top-10-betting-sites__intro-section {
  background: var(--background-light);
  padding: 60px 0;
  text-align: center;
}

.page-top-10-betting-sites__intro-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-top-10-betting-sites__image-wrapper {
  margin: 40px auto;
  max-width: 800px; /* Example max-width for content images */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-top-10-betting-sites__intro-image,
.page-top-10-betting-sites__criteria-image,
.page-top-10-betting-sites__benefits-image,
.page-top-10-betting-sites__guide-image,
.page-top-10-betting-sites__promotions-image,
.page-top-10-betting-sites__news-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-top-10-betting-sites__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  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;
}

.page-top-10-betting-sites__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-top-10-betting-sites__card {
  background: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
}

.page-top-10-betting-sites__criteria-section {
  padding: 60px 0;
  background: var(--background-light);
}

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

.page-top-10-betting-sites__criteria-item {
  background: var(--card-background);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.page-top-10-betting-sites__criteria-heading {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-top-10-betting-sites__criteria-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-top-10-betting-sites__benefits-section {
  padding: 60px 0;
  background: var(--background-light);
}

.page-top-10-betting-sites__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-top-10-betting-sites__benefits-list li {
  background: var(--card-background);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  border-left: 5px solid var(--secondary-color);
}

.page-top-10-betting-sites__benefits-list li strong {
  color: var(--primary-color);
}

.page-top-10-betting-sites__guide-section {
  padding: 60px 0;
  background: var(--background-light);
}

.page-top-10-betting-sites__guide-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 30px;
}

.page-top-10-betting-sites__guide-list li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.page-top-10-betting-sites__guide-list li strong {
  color: var(--primary-color);
}

.page-top-10-betting-sites__promotions-section {
  padding: 60px 0;
  background: var(--background-light);
}

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

.page-top-10-betting-sites__promotion-card {
  background: var(--card-background);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  text-align: center;
}

.page-top-10-betting-sites__promotion-heading {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-top-10-betting-sites__promotion-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-top-10-betting-sites__btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
}

.page-top-10-betting-sites__btn-small:hover {
  background: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-top-10-betting-sites__news-section {
  padding: 60px 0;
  background: var(--background-light);
}

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

.page-top-10-betting-sites__news-item {
  background: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-top-10-betting-sites__news-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-top-10-betting-sites__news-heading {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  line-height: 1.4;
}

.page-top-10-betting-sites__news-heading a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-top-10-betting-sites__news-heading a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-top-10-betting-sites__news-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  padding: 0 20px 15px;
}

.page-top-10-betting-sites__read-more {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-top-10-betting-sites__read-more:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-top-10-betting-sites__faq-section {
  padding: 60px 0;
  background: var(--background-light);
}

.page-top-10-betting-sites__faq-list {
  margin-top: 40px;
}