/* style/game-types-lottery-play-methods.css */
.page-game-types-lottery-play-methods {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-game-types-lottery-play-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-game-types-lottery-play-methods__hero-section {
  background: linear-gradient(135deg, #003366, #1a4a7a);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.page-game-types-lottery-play-methods__hero-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.page-game-types-lottery-play-methods__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  line-height: 1.2;
}

.page-game-types-lottery-play-methods__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-types-lottery-play-methods__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-game-types-lottery-play-methods__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-game-types-lottery-play-methods__hero-image-container {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.page-game-types-lottery-play-methods__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-game-types-lottery-play-methods__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-game-types-lottery-play-methods__section:nth-of-type(even) {
  background-color: #eef4f8; /* Light blue-grey for alternating sections */
}

.page-game-types-lottery-play-methods__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types-lottery-play-methods__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-game-types-lottery-play-methods__intro p, 
.page-game-types-lottery-play-methods__guide p, 
.page-game-types-lottery-play-methods__tips p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.page-game-types-lottery-play-methods__secondary-cta {
  display: inline-block;
  background-color: #003366; /* Dark blue button */
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #003366;
}

.page-game-types-lottery-play-methods__secondary-cta:hover {
  background-color: #002244;
  transform: translateY(-3px);
}

/* Types Grid */
.page-game-types-lottery-play-methods__type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-types-lottery-play-methods__type-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFCC00;
}

.page-game-types-lottery-play-methods__type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-play-methods__type-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-types-lottery-play-methods__type-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-game-types-lottery-play-methods__type-card p {
  font-size: 1em;
  color: #555;
}

/* Guide Section */
.page-game-types-lottery-play-methods__guide ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.page-game-types-lottery-play-methods__guide li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #333;
}

.page-game-types-lottery-play-methods__guide li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFCC00;
  color: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-play-methods__guide li strong {
  color: #003366;
}

.page-game-types-lottery-play-methods__guide li a {
  color: #003366;
  text-decoration: underline;
}

.page-game-types-lottery-play-methods__guide li a:hover {
  color: #FFCC00;
}

/* Tips Section */
.page-game-types-lottery-play-methods__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-types-lottery-play-methods__tips-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: #444;
  border-left: 5px solid #003366;
  transition: border-left-color 0.3s ease;
}

.page-game-types-lottery-play-methods__tips-list li:hover {
  border-left-color: #FFCC00;
}

.page-game-types-lottery-play-methods__tips-list li strong {
  color: #003366;
}

/* Advantages Section */
.page-game-types-lottery-play-methods__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-types-lottery-play-methods__advantage-item {
  background-color: #003366;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-types-lottery-play-methods__advantage-item:hover {
  background-color: #002244;
  transform: translateY(-5px);
}

.page-game-types-lottery-play-methods__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Make icons white */
}

.page-game-types-lottery-play-methods__advantage-title {
  font-size: 1.6em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-game-types-lottery-play-methods__advantage-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-game-types-lottery-play-methods__advantage-item a {
  color: #FFCC00;
  text-decoration: underline;
}

.page-game-types-lottery-play-methods__advantage-item a:hover {
  color: #fff;
}

/* FAQ Section */
.page-game-types-lottery-play-methods__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FFCC00;
}

.page-game-types-lottery-play-methods__faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-game-types-lottery-play-methods__faq-answer {
  font-size: 1.05em;
  color: #555;
}

/* Final CTA Section */
.page-game-types-lottery-play-methods__final-cta {
  background: linear-gradient(135deg, #1a4a7a, #003366);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-types-lottery-play-methods__final-cta-content h2 {
  color: #FFCC00;
}

.page-game-types-lottery-play-methods__final-cta-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-game-types-lottery-play-methods__final-cta-content .page-game-types-lottery-play-methods__cta-button {
  margin-right: 20px;
}

/* Highlight Text */
.page-game-types-lottery-play-methods .highlight {
  color: #003366;
  font-weight: bold;
}

.page-game-types-lottery-play-methods__section:nth-of-type(even) .highlight {
  color: #003366;
}

.page-game-types-lottery-play-methods__advantage-item .highlight,
.page-game-types-lottery-play-methods__final-cta .highlight {
  color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-lottery-play-methods__hero-section {
    flex-direction: column;
  }
  .page-game-types-lottery-play-methods__hero-content, 
  .page-game-types-lottery-play-methods__hero-image-container {
    min-width: unset;
    width: 100%;
  }
  .page-game-types-lottery-play-methods__main-title {
    font-size: 2.5em;
  }
  .page-game-types-lottery-play-methods__section-title {
    font-size: 2em;
  }
  .page-game-types-lottery-play-methods__type-grid,
  .page-game-types-lottery-play-methods__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-types-lottery-play-methods__hero-section {
    padding: 60px 0;
  }
  .page-game-types-lottery-play-methods__main-title {
    font-size: 2em;
  }
  .page-game-types-lottery-play-methods__subtitle {
    font-size: 1.1em;
  }
  .page-game-types-lottery-play-methods__section {
    padding: 40px 0;
  }
  .page-game-types-lottery-play-methods__section-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery-play-methods__guide li {
    padding-left: 45px;
  }
  .page-game-types-lottery-play-methods__guide li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-game-types-lottery-play-methods__cta-button,
  .page-game-types-lottery-play-methods__secondary-cta {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-types-lottery-play-methods__final-cta-content .page-game-types-lottery-play-methods__cta-button {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-types-lottery-play-methods__main-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery-play-methods__section-title {
    font-size: 1.5em;
  }
  .page-game-types-lottery-play-methods__type-card,
  .page-game-types-lottery-play-methods__advantage-item,
  .page-game-types-lottery-play-methods__faq-item {
    padding: 20px;
  }
  .page-game-types-lottery-play-methods__type-title {
    font-size: 1.5em;
  }
  .page-game-types-lottery-play-methods__faq-question {
    font-size: 1.2em;
  }
  .page-game-types-lottery-play-methods__final-cta-content .page-game-types-lottery-play-methods__cta-button,
  .page-game-types-lottery-play-methods__final-cta-content .page-game-types-lottery-play-methods__secondary-cta {
    width: 90%;
    margin: 10px auto;
  }
}