.page-blog-hi823-official-website-guide {
  color: #ffffff; /* Dark body background #0a0a0a, so text must be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-hi823-official-website-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for first section */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #0a0a0a;
}

.page-blog-hi823-official-website-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
}

.page-blog-hi823-official-website-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hi823-official-website-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px; /* Space between image and content */
  padding: 0 20px;
}

.page-blog-hi823-official-website-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
}

.page-blog-hi823-official-website-guide__description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-hi823-official-website-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-hi823-official-website-guide__btn-primary,
.page-blog-hi823-official-website-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-hi823-official-website-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-hi823-official-website-guide__btn-primary:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

.page-blog-hi823-official-website-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-hi823-official-website-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-hi823-official-website-guide__btn-center {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hi823-official-website-guide__section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-blog-hi823-official-website-guide__section--intro {
  background-color: #1a1a1a;
}

.page-blog-hi823-official-website-guide__section--registration {
  background-color: #0a0a0a;
}

.page-blog-hi823-official-website-guide__section--payments {
  background-color: #1a1a1a;
}

.page-blog-hi823-official-website-guide__section--games {
  background-color: #0a0a0a;
}

.page-blog-hi823-official-website-guide__section--tips {
  background-color: #1a1a1a;
}

.page-blog-hi823-official-website-guide__section--faq {
  background-color: #0a0a0a;
}

.page-blog-hi823-official-website-guide__section--conclusion {
  background-color: #1a1a1a;
  text-align: center;
}

.page-blog-hi823-official-website-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-hi823-official-website-guide__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-hi823-official-website-guide__text-block {
  font-size: 1.05rem;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-blog-hi823-official-website-guide__subsection-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hi823-official-website-guide__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-blog-hi823-official-website-guide__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}

.page-blog-hi823-official-website-guide__feature-item:hover {
  transform: translateY(-5px);
  background: rgba(38, 169, 224, 0.15);
}

.page-blog-hi823-official-website-guide__feature-icon {
  font-size: 2.2rem;
  color: #26A9E0;
}

.page-blog-hi823-official-website-guide__feature-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-hi823-official-website-guide__feature-title a {
  color: #ffffff;
  text-decoration: none;
}

.page-blog-hi823-official-website-guide__feature-title a:hover {
  color: #26A9E0;
}

.page-blog-hi823-official-website-guide__feature-content p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
}

.page-blog-hi823-official-website-guide__image-and-text {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-hi823-official-website-guide__image-and-text--reverse {
  flex-direction: row-reverse;
}

.page-blog-hi823-official-website-guide__image-and-text .page-blog-hi823-official-website-guide__image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-hi823-official-website-guide__image-and-text .page-blog-hi823-official-website-guide__text-content {
  flex: 1.5;
}

.page-blog-hi823-official-website-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-hi823-official-website-guide__step-list,
.page-blog-hi823-official-website-guide__method-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-blog-hi823-official-website-guide__step-list li,
.page-blog-hi823-official-website-guide__method-list li {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #26A9E0;
  border-radius: 5px;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-blog-hi823-official-website-guide__step-list li strong {
  color: #26A9E0;
}

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

.page-blog-hi823-official-website-guide__game-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-hi823-official-website-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(38, 169, 224, 0.2);
}

.page-blog-hi823-official-website-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-blog-hi823-official-website-guide__game-title {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-hi823-official-website-guide__game-title a {
  color: #ffffff;
  text-decoration: none;
}

.page-blog-hi823-official-website-guide__game-title a:hover {
  color: #26A9E0;
}

.page-blog-hi823-official-website-guide__game-description {
  font-size: 0.95rem;
  color: #cccccc;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-blog-hi823-official-website-guide__btn-game {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-hi823-official-website-guide__btn-game:hover {
  background-color: #1e87b7;
}

.page-blog-hi823-official-website-guide__faq-list {
  margin-top: 40px;
}

.page-blog-hi823-official-website-guide__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hi823-official-website-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.page-blog-hi823-official-website-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hi823-official-website-guide__faq-question:hover {
  background: rgba(38, 169, 224, 0.1);
}

.page-blog-hi823-official-website-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-hi823-official-website-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-blog-hi823-official-website-guide__faq-item[open] .page-blog-hi823-official-website-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hi823-official-website-guide__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #cccccc;
  background: rgba(255, 255, 255, 0.03);
}

.page-blog-hi823-official-website-guide__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-hi823-official-website-guide__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-blog-hi823-official-website-guide__image-and-text {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-hi823-official-website-guide__image-and-text--reverse {
    flex-direction: column;
  }

  .page-blog-hi823-official-website-guide__image-and-text .page-blog-hi823-official-website-guide__image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-hi823-official-website-guide__hero-content {
    margin-top: 20px;
  }

  .page-blog-hi823-official-website-guide__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-hi823-official-website-guide__description {
    font-size: 1rem;
  }

  .page-blog-hi823-official-website-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hi823-official-website-guide__btn-primary,
  .page-blog-hi823-official-website-guide__btn-secondary {
    width: 100%;
    padding: 10px 15px;
  }

  .page-blog-hi823-official-website-guide__section {
    padding: 40px 0;
  }

  .page-blog-hi823-official-website-guide__container {
    padding: 0 15px;
  }

  .page-blog-hi823-official-website-guide__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-hi823-official-website-guide__subsection-title {
    font-size: 1.5rem;
  }

  .page-blog-hi823-official-website-guide__text-block,
  .page-blog-hi823-official-website-guide__feature-content p,
  .page-blog-hi823-official-website-guide__step-list li,
  .page-blog-hi823-official-website-guide__method-list li,
  .page-blog-hi823-official-website-guide__game-description,
  .page-blog-hi823-official-website-guide__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-hi823-official-website-guide img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-blog-hi823-official-website-guide__section,
  .page-blog-hi823-official-website-guide__card,
  .page-blog-hi823-official-website-guide__container,
  .page-blog-hi823-official-website-guide__hero-section,
  .page-blog-hi823-official-website-guide__cta-buttons,
  .page-blog-hi823-official-website-guide__button-group,
  .page-blog-hi823-official-website-guide__btn-container,
  .page-blog-hi823-official-website-guide__game-grid,
  .page-blog-hi823-official-website-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-blog-hi823-official-website-guide__feature-list {
    grid-template-columns: 1fr;
  }

  .page-blog-hi823-official-website-guide__image-and-text {
    gap: 20px;
  }

  .page-blog-hi823-official-website-guide__image-and-text .page-blog-hi823-official-website-guide__image {
    min-width: unset;
  }

  .page-blog-hi823-official-website-guide__game-card {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-hi823-official-website-guide__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-blog-hi823-official-website-guide__faq-toggle {
    font-size: 1.3rem;
  }
}

/* Ensure all content images are at least 200x200px */
.page-blog-hi823-official-website-guide img:not(.page-blog-hi823-official-website-guide__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Text color for links within content */
.page-blog-hi823-official-website-guide p a,
.page-blog-hi823-official-website-guide li a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-hi823-official-website-guide p a:hover,
.page-blog-hi823-official-website-guide li a:hover {
  text-decoration: underline;
}