.page-k9ccwin {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
  background-color: #f5f5f5; /* Light background for the page content */
}

.page-k9ccwin__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-k9ccwin__hero-section {
  padding-top: 10px; /* Small top padding, assuming body already has padding-top from shared.css */
  padding-bottom: 40px;
  background-color: #1a1a2e; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden; /* Ensure no overflow */
}

.page-k9ccwin__hero-image-wrapper {
  margin-bottom: 20px;
}

.page-k9ccwin__hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-k9ccwin__main-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-k9ccwin__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-k9ccwin__section-title {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #2563eb;
  position: relative;
  padding-bottom: 10px;
}

.page-k9ccwin__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2563eb;
  border-radius: 2px;
}

.page-k9ccwin__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-k9ccwin__highlight {
  color: #2563eb;
  font-weight: bold;
}

.page-k9ccwin__btn-primary,
.page-k9ccwin__btn-secondary,
.page-k9ccwin__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-k9ccwin__btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 2px solid #2563eb;
  margin: 10px;
}

.page-k9ccwin__btn-primary:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-k9ccwin__btn-secondary {
  background-color: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
  margin: 10px;
}

.page-k9ccwin__btn-secondary:hover {
  background-color: #e0f2fe;
  color: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-k9ccwin__btn-tertiary {
  background-color: #64748b;
  color: #ffffff;
  border: 2px solid #64748b;
  margin: 5px;
  font-size: 0.9em;
  padding: 8px 18px;
}

.page-k9ccwin__btn-tertiary:hover {
  background-color: #475569;
  border-color: #475569;
  transform: translateY(-1px);
}

.page-k9ccwin__about-section,
.page-k9ccwin__games-section,
.page-k9ccwin__promotions-section,
.page-k9ccwin__app-download-section,
.page-k9ccwin__faq-section,
.page-k9ccwin__cta-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for content sections */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.page-k9ccwin__games-grid,
.page-k9ccwin__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-k9ccwin__game-card,
.page-k9ccwin__promo-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensure cards have equal height */
}

.page-k9ccwin__game-card img,
.page-k9ccwin__promo-card img {
  width: 100%;
  height: 200px; /* Fixed height for image consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-k9ccwin__game-title,
.page-k9ccwin__promo-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #2563eb;
  margin: 0 15px 10px;
  flex-grow: 0;
}