.page-km-68k {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a2e;
  line-height: 1.6;
}

.page-km-68k__section-title {
  font-size: 2.5em;
  color: #ffcc00;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  font-weight: bold;
}

.page-km-68k__text-content {
  max-width: 900px;
  margin: 0 auto 20px auto;
  padding: 0 15px;
  font-size: 1.1em;
  text-align: justify;
}

.page-km-68k__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;
}

.page-km-68k__button--primary {
  background-color: #ffcc00;
  color: #1a1a2e;
  border: 2px solid #ffcc00;
}

.page-km-68k__button--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-km-68k__button--secondary {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-km-68k__button--secondary:hover {
  background-color: #ffcc00;
  color: #1a1a2e;
}

.page-km-68k__button--tertiary {
  background-color: #e94560;
  color: #e0e0e0;
  border: 2px solid #e94560;
}

.page-km-68k__button--tertiary:hover {
  background-color: #c93a52;
  border-color: #c93a52;
}

/* Hero Section */
.page-km-68k__hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Decorative top margin, main offset from body padding */
}

.page-km-68k__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-km-68k__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9));
  z-index: 2;
}

.page-km-68k__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-km-68k__hero-title {
  font-size: 3.5em;
  color: #ffcc00;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-km-68k__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-km-68k__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Payment Providers Section */
.page-km-68k__payment-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 40px 15px;
  background-color: #22223a;
}

.page-km-68k__logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-km-68k__payment-logo {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  box-sizing: border-box;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.page-km-68k__payment-logo:hover {
  transform: scale(1.1);
}

/* About Us Section */
.page-km-68k__about-us-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
}

/* Quick Access Section */
.page-km-68k__quick-access-section {
  padding: 60px 20px;
  background-color: #22223a;
  text-align: center;
}

.page-km-68k__access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-km-68k__button--quick-access {
  background-color: #e94560;
  color: #e0e0e0;
  border: 2px solid #e94560;
  flex-grow: 1;
  min-width: 200px;
}

.page-km-68k__button--quick-access:hover {
  background-color: #c93a52;
  border-color: #c93a52;
}

/* Game Showcase Section */
.page-km-68k__game-showcase-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
}

.page-km-68k__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-km-68k__game-item {
  background-color: #22223a;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-km-68k__game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-km-68k__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-km-68k__game-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-km-68k__game-description {
  font-size: 0.95em;
  color: #c0c0c0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-km-68k__button--game-cta {
  background-color: #ffcc00;
  color: #1a1a2e;
  border: 2px solid #ffcc00;
}

.page-km-68k__button--game-cta:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

/* Promotions Section */
.page-km-68k__promotions-section {
  padding: 60px 20px;
  background-color: #22223a;
}

.page-km-68k__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-km-68k__promotion-card {
  background-color: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-km-68k__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-km-68k__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-km-68k__promotion-title {
  font-size: 1.6em;
  color: #ffcc00;
  margin: 20px 15px 10px 15px;
}

.page-km-68k__promotion-description {
  font-size: 0.95em;
  color: #c0c0c0;
  margin: 0 15px 20px 15px;
}

.page-km-68k__button--promo-cta {
  background-color: #e94560;
  color: #e0e0e0;
  border: 2px solid #e94560;
  margin: 0 15px 20px 15px;
}

.page-km-68k__button--promo-cta:hover {
  background-color: #c93a52;
  border-color: #c93a52;
}

/* Security & Support Section */
.page-km-68k__security-support-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
}

.page-km-68k__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-km-68k__security-item {
  background-color: #22223a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-km-68k__security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-km-68k__security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-km-68k__security-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 10px;
}

.page-km-68k__security-description {
  font-size: 0.95em;
  color: #c0c0c0;
}

/* FAQ Section */
.page-km-68k__faq-section {
  padding: 60px 20px;
  background-color: #22223a;
}

.page-km-68k__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-km-68k__faq-item {
  background-color: #1a1a2e;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-km-68k__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #2d2d4d;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-km-68k__faq-question:hover {
  background-color: #3a3a60;
}

.page-km-68k__faq-question-title {
  font-size: 1.2em;
  color: #e0e0e0;
  margin: 0;
  pointer-events: none; /* Prevent title from blocking click event */
}

.page-km-68k__faq-toggle {
  font-size: 1.5em;
  color: #ffcc00;
  font-weight: bold;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from blocking click event */
}

.page-km-68k__faq-item.active .page-km-68k__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-km-68k__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: #c0c0c0;
}

.page-km-68k__faq-item.active .page-km-68k__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-km-68k__faq-answer p {
  margin: 0;
}

/* Blog Section */
.page-km-68k__blog-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
}

.page-km-68k__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-km-68k__blog-card {
  background-color: #22223a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-km-68k__blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-km-68k__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-km-68k__blog-content {
  padding: 20px 15px;
}

.page-km-68k__blog-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-km-68k__blog-title a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-km-68k__blog-title a:hover {
  color: #e6b800;
}

.page-km-68k__blog-date {
  font-size: 0.85em;
  color: #e94560;
  margin-bottom: 10px;
}

.page-km-68k__blog-summary {
  font-size: 0.95em;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-km-68k__button--read-more {
  background-color: #ffcc00;
  color: #1a1a2e;
  border: 2px solid #ffcc00;
}

.page-km-68k__button--read-more:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-km-68k__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-km-68k__hero-section {
    height: auto;
    min-height: 400px;
    padding-top: 10px;
  }

  .page-km-68k__hero-title {
    font-size: 2.2em;
  }

  .page-km-68k__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-km-68k__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-km-68k__button {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
  }

  .page-km-68k__payment-providers {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 30px 10px;
  }

  .page-km-68k__payment-logo,
  .page-km-68k__payment-logo img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }

  .page-km-68k__about-us-section,
  .page-km-68k__quick-access-section,
  .page-km-68k__game-showcase-section,
  .page-km-68k__promotions-section,
  .page-km-68k__security-support-section,
  .page-km-68k__faq-section,
  .page-km-68k__blog-section {
    padding: 40px 15px;
  }

  .page-km-68k__access-links {
    flex-direction: column;
    gap: 15px;
  }

  .page-km-68k__button--quick-access {
    min-width: unset;
  }

  .page-km-68k__game-grid,
  .page-km-68k__promotion-grid,
  .page-km-68k__security-grid,
  .page-km-68k__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-km-68k__game-image,
  .page-km-68k__promotion-image,
  .page-km-68k__blog-image {
    height: 180px;
  }

  .page-km-68k__game-title,
  .page-km-68k__promotion-title,
  .page-km-68k__security-title,
  .page-km-68k__blog-title {
    font-size: 1.4em;
  }

  /* FAQ specific mobile styles */
  .page-km-68k__faq-question {
    padding: 15px 20px;
  }

  .page-km-68k__faq-question-title {
    font-size: 1.1em;
  }

  .page-km-68k__faq-answer {
    padding: 0 20px;
  }

  .page-km-68k__faq-item.active .page-km-68k__faq-answer {
    padding: 15px 20px !important;
  }
}

/* Ensure all list items and containers are responsive */
.page-km-68k ul,
.page-km-68k ol {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-km-68k li {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.page-km-68k img {
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
}