/* style/betting-guides-scam-identification.css */
.page-betting-guides-scam-identification {
  font-family: 'Arial', sans-serif;
  color: #2C3E50; /* Dark blue for main text */
  line-height: 1.6;
}

.page-betting-guides-scam-identification__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-guides-scam-identification__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #2C3E50 100%);
  padding: 80px 0;
  color: #FFFFFF; /* White text on dark/gold background */
  text-align: center;
}

.page-betting-guides-scam-identification__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.3;
}

.page-betting-guides-scam-identification__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #F0F0F0;
}

.page-betting-guides-scam-identification__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-betting-guides-scam-identification__section--gray {
  background-color: #F8F8F8; /* Light grey for contrast */
}

.page-betting-guides-scam-identification__section--dark {
  background-color: #2C3E50;
  color: #F0F0F0;
}

.page-betting-guides-scam-identification__section-title {
  font-size: 2.2em;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-betting-guides-scam-identification__section--dark .page-betting-guides-scam-identification__section-title {
  color: #FFD700;
}

.page-betting-guides-scam-identification__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-betting-guides-scam-identification__section--dark .page-betting-guides-scam-identification__text-content {
  color: #E0E0E0;
}

.page-betting-guides-scam-identification__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-betting-guides-scam-identification__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-betting-guides-scam-identification__btn--primary {
  background-color: #FFD700;
  color: #2C3E50;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-betting-guides-scam-identification__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-betting-guides-scam-identification__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-betting-guides-scam-identification__btn--secondary:hover {
  background-color: #FFD700;
  color: #2C3E50;
  transform: translateY(-2px);
}

.page-betting-guides-scam-identification__btn--contact {
  background-color: #FFD700;
  color: #2C3E50;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  margin-right: 15px;
}

.page-betting-guides-scam-identification__btn--contact:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-betting-guides-scam-identification__btn--login {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-betting-guides-scam-identification__btn--login:hover {
  background-color: #FFD700;
  color: #2C3E50;
  transform: translateY(-2px);
}

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

.page-betting-guides-scam-identification__grid-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guides-scam-identification__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-betting-guides-scam-identification__grid-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-betting-guides-scam-identification__grid-title {
  font-size: 1.4em;
  color: #2C3E50;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-guides-scam-identification__grid-description {
  font-size: 1em;
  color: #555;
  text-align: left;
}

.page-betting-guides-scam-identification__numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin-top: 30px;
}

.page-betting-guides-scam-identification__numbered-list li {
  counter-increment: item;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.page-betting-guides-scam-identification__numbered-list li::before {
  content: counter(item) ".";
  background-color: #FFD700;
  color: #2C3E50;
  font-weight: bold;
  font-size: 1.2em;
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.page-betting-guides-scam-identification__list-title {
  font-size: 1.3em;
  color: #2C3E50;
  margin-bottom: 5px;
  font-weight: bold;
}

.page-betting-guides-scam-identification__numbered-list li p {
  margin: 0;
  font-size: 1.05em;
  color: #444;
}

.page-betting-guides-scam-identification__cta-block {
  display: flex;
  align-items: center;
  background-color: #2C3E50;
  color: #F0F0F0;
  border-radius: 12px;
  padding: 40px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
}

.page-betting-guides-scam-identification__cta-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  margin-right: 40px;
  object-fit: cover;
}

.page-betting-guides-scam-identification__cta-content {
  flex: 1;
  min-width: 300px;
}

.page-betting-guides-scam-identification__cta-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-betting-guides-scam-identification__cta-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-betting-guides-scam-identification__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-betting-guides-scam-identification__bullet-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: #E0E0E0;
}

.page-betting-guides-scam-identification__bullet-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-betting-guides-scam-identification__bullet-list strong {
  color: #FFD700;
}

.page-betting-guides-scam-identification__action-buttons {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .page-betting-guides-scam-identification__hero-title {
    font-size: 2.2em;
  }
  .page-betting-guides-scam-identification__section-title {
    font-size: 1.8em;
  }
  .page-betting-guides-scam-identification__grid {
    grid-template-columns: 1fr;
  }
  .page-betting-guides-scam-identification__cta-block {
    flex-direction: column;
    text-align: center;
  }
  .page-betting-guides-scam-identification__cta-image {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .page-betting-guides-scam-identification__cta-buttons {
    justify-content: center;
  }
  .page-betting-guides-scam-identification__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-betting-guides-scam-identification__action-buttons .page-betting-guides-scam-identification__btn--login {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .page-betting-guides-scam-identification__hero-title {
    font-size: 1.8em;
  }
  .page-betting-guides-scam-identification__section-title {
    font-size: 1.5em;
  }
  .page-betting-guides-scam-identification__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-betting-guides-scam-identification__cta-title {
    font-size: 1.6em;
  }
  .page-betting-guides-scam-identification__cta-buttons {
    flex-direction: column;
  }
  .page-betting-guides-scam-identification__btn--secondary,
  .page-betting-guides-scam-identification__action-buttons .page-betting-guides-scam-identification__btn--login {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-betting-guides-scam-identification__btn--contact {
    margin-right: 0;
  }
}