.page-blog-ku11net-win-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #1a1a1a (dark), so use light text */
  background-color: transparent; /* Main content background will be handled by sections */
}

.page-blog-ku11net-win-latest-promotions__dark-bg {
  background-color: #1a1a1a; /* Inherited from body or set explicitly */
  color: #ffffff;
}

.page-blog-ku11net-win-latest-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-ku11net-win-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-ku11net-win-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.page-blog-ku11net-win-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-ku11net-win-latest-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
  padding: 0 20px;
}

.page-blog-ku11net-win-latest-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-blog-ku11net-win-latest-promotions__description {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-ku11net-win-latest-promotions__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-ku11net-win-latest-promotions__btn-primary,
.page-blog-ku11net-win-latest-promotions__btn-secondary,
.page-blog-ku11net-win-latest-promotions__btn-card {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
  text-align: center;
}

.page-blog-ku11net-win-latest-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-ku11net-win-latest-promotions__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-blog-ku11net-win-latest-promotions__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-ku11net-win-latest-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-ku11net-win-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-ku11net-win-latest-promotions__section-container {
  margin-bottom: 50px;
  padding: 20px;
  border-radius: 8px;
  background-color: #ffffff; /* Light background for content sections */
  color: #333333; /* Dark text for light background */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-ku11net-win-latest-promotions__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-ku11net-win-latest-promotions__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-ku11net-win-latest-promotions p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333333;
}

.page-blog-ku11net-win-latest-promotions__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-ku11net-win-latest-promotions__card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-blog-ku11net-win-latest-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-ku11net-win-latest-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-ku11net-win-latest-promotions__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-ku11net-win-latest-promotions__btn-card {
  margin-top: auto;
  width: auto;
  padding: 10px 20px;
  font-size: 0.95rem;
  background-color: #EA7C07; /* Login color for action button */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-ku11net-win-latest-promotions__btn-card:hover {
  background-color: #c76706;
  border-color: #c76706;
}

.page-blog-ku11net-win-latest-promotions__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-blog-ku11net-win-latest-promotions__image-with-text {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-blog-ku11net-win-latest-promotions__image-left {
  flex: 0 0 400px;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-blog-ku11net-win-latest-promotions__text-right {
  flex: 1;
  min-width: 300px;
}

.page-blog-ku11net-win-latest-promotions__ordered-list,
.page-blog-ku11net-win-latest-promotions__unordered-list {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #333333;
}

.page-blog-ku11net-win-latest-promotions__ordered-list li,
.page-blog-ku11net-win-latest-promotions__unordered-list li {
  margin-bottom: 8px;
  color: #333333;
}

.page-blog-ku11net-win-latest-promotions__faq-list {
  margin-top: 30px;
}

.page-blog-ku11net-win-latest-promotions__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-ku11net-win-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf6fc;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-ku11net-win-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ku11net-win-latest-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-ku11net-win-latest-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-ku11net-win-latest-promotions__faq-answer {
  padding: 0 25px 18px;
  font-size: 1rem;
  color: #555555;
}

.page-blog-ku11net-win-latest-promotions__faq-item[open] .page-blog-ku11net-win-latest-promotions__faq-question {
  background-color: #d8edf7;
}

.page-blog-ku11net-win-latest-promotions__text-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: 600;
}

.page-blog-ku11net-win-latest-promotions__text-link:hover {
  color: #1e87b7;
}

.page-blog-ku11net-win-latest-promotions__cta-buttons--bottom {
  margin-top: 40px;
}

/* Ensure content area images are not smaller than 200px */
.page-blog-ku11net-win-latest-promotions img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-blog-ku11net-win-latest-promotions__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-blog-ku11net-win-latest-promotions__section-title {
    font-size: 1.8rem;
  }
  .page-blog-ku11net-win-latest-promotions__sub-title {
    font-size: 1.5rem;
  }
  .page-blog-ku11net-win-latest-promotions__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-blog-ku11net-win-latest-promotions__image-with-text {
    flex-direction: column;
  }
  .page-blog-ku11net-win-latest-promotions__image-left {
    max-width: 100%;
    flex: none;
  }
  .page-blog-ku11net-win-latest-promotions__text-right {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-ku11net-win-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-ku11net-win-latest-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-ku11net-win-latest-promotions__hero-content {
    padding: 0 15px;
  }

  .page-blog-ku11net-win-latest-promotions__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-ku11net-win-latest-promotions__description {
    font-size: 1rem;
  }

  .page-blog-ku11net-win-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    overflow: hidden;
  }

  .page-blog-ku11net-win-latest-promotions__btn-primary,
  .page-blog-ku11net-win-latest-promotions__btn-secondary,
  .page-blog-ku11net-win-latest-promotions__btn-card,
  .page-blog-ku11net-win-latest-promotions a[class*="button"],
  .page-blog-ku11net-win-latest-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-ku11net-win-latest-promotions__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-ku11net-win-latest-promotions__section-container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-ku11net-win-latest-promotions__section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .page-blog-ku11net-win-latest-promotions__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-ku11net-win-latest-promotions__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-ku11net-win-latest-promotions__card-image,
  .page-blog-ku11net-win-latest-promotions__image-full-width,
  .page-blog-ku11net-win-latest-promotions__image-left {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-ku11net-win-latest-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-ku11net-win-latest-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  .page-blog-ku11net-win-latest-promotions__image-with-text {
    gap: 20px;
  }

  .page-blog-ku11net-win-latest-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ku11net-win-latest-promotions__video-section, /* If video was present */
  .page-blog-ku11net-win-latest-promotions__video-container,
  .page-blog-ku11net-win-latest-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-ku11net-win-latest-promotions video,
  .page-blog-ku11net-win-latest-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}