.page-lottery-games-high-frequency-advantage {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A2239; /* Main dark background */
  line-height: 1.6;
}

.page-lottery-games-high-frequency-advantage__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-games-high-frequency-advantage__hero {
  background: linear-gradient(135deg, #0A2239, #1a3d5f); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-high-frequency-advantage__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-high-frequency-advantage__hero-subtitle {
  font-size: 1.4em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games-high-frequency-advantage__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-lottery-games-high-frequency-advantage__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-high-frequency-advantage__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-lottery-games-high-frequency-advantage__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-lottery-games-high-frequency-advantage__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-lottery-games-high-frequency-advantage__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
}

.page-lottery-games-high-frequency-advantage__btn--contact {
  background-color: #e74c3c; /* Red for contact/urgency */
  color: #FFFFFF;
  border: 2px solid #e74c3c;
}

.page-lottery-games-high-frequency-advantage__btn--contact:hover {
  background-color: #c0392b;
  border-color: #c0392b;
  transform: translateY(-3px);
}

.page-lottery-games-high-frequency-advantage__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery-games-high-frequency-advantage__section:last-of-type {
  border-bottom: none;
}

.page-lottery-games-high-frequency-advantage__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-lottery-games-high-frequency-advantage__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-lottery-games-high-frequency-advantage__advantage-item {
  background-color: #1a3d5f; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-lottery-games-high-frequency-advantage__advantage-item:hover {
  transform: translateY(-5px);
}

.page-lottery-games-high-frequency-advantage__advantage-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-lottery-games-high-frequency-advantage__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-high-frequency-advantage__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  width: 40%;
}

.page-lottery-games-high-frequency-advantage__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  width: 40%;
}

.page-lottery-games-high-frequency-advantage__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

.page-lottery-games-high-frequency-advantage__intro .page-lottery-games-high-frequency-advantage__container,
.page-lottery-games-high-frequency-advantage__responsible-gaming .page-lottery-games-high-frequency-advantage__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.page-lottery-games-high-frequency-advantage__intro .page-lottery-games-high-frequency-advantage__text-content,
.page-lottery-games-high-frequency-advantage__responsible-gaming .page-lottery-games-high-frequency-advantage__text-content {
  flex: 1;
  min-width: 50%;
}

.page-lottery-games-high-frequency-advantage__steps {
  list-style-type: decimal;
  color: #E0E0E0;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-lottery-games-high-frequency-advantage__steps li {
  margin-bottom: 10px;
  color: #F0F0F0;
}

.page-lottery-games-high-frequency-advantage__steps li strong {
  color: #FFD700;
}

.page-lottery-games-high-frequency-advantage__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-high-frequency-advantage__hero-title {
    font-size: 2.8em;
  }
  .page-lottery-games-high-frequency-advantage__hero-subtitle {
    font-size: 1.2em;
  }
  .page-lottery-games-high-frequency-advantage__section-title {
    font-size: 2em;
  }
  .page-lottery-games-high-frequency-advantage__image--left,
  .page-lottery-games-high-frequency-advantage__image--right,
  .page-lottery-games-high-frequency-advantage__image--center {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
  .page-lottery-games-high-frequency-advantage__intro .page-lottery-games-high-frequency-advantage__text-content,
  .page-lottery-games-high-frequency-advantage__responsible-gaming .page-lottery-games-high-frequency-advantage__text-content {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-high-frequency-advantage__hero {
    padding: 80px 0;
  }
  .page-lottery-games-high-frequency-advantage__hero-title {
    font-size: 2.2em;
  }
  .page-lottery-games-high-frequency-advantage__hero-subtitle {
    font-size: 1em;
  }
  .page-lottery-games-high-frequency-advantage__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-games-high-frequency-advantage__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-lottery-games-high-frequency-advantage__section {
    padding: 40px 0;
  }
  .page-lottery-games-high-frequency-advantage__section-title {
    font-size: 1.8em;
  }
  .page-lottery-games-high-frequency-advantage__grid {
    grid-template-columns: 1fr;
  }
  .page-lottery-games-high-frequency-advantage__image--left,
  .page-lottery-games-high-frequency-advantage__image--right,
  .page-lottery-games-high-frequency-advantage__image--center {
    width: 95%;
  }
}