/* style/blog-kk55-latest-access-guide.css */

/* Base styles for the page content */
.page-blog-kk55-latest-access-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #FFFFFF);
}

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

/* Section Titles */
.page-blog-kk55-latest-access-guide__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Text blocks */
.page-blog-kk55-latest-access-guide__text-block {
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: justify;
}

/* Hero Section */
.page-blog-kk55-latest-access-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background-color: #26A9E0; /* Brand primary color for hero background */
}

.page-blog-kk55-latest-access-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.page-blog-kk55-latest-access-guide__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-kk55-latest-access-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-blog-kk55-latest-access-guide__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.page-blog-kk55-latest-access-guide__btn-primary,
.page-blog-kk55-latest-access-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-kk55-latest-access-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-kk55-latest-access-guide__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-blog-kk55-latest-access-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-kk55-latest-access-guide__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1a7fb3;
  border-color: #1a7fb3;
}

/* Introduction Section */
.page-blog-kk55-latest-access-guide__introduction-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

/* Steps Section */
.page-blog-kk55-latest-access-guide__steps-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-kk55-latest-access-guide__steps-section .page-blog-kk55-latest-access-guide__section-title {
  color: #FFFFFF;
}

.page-blog-kk55-latest-access-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-kk55-latest-access-guide__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%; /* Ensure cards have equal height */
  box-sizing: border-box;
}

.page-blog-kk55-latest-access-guide__step-icon {
  width: 100%; /* Ensure images are responsive within card */
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-kk55-latest-access-guide__step-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-blog-kk55-latest-access-guide__step-description {
  font-size: 1rem;
  color: #f0f0f0;
  flex-grow: 1; /* Make description grow to fill space */
}

.page-blog-kk55-latest-access-guide__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Troubleshooting Section */
.page-blog-kk55-latest-access-guide__troubleshooting-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-blog-kk55-latest-access-guide__troubleshooting-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.page-blog-kk55-latest-access-guide__troubleshooting-list li {
  margin-bottom: 10px;
}

.page-blog-kk55-latest-access-guide__troubleshooting-list strong {
  color: #26A9E0;
}

/* Games Section */
.page-blog-kk55-latest-access-guide__games-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-kk55-latest-access-guide__games-section .page-blog-kk55-latest-access-guide__section-title {
  color: #FFFFFF;
}

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

.page-blog-kk55-latest-access-guide__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-blog-kk55-latest-access-guide__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-kk55-latest-access-guide__game-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 15px 15px 10px;
}

.page-blog-kk55-latest-access-guide__game-title a {
  color: #FFFFFF;
  text-decoration: none;
}

.page-blog-kk55-latest-access-guide__game-title a:hover {
  text-decoration: underline;
}

.page-blog-kk55-latest-access-guide__game-description {
  font-size: 1rem;
  color: #f0f0f0;
  padding: 0 15px 15px;
  flex-grow: 1;
}

/* Promotions Section */
.page-blog-kk55-latest-access-guide__promotions-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-blog-kk55-latest-access-guide__promotion-list {
  list-style-type: none;
  padding: 0;
  margin: 40px 0;
}

.page-blog-kk55-latest-access-guide__promotion-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-kk55-latest-access-guide__promotion-list strong {
  color: #26A9E0;
}

/* Security Section */
.page-blog-kk55-latest-access-guide__security-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-kk55-latest-access-guide__security-section .page-blog-kk55-latest-access-guide__section-title {
  color: #FFFFFF;
}

.page-blog-kk55-latest-access-guide__security-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-kk55-latest-access-guide__security-features-list {
  list-style-type: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-blog-kk55-latest-access-guide__security-features-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #f0f0f0;
  display: flex;
  align-items: center;
}

.page-blog-kk55-latest-access-guide__security-features-list li::before {
  content: '✓';
  color: #FFFFFF;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* FAQ Section */
.page-blog-kk55-latest-access-guide__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-blog-kk55-latest-access-guide__faq-list {
  margin-top: 40px;
}

.page-blog-kk55-latest-access-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-kk55-latest-access-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-kk55-latest-access-guide__faq-question:hover {
  background-color: #e5e5e5;
}

.page-blog-kk55-latest-access-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-kk55-latest-access-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #26A9E0;
  line-height: 1;
}

.page-blog-kk55-latest-access-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.1rem;
  color: #555555;
  background-color: #ffffff;
}

/* Conclusion Section */
.page-blog-kk55-latest-access-guide__conclusion-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-blog-kk55-latest-access-guide__conclusion-section .page-blog-kk55-latest-access-guide__section-title {
  color: #FFFFFF;
}

.page-blog-kk55-latest-access-guide__conclusion-section .page-blog-kk55-latest-access-guide__text-block {
  color: #f0f0f0;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-kk55-latest-access-guide__steps-grid,
  .page-blog-kk55-latest-access-guide__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-blog-kk55-latest-access-guide__security-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* General mobile adjustments */
  .page-blog-kk55-latest-access-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-kk55-latest-access-guide__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-kk55-latest-access-guide__section-title {
    font-size: 2rem;
  }

  .page-blog-kk55-latest-access-guide__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-kk55-latest-access-guide__main-title {
    font-size: 2.2rem;
  }

  .page-blog-kk55-latest-access-guide__subtitle {
    font-size: 1rem;
  }

  /* Buttons */
  .page-blog-kk55-latest-access-guide__btn-primary,
  .page-blog-kk55-latest-access-guide__btn-secondary,
  .page-blog-kk55-latest-access-guide a[class*="button"],
  .page-blog-kk55-latest-access-guide 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;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }

  .page-blog-kk55-latest-access-guide__cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* Images */
  .page-blog-kk55-latest-access-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-kk55-latest-access-guide__step-icon,
  .page-blog-kk55-latest-access-guide__game-image,
  .page-blog-kk55-latest-access-guide__security-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Image containers */
  .page-blog-kk55-latest-access-guide__hero-image-wrapper,
  .page-blog-kk55-latest-access-guide__steps-grid,
  .page-blog-kk55-latest-access-guide__games-grid,
  .page-blog-kk55-latest-access-guide__security-section,
  .page-blog-kk55-latest-access-guide__faq-section,
  .page-blog-kk55-latest-access-guide__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* FAQ */
  .page-blog-kk55-latest-access-guide__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-blog-kk55-latest-access-guide__faq-answer {
    font-size: 1rem;
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-kk55-latest-access-guide__section-title {
    font-size: 1.8rem;
  }
  .page-blog-kk55-latest-access-guide__main-title {
    font-size: 1.8rem;
  }
  .page-blog-kk55-latest-access-guide__subtitle {
    font-size: 0.95rem;
  }
  .page-blog-kk55-latest-access-guide__btn-primary,
  .page-blog-kk55-latest-access-guide__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Dark background color contrast fix */
.page-blog-kk55-latest-access-guide__dark-bg {
  color: #ffffff;
  background-color: #26A9E0;
}

.page-blog-kk55-latest-access-guide__dark-bg .page-blog-kk55-latest-access-guide__text-block,
.page-blog-kk55-latest-access-guide__dark-bg .page-blog-kk55-latest-access-guide__step-description,
.page-blog-kk55-latest-access-guide__dark-bg .page-blog-kk55-latest-access-guide__game-description {
  color: #f0f0f0;
}

/* Light background color contrast fix */
.page-blog-kk55-latest-access-guide__light-bg {
  color: #333333;
  background-color: #FFFFFF;
}

.page-blog-kk55-latest-access-guide__light-bg .page-blog-kk55-latest-access-guide__section-title {
  color: #26A9E0;
}

.page-blog-kk55-latest-access-guide__light-bg strong {
  color: #26A9E0;
}

.page-blog-kk55-latest-access-guide__light-bg .page-blog-kk55-latest-access-guide__faq-question {
  color: #333333;
}

.page-blog-kk55-latest-access-guide__light-bg .page-blog-kk55-latest-access-guide__faq-answer {
  color: #555555;
}