/* style/lottery-games-mark-six.css */
.page-lottery-games-mark-six {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-lottery-games-mark-six__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-games-mark-six__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-mark-six__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.2) 0%, transparent 70%),
              radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
  opacity: 0.3;
  animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-lottery-games-mark-six__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-lottery-games-mark-six__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-lottery-games-mark-six__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.page-lottery-games-mark-six__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-mark-six__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-lottery-games-mark-six__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-lottery-games-mark-six__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-lottery-games-mark-six__sub-section-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #ffc107;
  padding-left: 15px;
}

.page-lottery-games-mark-six__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #444;
}

.page-lottery-games-mark-six__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #444;
}

.page-lottery-games-mark-six__list li {
  margin-bottom: 10px;
}

.page-lottery-games-mark-six__list strong {
  color: #007bff;
}

.page-lottery-games-mark-six__numbered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #444;
}

.page-lottery-games-mark-six__numbered-list li {
  margin-bottom: 10px;
}

.page-lottery-games-mark-six__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-lottery-games-mark-six__image-half-width {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-lottery-games-mark-six__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-lottery-games-mark-six__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-lottery-games-mark-six__cta-button--secondary {
  background-color: #007bff;
  color: #fff;
}

.page-lottery-games-mark-six__cta-button--secondary:hover {
  background-color: #0056b3;
}

.page-lottery-games-mark-six__cta-button--download {
  background-color: #28a745;
  color: #fff;
}

.page-lottery-games-mark-six__cta-button--download:hover {
  background-color: #218838;
}

.page-lottery-games-mark-six__contact-cta {
  background-color: #e9f5ff;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #d0e8ff;
}

.page-lottery-games-mark-six__contact-cta .page-lottery-games-mark-six__section-title {
  color: #007bff;
}

.page-lottery-games-mark-six__contact-cta .page-lottery-games-mark-six__text-block {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-lottery-games-mark-six__main-title {
    font-size: 2.5em;
  }

  .page-lottery-games-mark-six__subtitle {
    font-size: 1.2em;
  }

  .page-lottery-games-mark-six__section-title {
    font-size: 2em;
  }

  .page-lottery-games-mark-six__sub-section-title {
    font-size: 1.5em;
  }

  .page-lottery-games-mark-six__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-lottery-games-mark-six__button-group {
    flex-direction: column;
    align-items: center;
  }

  .page-lottery-games-mark-six__cta-button.page-lottery-games-mark-six__cta-button--secondary,
  .page-lottery-games-mark-six__cta-button.page-lottery-games-mark-six__cta-button--download {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-mark-six__main-title {
    font-size: 2em;
  }

  .page-lottery-games-mark-six__subtitle {
    font-size: 1em;
  }

  .page-lottery-games-mark-six__section-title {
    font-size: 1.8em;
  }

  .page-lottery-games-mark-six__sub-section-title {
    font-size: 1.3em;
  }

  .page-lottery-games-mark-six__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  
  .page-lottery-games-mark-six__hero-section {
    padding: 60px 0;
  }
}