.page-blog-nohu77-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background content */
  background-color: #FFFFFF; /* Assuming main content area is light */
}

.page-blog-nohu77-beginner-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  background: linear-gradient(180deg, #26A9E0, #FFFFFF);
  color: #FFFFFF;
}

.page-blog-nohu77-beginner-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px; /* Ensure image doesn't overflow */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-nohu77-beginner-guide__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect, but not on image */
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #333333;
}

.page-blog-nohu77-beginner-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #26A9E0;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-blog-nohu77-beginner-guide__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-blog-nohu77-beginner-guide__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-nohu77-beginner-guide__btn-primary:hover {
  background-color: #1a8acb;
  transform: translateY(-2px);
}

.page-blog-nohu77-beginner-guide__btn-secondary {
  display: inline-block;
  background-color: #FFFFFF;
  color: #26A9E0;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #26A9E0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog-nohu77-beginner-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-blog-nohu77-beginner-guide__section {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-blog-nohu77-beginner-guide__section:nth-of-type(odd) {
  background-color: #f8f9fa;
}

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

.page-blog-nohu77-beginner-guide__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-nohu77-beginner-guide__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-blog-nohu77-beginner-guide__features-grid,
.page-blog-nohu77-beginner-guide__game-categories,
.page-blog-nohu77-beginner-guide__promo-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-nohu77-beginner-guide__feature-item,
.page-blog-nohu77-beginner-guide__game-card,
.page-blog-nohu77-beginner-guide__promo-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-nohu77-beginner-guide__feature-item:hover,
.page-blog-nohu77-beginner-guide__game-card:hover,
.page-blog-nohu77-beginner-guide__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-nohu77-beginner-guide__feature-title,
.page-blog-nohu77-beginner-guide__game-title,
.page-blog-nohu77-beginner-guide__promo-title,
.page-blog-nohu77-beginner-guide__step-title,
.page-blog-nohu77-beginner-guide__subtitle,
.page-blog-nohu77-beginner-guide__tip-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-nohu77-beginner-guide__feature-item p,
.page-blog-nohu77-beginner-guide__game-card p,
.page-blog-nohu77-beginner-guide__promo-card p {
  color: #666666;
  margin-bottom: 20px;
}

.page-blog-nohu77-beginner-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
}

.page-blog-nohu77-beginner-guide__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-blog-nohu77-beginner-guide__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  text-align: center;
}

.page-blog-nohu77-beginner-guide__deposit-methods,
.page-blog-nohu77-beginner-guide__tips-list {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-blog-nohu77-beginner-guide__list,
.page-blog-nohu77-beginner-guide__ordered-list {
  list-style-position: inside;
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-nohu77-beginner-guide__list li,
.page-blog-nohu77-beginner-guide__ordered-list li {
  margin-bottom: 10px;
  color: #555555;
}

.page-blog-nohu77-beginner-guide__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-nohu77-beginner-guide__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.page-blog-nohu77-beginner-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-nohu77-beginner-guide__faq-question:hover {
  background-color: #e0e0e0;
}

.page-blog-nohu77-beginner-guide__faq-toggle {
  font-size: 1.5rem;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

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

.page-blog-nohu77-beginner-guide__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1rem;
  color: #666666;
  border-top: 1px solid #e0e0e0;
}

.page-blog-nohu77-beginner-guide__faq-answer p {
  margin: 0;
}

.page-blog-nohu77-beginner-guide__faq-button {
  display: block;
  margin-top: 40px;
  text-align: center;
}

.page-blog-nohu77-beginner-guide__video-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-nohu77-beginner-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000000;
  border-radius: 12px;
  margin: 40px auto 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  width: 100%; /* Desktop requirement */
  max-width: 1000px; /* Limit width on larger screens */
}

.page-blog-nohu77-beginner-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-nohu77-beginner-guide__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  .page-blog-nohu77-beginner-guide__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-nohu77-beginner-guide__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-blog-nohu77-beginner-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-nohu77-beginner-guide__intro-text {
    font-size: 1rem;
  }
  .page-blog-nohu77-beginner-guide__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-blog-nohu77-beginner-guide__section {
    padding: 40px 0;
  }
  .page-blog-nohu77-beginner-guide__section-title {
    font-size: 1.8rem;
  }
  .page-blog-nohu77-beginner-guide__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-blog-nohu77-beginner-guide__features-grid,
  .page-blog-nohu77-beginner-guide__game-categories,
  .page-blog-nohu77-beginner-guide__promo-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-nohu77-beginner-guide__feature-title,
  .page-blog-nohu77-beginner-guide__game-title,
  .page-blog-nohu77-beginner-guide__promo-title,
  .page-blog-nohu77-beginner-guide__step-title,
  .page-blog-nohu77-beginner-guide__subtitle,
  .page-blog-nohu77-beginner-guide__tip-title {
    font-size: 1.3rem;
  }
  .page-blog-nohu77-beginner-guide__step-item,
  .page-blog-nohu77-beginner-guide__deposit-methods,
  .page-blog-nohu77-beginner-guide__tips-list {
    padding: 20px;
  }
  .page-blog-nohu77-beginner-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-nohu77-beginner-guide__faq-answer {
    padding: 10px 20px 20px;
  }
  .page-blog-nohu77-beginner-guide__faq-toggle {
    font-size: 1.2rem;
  }
  
  /* Mobile responsive images */
  .page-blog-nohu77-beginner-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-nohu77-beginner-guide__section,
  .page-blog-nohu77-beginner-guide__card,
  .page-blog-nohu77-beginner-guide__container,
  .page-blog-nohu77-beginner-guide__hero-section,
  .page-blog-nohu77-beginner-guide__video-section,
  .page-blog-nohu77-beginner-guide__video-container,
  .page-blog-nohu77-beginner-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-nohu77-beginner-guide__video-section {
    padding-top: 10px !important;
  }
  
  /* Mobile responsive videos */
  .page-blog-nohu77-beginner-guide video,
  .page-blog-nohu77-beginner-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive buttons */
  .page-blog-nohu77-beginner-guide__cta-button,
  .page-blog-nohu77-beginner-guide__btn-primary,
  .page-blog-nohu77-beginner-guide__btn-secondary,
  .page-blog-nohu77-beginner-guide a[class*="button"],
  .page-blog-nohu77-beginner-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;
    text-align: center;
  }
  .page-blog-nohu77-beginner-guide__cta-buttons,
  .page-blog-nohu77-beginner-guide__button-group,
  .page-blog-nohu77-beginner-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-blog-nohu77-beginner-guide__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-blog-nohu77-beginner-guide__section-title {
    font-size: 1.6rem;
  }
  .page-blog-nohu77-beginner-guide__hero-content {
    margin-top: -40px;
  }
}

/* Ensure contrast for specific elements on potential brand color backgrounds */
.page-blog-nohu77-beginner-guide__dark-section {
  background: #26A9E0;
  color: #ffffff; /* Forced white text */
}

.page-blog-nohu77-beginner-guide__btn-primary {
  background: #26A9E0;
  color: #ffffff; /* Buttons always white text on brand color */
}

.page-blog-nohu77-beginner-guide__btn-secondary {
  background: #ffffff;
  color: #26A9E0; /* Buttons always brand color text on white */
}

.page-blog-nohu77-beginner-guide__hero-content {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333333;
}

.page-blog-nohu77-beginner-guide__hero-section {
  background: linear-gradient(180deg, #26A9E0, #FFFFFF);
}

.page-blog-nohu77-beginner-guide__faq-question {
  background-color: #f5f5f5;
  color: #333333;
}

.page-blog-nohu77-beginner-guide__faq-item[open] .page-blog-nohu77-beginner-guide__faq-toggle {
  transform: rotate(45deg);
  color: #EA7C07; /* Example of accent color for toggle */
}