/* style/blog-winbet-latest-lottery-games.css */

/* Base styles for the page content */
.page-blog-winbet-latest-lottery-games {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-winbet-latest-lottery-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-winbet-latest-lottery-games__keyword {
  color: #57E38D; /* Glow color for keywords */
  font-weight: bold;
}

/* Hero Section */
.page-blog-winbet-latest-lottery-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  color: #F2FFF6;
  text-align: center;
  overflow: hidden;
}

.page-blog-winbet-latest-lottery-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-blog-winbet-latest-lottery-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-winbet-latest-lottery-games__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to slightly overlap the image for visual flow, but not text on image */
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 1) 100%);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-winbet-latest-lottery-games__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog-winbet-latest-lottery-games__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-blog-winbet-latest-lottery-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-winbet-latest-lottery-games__btn-primary,
.page-blog-winbet-latest-lottery-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-winbet-latest-lottery-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-blog-winbet-latest-lottery-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-winbet-latest-lottery-games__btn-secondary {
  background: transparent;
  color: #57E38D;
  border: 2px solid #2E7A4E;
}

.page-blog-winbet-latest-lottery-games__btn-secondary:hover {
  background-color: #11271B;
  color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 122, 78, 0.4);
}

/* Content Sections */
.page-blog-winbet-latest-lottery-games__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A;
}

.page-blog-winbet-latest-lottery-games__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-winbet-latest-lottery-games__dark-section {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-blog-winbet-latest-lottery-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-winbet-latest-lottery-games__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-blog-winbet-latest-lottery-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Card Grid */
.page-blog-winbet-latest-lottery-games__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-winbet-latest-lottery-games__card {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-blog-winbet-latest-lottery-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(46, 122, 78, 0.5);
}

.page-blog-winbet-latest-lottery-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-winbet-latest-lottery-games__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-blog-winbet-latest-lottery-games__card-text {
  font-size: 0.95em;
  color: #A7D9B8;
}

/* Info Grid (for registration/deposit/withdrawal) */
.page-blog-winbet-latest-lottery-games__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-winbet-latest-lottery-games__info-card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-blog-winbet-latest-lottery-games__info-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-blog-winbet-latest-lottery-games__info-text {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-winbet-latest-lottery-games__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background color */
  color: #F2FFF6;
}

.page-blog-winbet-latest-lottery-games__faq-list {
  margin-top: 40px;
}

.page-blog-winbet-latest-lottery-games__faq-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-winbet-latest-lottery-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

.page-blog-winbet-latest-lottery-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-winbet-latest-lottery-games__faq-question:hover {
  background-color: #0A4B2C;
}

.page-blog-winbet-latest-lottery-games__faq-qtext {
  flex-grow: 1;
}

.page-blog-winbet-latest-lottery-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-blog-winbet-latest-lottery-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8;
  background-color: #11271B;
}

/* CTA Bottom Section */
.page-blog-winbet-latest-lottery-games__cta-bottom-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
  text-align: center;
  color: #F2FFF6;
}

.page-blog-winbet-latest-lottery-games__cta-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog-winbet-latest-lottery-games__cta-text {
  font-size: 1.2em;
  color: #A7D9B8;
  margin-bottom: 40px;
}

.page-blog-winbet-latest-lottery-games__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-winbet-latest-lottery-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-winbet-latest-lottery-games__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-winbet-latest-lottery-games__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-blog-winbet-latest-lottery-games__main-title {
    font-size: 2em;
  }

  .page-blog-winbet-latest-lottery-games__description {
    font-size: 1em;
  }

  .page-blog-winbet-latest-lottery-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-blog-winbet-latest-lottery-games__btn-primary,
  .page-blog-winbet-latest-lottery-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-winbet-latest-lottery-games__content-section,
  .page-blog-winbet-latest-lottery-games__faq-section,
  .page-blog-winbet-latest-lottery-games__cta-bottom-section {
    padding: 40px 0;
  }

  .page-blog-winbet-latest-lottery-games__section-title {
    font-size: 1.8em;
  }

  .page-blog-winbet-latest-lottery-games__text-block {
    font-size: 1em;
  }

  .page-blog-winbet-latest-lottery-games__card-grid,
  .page-blog-winbet-latest-lottery-games__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-winbet-latest-lottery-games__card,
  .page-blog-winbet-latest-lottery-games__info-card {
    padding: 20px;
  }

  .page-blog-winbet-latest-lottery-games__card-image {
    height: 180px;
  }

  .page-blog-winbet-latest-lottery-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-winbet-latest-lottery-games__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Mobile image and video responsiveness */
  .page-blog-winbet-latest-lottery-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-winbet-latest-lottery-games__hero-section,
  .page-blog-winbet-latest-lottery-games__content-section,
  .page-blog-winbet-latest-lottery-games__faq-section,
  .page-blog-winbet-latest-lottery-games__cta-bottom-section,
  .page-blog-winbet-latest-lottery-games__container,
  .page-blog-winbet-latest-lottery-games__card,
  .page-blog-winbet-latest-lottery-games__info-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-winbet-latest-lottery-games__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

/* Desktop specific adjustments for consistency */
.page-blog-winbet-latest-lottery-games__video-container {
  width: 100%; /* Ensure full width within max-width on desktop */
}

/* Ensure no filter is used on images */
.page-blog-winbet-latest-lottery-games img {
  filter: none;
}