/* style/blog-latest-promotions-at-won88.css */

/* Base styles for the page */
.page-blog-latest-promotions-at-won88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

/* Container for content sections */
.page-blog-latest-promotions-at-won88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styling */
.page-blog-latest-promotions-at-won88__section {
  padding: 40px 0;
  background-color: #08160F; /* Background */
}

.page-blog-latest-promotions-at-won88__section:nth-of-type(odd) {
  background-color: #0A4B2C; /* Deep Green for alternating sections */
}

/* Hero Section */
.page-blog-latest-promotions-at-won88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background-color: #08160F;
  padding-top: 10px; /* Small top padding for the first section */
}

.page-blog-latest-promotions-at-won88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-latest-promotions-at-won88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-latest-promotions-at-won88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-promotions-at-won88__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-latest-promotions-at-won88__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Section Titles */
.page-blog-latest-promotions-at-won88__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-latest-promotions-at-won88__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #2E7A4E; /* Border */
  padding-bottom: 10px;
}

/* Text blocks */
.page-blog-latest-promotions-at-won88__text-block {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

/* Lists */
.page-blog-latest-promotions-at-won88__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-promotions-at-won88__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-promotions-at-won88__list-item {
  margin-bottom: 8px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-promotions-at-won88__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-promotions-at-won88__sub-list-item {
  margin-bottom: 5px;
  color: #F2FFF6; /* Text Main */
}

/* Images within content */
.page-blog-latest-promotions-at-won88__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Call to Action Buttons */
.page-blog-latest-promotions-at-won88__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions-at-won88__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
}

.page-blog-latest-promotions-at-won88__button-small {
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
  margin-right: 10px;
  margin-left: 10px;
}

.page-blog-latest-promotions-at-won88__button-large {
  padding: 18px 35px;
  font-size: 1.2rem;
  margin-top: 30px;
}

.page-blog-latest-promotions-at-won88__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-latest-promotions-at-won88__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FAQ Section */
.page-blog-latest-promotions-at-won88__faq-list {
  margin-top: 30px;
}

.page-blog-latest-promotions-at-won88__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-promotions-at-won88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  list-style: none;
}

.page-blog-latest-promotions-at-won88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-at-won88__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-blog-latest-promotions-at-won88__faq-item[open] .page-blog-latest-promotions-at-won88__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-latest-promotions-at-won88__faq-answer {
  padding: 0 20px 15px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-latest-promotions-at-won88 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-promotions-at-won88__container {
    padding: 0 15px;
  }

  .page-blog-latest-promotions-at-won88__hero-section {
    padding: 60px 15px;
  }

  .page-blog-latest-promotions-at-won88__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-blog-latest-promotions-at-won88__description {
    font-size: 1rem;
  }

  .page-blog-latest-promotions-at-won88__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-latest-promotions-at-won88__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-blog-latest-promotions-at-won88__text-block,
  .page-blog-latest-promotions-at-won88__list-item,
  .page-blog-latest-promotions-at-won88__sub-list-item,
  .page-blog-latest-promotions-at-won88__faq-answer {
    font-size: 0.95rem;
  }

  .page-blog-latest-promotions-at-won88__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 15px;
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 10px;
    display: block;
  }

  .page-blog-latest-promotions-at-won88__button-small {
    margin-right: 0;
    margin-left: 0;
  }

  .page-blog-latest-promotions-at-won88__button-large {
    font-size: 1.1rem;
  }

  .page-blog-latest-promotions-at-won88__cta-container {
    padding: 0 15px;
  }

  .page-blog-latest-promotions-at-won88__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-at-won88__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

/* Color Contrast Fixes if needed */
.page-blog-latest-promotions-at-won88__dark-bg {
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-promotions-at-won88__light-bg {
  color: #333333; /* Fallback for light background */
}