.page-blog-f18678-link-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #F4F7FB; /* Page background color */
}

.page-blog-f18678-link-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top margin, body handles header offset */
  background: #F4F7FB;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-f18678-link-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-f18678-link-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-f18678-link-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-f18678-link-guide__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Clamp for responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f18678-link-guide__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-blog-f18678-link-guide__section {
  padding: 60px 20px;
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-f18678-link-guide__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #2F6BFF;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-f18678-link-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #6FA3FF;
  border-radius: 2px;
}

.page-blog-f18678-link-guide__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2F6BFF;
}

.page-blog-f18678-link-guide__introduction p,
.page-blog-f18678-link-guide__guide-steps p,
.page-blog-f18678-link-guide__payment-guide p,
.page-blog-f18678-link-guide__games-showcase p,
.page-blog-f18678-link-guide__app-download p,
.page-blog-f18678-link-guide__promotions p,
.page-blog-f18678-link-guide__support-faq p,
.page-blog-f18678-link-guide__tips-section p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-f18678-link-guide__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-blog-f18678-link-guide__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-f18678-link-guide__feature-item img {
  max-width: 100%;
  height: auto;
  width: 200px; /* Specific width for feature icons */
  height: 200px;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-blog-f18678-link-guide__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-blog-f18678-link-guide__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-f18678-link-guide__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid #D6E2FF;
}

.page-blog-f18678-link-guide__step-item:nth-child(even) {
  background: #F8F9FA;
}

.page-blog-f18678-link-guide__step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-blog-f18678-link-guide__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f18678-link-guide__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-blog-f18678-link-guide__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-f18678-link-guide__payment-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF;
}

.page-blog-f18678-link-guide__payment-card img {
  max-width: 100%;
  height: auto;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

.page-blog-f18678-link-guide__payment-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2F6BFF;
  text-align: center;
}

.page-blog-f18678-link-guide__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-blog-f18678-link-guide__ordered-list li {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__games-showcase {
  background-color: #ffffff;
}

.page-blog-f18678-link-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-f18678-link-guide__game-card {
  background: #F4F7FB;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-blog-f18678-link-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-f18678-link-guide__game-card img {
  max-width: 100%;
  height: auto;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-f18678-link-guide__game-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-blog-f18678-link-guide__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f18678-link-guide__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-f18678-link-guide__app-download {
  text-align: center;
}

.page-blog-f18678-link-guide__download-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-blog-f18678-link-guide__app-image {
  max-width: 100%;
  height: auto;
  width: 800px;
  height: 450px;
  object-fit: contain;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-blog-f18678-link-guide__promotions-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 30px;
}

.page-blog-f18678-link-guide__promotions-list li {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-blog-f18678-link-guide__contact-list li {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__faq-list {
  margin-top: 30px;
}

details.page-blog-f18678-link-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #ffffff;
}

details.page-blog-f18678-link-guide__faq-item summary.page-blog-f18678-link-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-blog-f18678-link-guide__faq-item summary.page-blog-f18678-link-guide__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-f18678-link-guide__faq-item summary.page-blog-f18678-link-guide__faq-question:hover {
  background: #F8F9FA;
}

.page-blog-f18678-link-guide__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-f18678-link-guide__faq-item .page-blog-f18678-link-guide__faq-answer {
  padding: 0 20px 20px;
  background: #F9F9F9;
  border-radius: 0 0 5px 5px;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__tips-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 30px;
}

.page-blog-f18678-link-guide__tips-list li {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-blog-f18678-link-guide__tips-section img {
  max-width: 100%;
  height: auto;
  width: 800px;
  height: 600px;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-f18678-link-guide__section-title {
    font-size: 2em;
  }
  .page-blog-f18678-link-guide__payment-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-f18678-link-guide__games-showcase .page-blog-f18678-link-guide__game-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-blog-f18678-link-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-f18678-link-guide__hero-image img {
    border-radius: 4px;
  }
  .page-blog-f18678-link-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
  }
  .page-blog-f18678-link-guide__description {
    font-size: 1em;
  }
  .page-blog-f18678-link-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-f18678-link-guide__section {
    padding: 40px 15px;
  }
  .page-blog-f18678-link-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-f18678-link-guide__sub-title {
    font-size: 1.5em;
  }
  .page-blog-f18678-link-guide__features,
  .page-blog-f18678-link-guide__step-list,
  .page-blog-f18678-link-guide__game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-f18678-link-guide__feature-item img {
    
    
  }
  .page-blog-f18678-link-guide__payment-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-f18678-link-guide__payment-card img {
    height: 250px;
  }
  .page-blog-f18678-link-guide__game-card img {
    
  }
  .page-blog-f18678-link-guide__download-options {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-f18678-link-guide__btn-primary,
  .page-blog-f18678-link-guide__btn-secondary {
    width: 100% !important;
    max-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-f18678-link-guide__app-image,
  .page-blog-f18678-link-guide__tips-section img {
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  details.page-blog-f18678-link-guide__faq-item summary.page-blog-f18678-link-guide__faq-question { padding: 15px; }
  .page-blog-f18678-link-guide__faq-qtext { font-size: 15px; }
  details.page-blog-f18678-link-guide__faq-item .page-blog-f18678-link-guide__faq-answer { padding: 0 15px 15px; }

  .page-blog-f18678-link-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-f18678-link-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-blog-f18678-link-guide__features,
  .page-blog-f18678-link-guide__step-list,
  .page-blog-f18678-link-guide__payment-grid,
  .page-blog-f18678-link-guide__game-categories,
  .page-blog-f18678-link-guide__download-options,
  .page-blog-f18678-link-guide__promotions-list,
  .page-blog-f18678-link-guide__contact-list,
  .page-blog-f18678-link-guide__faq-list,
  .page-blog-f18678-link-guide__tips-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-f18678-link-guide__section-title {
    font-size: 1.6em;
  }
  .page-blog-f18678-link-guide__payment-card img {
    height: 200px;
  }
  .page-blog-f18678-link-guide__game-card img {
    
  }
}