.page-13win1-lottery {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Deep gray for text on light background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Ensure consistency with body background */
}

.page-13win1-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-13win1-lottery__hero-section {
  background: linear-gradient(135deg, #26A9E0, #67c3e9); /* Light blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-13win1-lottery__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-13win1-lottery__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.page-13win1-lottery__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-13win1-lottery__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-13win1-lottery__button--primary {
  background-color: #EA7C07; /* Login orange for primary action */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-13win1-lottery__button--primary:hover {
  background-color: #d46f06;
  border-color: #d46f06;
  transform: translateY(-2px);
}

.page-13win1-lottery__button--secondary {
  background-color: #FFFFFF;
  color: #26A9E0; /* Primary blue for secondary action */
  border: 2px solid #26A9E0;
}

.page-13win1-lottery__button--secondary:hover {
  background-color: #e0f4ff;
  color: #1b769d;
  border-color: #1b769d;
  transform: translateY(-2px);
}

.page-13win1-lottery__section-title {
  font-size: 2.8em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-13win1-lottery__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #EA7C07;
  border-radius: 2px;
}

.page-13win1-lottery__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-13win1-lottery__about-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-13win1-lottery__about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-13win1-lottery__about-text {
  flex: 1;
}

.page-13win1-lottery__about-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-13win1-lottery__about-image {
  flex: 1;
  text-align: center;
}

.page-13win1-lottery__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-13win1-lottery__games-section {
  padding: 80px 0;
}

.page-13win1-lottery__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-13win1-lottery__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-13win1-lottery__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-13win1-lottery__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-13win1-lottery__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-13win1-lottery__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-13win1-lottery__card-button {
  background-color: #EA7C07;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-13win1-lottery__card-button:hover {
  background-color: #d46f06;
}

.page-13win1-lottery__benefits-section {
  background-color: #e0f4ff; /* Lighter shade of primary blue */
  padding: 80px 0;
}

.page-13win1-lottery__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-13win1-lottery__benefit-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.page-13win1-lottery__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-13win1-lottery__benefit-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-13win1-lottery__benefit-description {
  font-size: 1em;
  color: #555555;
}

.page-13win1-lottery__guide-section {
  padding: 80px 0;
}

.page-13win1-lottery__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-13win1-lottery__step-item {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-13win1-lottery__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-13win1-lottery__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-13win1-lottery__step-description {
  font-size: 1em;
  color: #555555;
}

.page-13win1-lottery__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-13win1-lottery__promotions-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.page-13win1-lottery__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-13win1-lottery__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-13win1-lottery__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-13win1-lottery__faq-section {
  padding: 80px 0;
}

.page-13win1-lottery__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-13win1-lottery__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-13win1-lottery__faq-question {
  font-size: 1.3em;
  color: #26A9E0;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  position: relative;
}

.page-13win1-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-13win1-lottery__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-13win1-lottery__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
  margin: 0;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-13win1-lottery__faq-answer.active {
  display: block;
  max-height: 200px; /* Adjust as needed */
  padding: 0 20px 20px;
}

.page-13win1-lottery__responsible-gaming-section {
  background-color: #e0f4ff;
  padding: 80px 0;
  text-align: center;
}

.page-13win1-lottery__responsible-gaming-section .page-13win1-lottery__section-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #444444;
}

.page-13win1-lottery__cta-section {
  background: linear-gradient(90deg, #26A9E0, #1b769d); /* Darker blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-13win1-lottery__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-13win1-lottery__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-13win1-lottery__hero-title {
    font-size: 3em;
  }
  .page-13win1-lottery__section-title {
    font-size: 2.2em;
  }
  .page-13win1-lottery__about-content {
    flex-direction: column;
    text-align: center;
  }
  .page-13win1-lottery__about-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-13win1-lottery__hero-title {
    font-size: 2.5em;
  }
  .page-13win1-lottery__hero-description {
    font-size: 1.1em;
  }
  .page-13win1-lottery__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-13win1-lottery__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-13win1-lottery__section-title {
    font-size: 1.8em;
  }
  .page-13win1-lottery__section-subtitle {
    font-size: 1em;
  }
  .page-13win1-lottery__game-grid, .page-13win1-lottery__benefits-grid, .page-13win1-lottery__guide-steps, .page-13win1-lottery__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-13win1-lottery__cta-title {
    font-size: 2.2em;
  }
  .page-13win1-lottery__cta-description {
    font-size: 1em;
  }
}