.page-lottery-games-lottery-betting-tips-and-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text on dark background */
  background-color: #1A2A3A;
}

.page-lottery-games-lottery-betting-tips-and-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #1A2A3A; /* Fallback for image loading */
}

.page-lottery-games-lottery-betting-tips-and-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-lottery-games-lottery-betting-tips-and-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__hero h1 {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-lottery-games-lottery-betting-tips-and-analysis__hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section {
  padding: 60px 0;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section:nth-of-type(odd) {
  background-color: #1A2A3A;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section:nth-of-type(even) {
  background-color: #2A3B4C;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-lottery-games-lottery-betting-tips-and-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__grid-item {
  background-color: #2A3B4C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-lottery-betting-tips-and-analysis__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-lottery-betting-tips-and-analysis__grid-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__grid-item p {
  font-size: 1em;
  color: #CCCCCC;
}

.page-lottery-games-lottery-betting-tips-and-analysis__image-small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

.page-lottery-games-lottery-betting-tips-and-analysis__image-large {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-lottery-betting-tips-and-analysis__analysis-content, 
.page-lottery-games-lottery-betting-tips-and-analysis__strategy-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__analysis-text,
.page-lottery-games-lottery-betting-tips-and-analysis__strategy-text {
  flex: 1;
  min-width: 300px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__analysis-content .page-lottery-games-lottery-betting-tips-and-analysis__image-large,
.page-lottery-games-lottery-betting-tips-and-analysis__strategy-content .page-lottery-games-lottery-betting-tips-and-analysis__image-large {
  flex: 1;
  min-width: 300px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__analysis-content .page-lottery-games-lottery-betting-tips-and-analysis__image-large {
  order: 2; /* Image on right */
}

.page-lottery-games-lottery-betting-tips-and-analysis__strategy-content .page-lottery-games-lottery-betting-tips-and-analysis__image-large {
  order: 1; /* Image on left */
}

.page-lottery-games-lottery-betting-tips-and-analysis__analysis-text h3,
.page-lottery-games-lottery-betting-tips-and-analysis__strategy-text h3 {
  color: #FFD700;
  font-size: 1.8em;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section ul,
.page-lottery-games-lottery-betting-tips-and-analysis__section ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section ol {
  list-style-type: decimal;
}

.page-lottery-games-lottery-betting-tips-and-analysis__section li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-lottery-games-lottery-betting-tips-and-analysis__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2A3A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-lottery-games-lottery-betting-tips-and-analysis__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-lottery-games-lottery-betting-tips-and-analysis__button--secondary {
  background-color: #1A2A3A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-lottery-games-lottery-betting-tips-and-analysis__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2A3A;
}

.page-lottery-games-lottery-betting-tips-and-analysis__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__cta {
  text-align: center;
  background-color: #FFD700;
  color: #1A2A3A;
  padding: 80px 0;
}

.page-lottery-games-lottery-betting-tips-and-analysis__cta h2 {
  color: #1A2A3A;
}

.page-lottery-games-lottery-betting-tips-and-analysis__cta h2::after {
  background-color: #1A2A3A;
}

.page-lottery-games-lottery-betting-tips-and-analysis__cta p {
  color: #333333;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-lottery-games-lottery-betting-tips-and-analysis__cta .page-lottery-games-lottery-betting-tips-and-analysis__button {
  background-color: #1A2A3A;
  color: #FFD700;
}

.page-lottery-games-lottery-betting-tips-and-analysis__cta .page-lottery-games-lottery-betting-tips-and-analysis__button:hover {
  background-color: #3A4B5C;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-lottery-betting-tips-and-analysis__hero h1 {
    font-size: 2.5em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__hero p {
    font-size: 1.1em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__section h2 {
    font-size: 2em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__analysis-content,
  .page-lottery-games-lottery-betting-tips-and-analysis__strategy-content {
    flex-direction: column;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__analysis-content .page-lottery-games-lottery-betting-tips-and-analysis__image-large {
    order: 1; /* Image on top for smaller screens */
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__strategy-content .page-lottery-games-lottery-betting-tips-and-analysis__image-large {
    order: 1; /* Image on top for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-lottery-games-lottery-betting-tips-and-analysis__hero {
    height: 350px;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__hero h1 {
    font-size: 2em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__hero p {
    font-size: 1em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__section {
    padding: 40px 0;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__section h2 {
    font-size: 1.8em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__section h3 {
    font-size: 1.4em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-lottery-betting-tips-and-analysis__hero h1 {
    font-size: 1.8em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__hero p {
    font-size: 0.9em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__section h2 {
    font-size: 1.5em;
  }
  .page-lottery-games-lottery-betting-tips-and-analysis__section p,
  .page-lottery-games-lottery-betting-tips-and-analysis__section li {
    font-size: 0.95em;
  }
}