.page-blog-ku777-latest-games-and-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-blog-ku777-latest-games-and-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-ku777-latest-games-and-promotions__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-ku777-latest-games-and-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-ku777-latest-games-and-promotions__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-ku777-latest-games-and-promotions__dark-bg .page-blog-ku777-latest-games-and-promotions__section-title {
  color: #ffffff;
}

.page-blog-ku777-latest-games-and-promotions__light-bg .page-blog-ku777-latest-games-and-promotions__section-title {
  color: #26A9E0;
}

.page-blog-ku777-latest-games-and-promotions__subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-blog-ku777-latest-games-and-promotions__dark-bg .page-blog-ku777-latest-games-and-promotions__subsection-title {
  color: #ffffff;
}

.page-blog-ku777-latest-games-and-promotions__text-block {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-blog-ku777-latest-games-and-promotions__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-ku777-latest-games-and-promotions__list li {
  margin-bottom: 10px;
}

/* Buttons */
.page-blog-ku777-latest-games-and-promotions__btn-primary,
.page-blog-ku777-latest-games-and-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

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

.page-blog-ku777-latest-games-and-promotions__btn-primary:hover {
  background-color: #1a8ac7;
  border-color: #1a8ac7;
}

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

.page-blog-ku777-latest-games-and-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-ku777-latest-games-and-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Section */
.page-blog-ku777-latest-games-and-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  overflow: hidden;
  padding: 10px 0 60px 0; /* body already has padding-top for header */
}

.page-blog-ku777-latest-games-and-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-ku777-latest-games-and-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
  color: #ffffff;
}

.page-blog-ku777-latest-games-and-promotions__main-title {
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  /* No fixed font-size, rely on clamp if needed, otherwise responsive media queries */
}

.page-blog-ku777-latest-games-and-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Introduction Section */
.page-blog-ku777-latest-games-and-promotions__introduction-section {
  padding: 60px 0;
}

/* Featured Games Section */
.page-blog-ku777-latest-games-and-promotions__featured-games-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-ku777-latest-games-and-promotions__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ku777-latest-games-and-promotions__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-ku777-latest-games-and-promotions__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-ku777-latest-games-and-promotions__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ku777-latest-games-and-promotions__game-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-blog-ku777-latest-games-and-promotions__game-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-blog-ku777-latest-games-and-promotions__promotions-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-ku777-latest-games-and-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ku777-latest-games-and-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-blog-ku777-latest-games-and-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-ku777-latest-games-and-promotions__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ku777-latest-games-and-promotions__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-ku777-latest-games-and-promotions__promo-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-ku777-latest-games-and-promotions__more-promos {
  margin-top: 40px;
}

/* Guide Section */
.page-blog-ku777-latest-games-and-promotions__guide-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-ku777-latest-games-and-promotions__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ku777-latest-games-and-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ku777-latest-games-and-promotions__step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-blog-ku777-latest-games-and-promotions__step-description {
  font-size: 0.95em;
}

/* Security & Support Section */
.page-blog-ku777-latest-games-and-promotions__security-support-section {
  padding: 60px 0;
}

.page-blog-ku777-latest-games-and-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-blog-ku777-latest-games-and-promotions__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-ku777-latest-games-and-promotions__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ku777-latest-games-and-promotions__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-ku777-latest-games-and-promotions__feature-description {
  font-size: 0.95em;
}

/* App Download Section */
.page-blog-ku777-latest-games-and-promotions__app-download-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-ku777-latest-games-and-promotions__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-ku777-latest-games-and-promotions__app-image {
  width: 300px;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ku777-latest-games-and-promotions__app-info {
  text-align: left;
  max-width: 500px;
}

.page-blog-ku777-latest-games-and-promotions__app-info .page-blog-ku777-latest-games-and-promotions__subsection-title {
  color: #ffffff;
}

.page-blog-ku777-latest-games-and-promotions__app-info .page-blog-ku777-latest-games-and-promotions__list li {
  color: #f0f0f0;
}

/* FAQ Section */
.page-blog-ku777-latest-games-and-promotions__faq-section {
  padding: 60px 0;
}

.page-blog-ku777-latest-games-and-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-ku777-latest-games-and-promotions__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-ku777-latest-games-and-promotions__faq-item details > summary {
  list-style: none;
}

.page-blog-ku777-latest-games-and-promotions__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-blog-ku777-latest-games-and-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-ku777-latest-games-and-promotions__faq-item[open] .page-blog-ku777-latest-games-and-promotions__faq-question {
  border-bottom: none;
}

.page-blog-ku777-latest-games-and-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-ku777-latest-games-and-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-ku777-latest-games-and-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  color: #555555;
}

/* Conclusion Section */
.page-blog-ku777-latest-games-and-promotions__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Global image settings for content area to prevent small icons */
.page-blog-ku777-latest-games-and-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-blog-ku777-latest-games-and-promotions__main-title {
    font-size: 2.8em;
  }
  .page-blog-ku777-latest-games-and-promotions__section-title {
    font-size: 2em;
  }
  .page-blog-ku777-latest-games-and-promotions__hero-content {
    max-width: 700px;
  }
  .page-blog-ku777-latest-games-and-promotions__app-content {
    flex-direction: column;
  }
  .page-blog-ku777-latest-games-and-promotions__app-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-blog-ku777-latest-games-and-promotions__hero-section {
    min-height: 450px;
    padding-bottom: 40px;
  }
  .page-blog-ku777-latest-games-and-promotions__main-title {
    font-size: 2.2em; /* Adjusted for mobile */
  }
  .page-blog-ku777-latest-games-and-promotions__hero-description {
    font-size: 1em;
  }
  .page-blog-ku777-latest-games-and-promotions__section-title {
    font-size: 1.8em;
  }
  .page-blog-ku777-latest-games-and-promotions__subsection-title {
    font-size: 1.5em;
  }
  .page-blog-ku777-latest-games-and-promotions__btn-primary,
  .page-blog-ku777-latest-games-and-promotions__btn-secondary {
    padding: 10px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-ku777-latest-games-and-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile image and container adaptation */
  .page-blog-ku777-latest-games-and-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-ku777-latest-games-and-promotions__section,
  .page-blog-ku777-latest-games-and-promotions__card,
  .page-blog-ku777-latest-games-and-promotions__container,
  .page-blog-ku777-latest-games-and-promotions__game-card,
  .page-blog-ku777-latest-games-and-promotions__promo-card,
  .page-blog-ku777-latest-games-and-promotions__step-card,
  .page-blog-ku777-latest-games-and-promotions__feature-item,
  .page-blog-ku777-latest-games-and-promotions__app-content,
  .page-blog-ku777-latest-games-and-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-ku777-latest-games-and-promotions__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-ku777-latest-games-and-promotions__app-image {
    width: 250px;
    height: auto;
  }
  .page-blog-ku777-latest-games-and-promotions__game-image,
  .page-blog-ku777-latest-games-and-promotions__promo-image,
  .page-blog-ku777-latest-games-and-promotions__feature-icon {
    height: auto !important; /* Allow auto height on mobile for better scaling */
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-ku777-latest-games-and-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-blog-ku777-latest-games-and-promotions__faq-answer {
    font-size: 0.9em;
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-ku777-latest-games-and-promotions__main-title {
    font-size: 1.8em;
  }
  .page-blog-ku777-latest-games-and-promotions__section-title {
    font-size: 1.5em;
  }
  .page-blog-ku777-latest-games-and-promotions__hero-section {
    min-height: 350px;
  }
  .page-blog-ku777-latest-games-and-promotions__game-categories,
  .page-blog-ku777-latest-games-and-promotions__promo-grid,
  .page-blog-ku777-latest-games-and-promotions__guide-steps,
  .page-blog-ku777-latest-games-and-promotions__features-grid {
    grid-template-columns: 1fr;
  }
}