/* style/188bet-lottery.css */
.page-188bet-lottery {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000; /* Ensure body background is respected */
}

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

/* HERO Section */
.page-188bet-lottery__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px; 
  margin-top: 0;
}

.page-188bet-lottery__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-188bet-lottery__hero-image {
  width: 100%;
  margin: 0;
}

.page-188bet-lottery__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* General Section Styles */
.page-188bet-lottery__introduction-section,
.page-188bet-lottery__products-section,
.page-188bet-lottery__cta-section,
.page-188bet-lottery__promotions-section,
.page-188bet-lottery__security-section,
.page-188bet-lottery__faq-section,
.page-188bet-lottery__blog-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark for sections */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-188bet-lottery__introduction-section {
  padding-top: 70px; /* Adjust for fixed header if no HERO section, but HERO is present */
}

.page-188bet-lottery__section-title {
  font-size: 36px;
  color: #FF00FF; /* Neon purple for titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.7);
}

.page-188bet-lottery__sub-title {
  font-size: 24px;
  color: #00FFFF; /* Cyan for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-188bet-lottery__description,
.page-188bet-lottery__section-description,
.page-188bet-lottery__text-block {
  font-size: 17px;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 15px;
  text-align: justify;
}

.page-188bet-lottery__description strong {
  color: #FF00FF;
}

.page-188bet-lottery__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-188bet-lottery__list-item {
  font-size: 17px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-188bet-lottery__list-item::before {
  content: '⚡'; /* Hiphop/energy icon */
  position: absolute;
  left: 0;
  color: #00FFFF;
  font-size: 20px;
  line-height: 1.6;
}

/* Product Grid (Gameshow) */
.page-188bet-lottery__products-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-188bet-lottery__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-188bet-lottery__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-188bet-lottery__product-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid #ffd700; /* Gold border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-188bet-lottery__product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.4);
}

.page-188bet-lottery__product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-188bet-lottery__product-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.page-188bet-lottery__product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Call to Action Buttons */
.page-188bet-lottery__cta-buttons {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-188bet-lottery__btn-primary,
.page-188bet-lottery__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-188bet-lottery__btn-primary {
  background: linear-gradient(90deg, #FF00FF, #00FFFF);
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
}

.page-188bet-lottery__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
  background: linear-gradient(90deg, #00FFFF, #FF00FF);
}

.page-188bet-lottery__btn-secondary {
  background: transparent;
  color: #00FFFF; /* Cyan text */
  border: 2px solid #00FFFF;
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.page-188bet-lottery__btn-secondary:hover {
  transform: translateY(-3px);
  background: #00FFFF;
  color: #000000; /* Black text for contrast */
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

.page-188bet-lottery__btn-small {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FF00FF, #00FFFF);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.page-188bet-lottery__btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

/* Promotions Section */
.page-188bet-lottery__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-188bet-lottery__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.page-188bet-lottery__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.4);
}

.page-188bet-lottery__promo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #00FFFF;
}

.page-188bet-lottery__promo-title {
  font-size: 22px;
  color: #FF00FF;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-188bet-lottery__promo-text {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Security Section */
.page-188bet-lottery__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-188bet-lottery__security-item {
  background: rgba(0, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.page-188bet-lottery__security-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.page-188bet-lottery__security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(255, 0, 255, 0.1);
  padding: 10px;
}

/* FAQ Section */
.page-188bet-lottery__faq-list {
  margin-top: 40px;
}

.page-188bet-lottery__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.page-188bet-lottery__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 0, 255, 0.15); /* Slightly darker for question */
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-188bet-lottery__faq-question:hover {
  background: rgba(255, 0, 255, 0.25);
  border-color: #FF00FF;
}

.page-188bet-lottery__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-188bet-lottery__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #00FFFF;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-188bet-lottery__faq-item.active .page-188bet-lottery__faq-toggle {
  color: #FF00FF;
  transform: rotate(45deg);
}

.page-188bet-lottery__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 0, 255, 0.1);
}

.page-188bet-lottery__faq-item.active .page-188bet-lottery__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-188bet-lottery__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Blog Section */
.page-188bet-lottery__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-188bet-lottery__blog-card {
  background: rgba(0, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
}

.page-188bet-lottery__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.page-188bet-lottery__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-188bet-lottery__blog-title {
  font-size: 22px;
  color: #FF00FF;
  margin: 20px 20px 10px;
  font-weight: 700;
}

.page-188bet-lottery__blog-title a {
  color: #FF00FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-188bet-lottery__blog-title a:hover {
  color: #00FFFF;
}

.page-188bet-lottery__blog-excerpt {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-188bet-lottery__blog-read-more {
  display: inline-block;
  padding: 10px 20px;
  background: #00FFFF;
  color: #000000;
  text-decoration: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: background 0.3s ease, color 0.3s ease;
}

.page-188bet-lottery__blog-read-more:hover {
  background: #FF00FF;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-188bet-lottery__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-188bet-lottery__products-grid--large {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-188bet-lottery__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-188bet-lottery__hero-section {
    padding-top: 10px; 
  }
  .page-188bet-lottery__section-title {
    font-size: 28px;
  }
  .page-188bet-lottery__sub-title {
    font-size: 20px;
  }
  .page-188bet-lottery__description,
  .page-188bet-lottery__section-description,
  .page-188bet-lottery__text-block,
  .page-188bet-lottery__list-item,
  .page-188bet-lottery__promo-text,
  .page-188bet-lottery__blog-excerpt,
  .page-188bet-lottery__faq-answer p {
    font-size: 15px;
  }

  .page-188bet-lottery__products-section,
  .page-188bet-lottery__cta-section,
  .page-188bet-lottery__promotions-section,
  .page-188bet-lottery__security-section,
  .page-188bet-lottery__faq-section,
  .page-188bet-lottery__blog-section {
    padding: 40px 0;
  }
  .page-188bet-lottery__container {
    padding: 0 15px;
  }

  /* Products Grid Mobile */
  .page-188bet-lottery__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-188bet-lottery__products-grid--small .page-188bet-lottery__product-card {
    aspect-ratio: 1 / 1;
  }
  .page-188bet-lottery__products-grid--small .page-188bet-lottery__product-card-image {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .page-188bet-lottery__products-grid--large {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-188bet-lottery__products-grid--large .page-188bet-lottery__product-card {
    aspect-ratio: 1 / 1;
  }
  .page-188bet-lottery__products-grid--large .page-188bet-lottery__product-card-image {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  /* CTA Buttons Mobile */
  .page-188bet-lottery__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-188bet-lottery__btn-primary,
  .page-188bet-lottery__btn-secondary {
    width: 100%;
    min-width: unset;
    padding: 12px 25px;
    font-size: 16px;
  }

  /* Promotions Mobile */
  .page-188bet-lottery__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-188bet-lottery__promo-image {
    max-width: 200px;
  }

  /* Security Mobile */
  .page-188bet-lottery__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-188bet-lottery__security-icon {
    width: 80px;
    height: 80px;
  }

  /* FAQ Mobile */
  .page-188bet-lottery__faq-question {
    padding: 15px 20px;
  }
  .page-188bet-lottery__faq-question h3 {
    font-size: 16px;
  }
  .page-188bet-lottery__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-188bet-lottery__faq-item.active .page-188bet-lottery__faq-answer {
    padding: 15px 20px !important;
  }

  /* Blog Mobile */
  .page-188bet-lottery__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-188bet-lottery__blog-image {
    height: 180px;
  }
  .page-188bet-lottery__blog-title {
    font-size: 18px;
    margin: 15px 15px 8px;
  }
  .page-188bet-lottery__blog-excerpt {
    font-size: 14px;
    margin: 0 15px 15px;
  }
  .page-188bet-lottery__blog-read-more {
    margin: 0 15px 15px;
  }

  /* Global Image Responsive */
  .page-188bet-lottery img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-188bet-lottery__section,
  .page-188bet-lottery__card,
  .page-188bet-lottery__container,
  .page-188bet-lottery__promo-card,
  .page-188bet-lottery__security-item,
  .page-188bet-lottery__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}