/* style/blog-how-to-register-nohi90.css */

/* Base styles for the page content */
.page-blog-how-to-register-nohi90 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #FFFFFF); /* Inherit from shared or default to white */
}

.page-blog-how-to-register-nohi90__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-how-to-register-nohi90__section {
  padding: 60px 0;
}

.page-blog-how-to-register-nohi90__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-blog-how-to-register-nohi90__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

/* Hero Section */
.page-blog-how-to-register-nohi90__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-how-to-register-nohi90__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-register-nohi90__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-how-to-register-nohi90__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -80px; /* Pull content up slightly over image for visual flow */
  position: relative;
  z-index: 1;
  background-color: rgba(38, 169, 224, 0.9); /* Slightly transparent background for readability */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-register-nohi90__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-blog-how-to-register-nohi90__intro-text {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: #F0F8FF;
}

.page-blog-how-to-register-nohi90__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-how-to-register-nohi90__cta-buttons--center {
  margin-top: 30px;
  text-align: center;
}

/* Buttons */
.page-blog-how-to-register-nohi90__btn-primary,
.page-blog-how-to-register-nohi90__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-how-to-register-nohi90__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-blog-how-to-register-nohi90__btn-primary:hover {
  background-color: #ff9933;
  border-color: #ff9933;
  transform: translateY(-2px);
}

.page-blog-how-to-register-nohi90__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-register-nohi90__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Section Titles and Paragraphs */
.page-blog-how-to-register-nohi90__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-how-to-register-nohi90__dark-bg .page-blog-how-to-register-nohi90__section-title,
.page-blog-how-to-register-nohi90__dark-bg .page-blog-how-to-register-nohi90__sub-title {
  color: #FFFFFF;
}

.page-blog-how-to-register-nohi90__light-bg .page-blog-how-to-register-nohi90__section-title,
.page-blog-how-to-register-nohi90__light-bg .page-blog-how-to-register-nohi90__sub-title {
  color: #26A9E0; /* Brand color for titles on light background */
}

.page-blog-how-to-register-nohi90__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-how-to-register-nohi90__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Registration Steps Grid */
.page-blog-how-to-register-nohi90__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-register-nohi90__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-blog-how-to-register-nohi90__step-card:hover {
  transform: translateY(-5px);
}

.page-blog-how-to-register-nohi90__step-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-register-nohi90__step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-blog-how-to-register-nohi90__step-description {
  font-size: 0.95em;
  color: #F0F8FF;
  flex-grow: 1;
}

.page-blog-how-to-register-nohi90__tip {
  font-style: italic;
  color: #F0F8FF;
  text-align: center;
  margin-top: 30px;
}

/* Lists */
.page-blog-how-to-register-nohi90__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-register-nohi90__ordered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 30px;
}

.page-blog-how-to-register-nohi90__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #26A9E0;
  color: #F0F8FF;
}

.page-blog-how-to-register-nohi90__light-bg .page-blog-how-to-register-nohi90__list-item {
  background-color: #F9F9F9;
  border-left-color: #26A9E0;
  color: #333333;
}

.page-blog-how-to-register-nohi90__list-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFFFFF;
}

.page-blog-how-to-register-nohi90__light-bg .page-blog-how-to-register-nohi90__list-title {
  color: #26A9E0;
}

.page-blog-how-to-register-nohi90__list-description {
  font-size: 0.95em;
  color: #F0F8FF;
}

.page-blog-how-to-register-nohi90__light-bg .page-blog-how-to-register-nohi90__list-description {
  color: #555555;
}

.page-blog-how-to-register-nohi90__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Games Grid */
.page-blog-how-to-register-nohi90__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-register-nohi90__game-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-how-to-register-nohi90__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.page-blog-how-to-register-nohi90__game-image {
  width: 100%;
  height: 180px; /* Fixed height for game images */
  object-fit: cover;
  display: block;
}

.page-blog-how-to-register-nohi90__game-title {
  font-size: 1.3em;
  font-weight: 600;
  margin: 15px 15px 10px 15px;
}

.page-blog-how-to-register-nohi90__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-how-to-register-nohi90__game-title a:hover {
  text-decoration: underline;
}

.page-blog-how-to-register-nohi90__game-description {
  font-size: 0.9em;
  color: #555555;
  padding: 0 15px 15px 15px;
  flex-grow: 1;
}

.page-blog-how-to-register-nohi90__responsible-gaming {
  font-style: italic;
  color: #555555;
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-blog-how-to-register-nohi90__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-register-nohi90__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-register-nohi90__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-blog-how-to-register-nohi90__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-blog-how-to-register-nohi90__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-how-to-register-nohi90__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #F0F8FF;
}

.page-blog-how-to-register-nohi90__faq-answer .page-blog-how-to-register-nohi90__btn-secondary {
  margin-top: 15px;
}

/* Hide default details marker */
.page-blog-how-to-register-nohi90__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-register-nohi90__faq-item summary {
  list-style: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-blog-how-to-register-nohi90__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-how-to-register-nohi90__section {
    padding: 40px 0 !important;
  }

  .page-blog-how-to-register-nohi90__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px !important;
  }

  .page-blog-how-to-register-nohi90__hero-content {
    margin-top: -60px; /* Adjust overlap for mobile */
    padding: 25px 15px;
  }

  .page-blog-how-to-register-nohi90__main-title {
    font-size: 2em; /* Ensure readability */
  }

  .page-blog-how-to-register-nohi90__intro-text {
    font-size: 1em;
  }

  .page-blog-how-to-register-nohi90__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-register-nohi90__btn-primary,
  .page-blog-how-to-register-nohi90__btn-secondary,
  .page-blog-how-to-register-nohi90 a[class*="button"],
  .page-blog-how-to-register-nohi90 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-register-nohi90 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-register-nohi90__step-card,
  .page-blog-how-to-register-nohi90__game-card {
    padding: 20px;
  }

  .page-blog-how-to-register-nohi90__step-image,
  .page-blog-how-to-register-nohi90__game-image {
    height: 150px; /* Adjust image height for mobile */
  }

  .page-blog-how-to-register-nohi90__section-title {
    font-size: 1.5em !important;
  }

  .page-blog-how-to-register-nohi90__sub-title {
    font-size: 1.3em !important;
  }

  .page-blog-how-to-register-nohi90__paragraph {
    font-size: 0.95em !important;
  }

  .page-blog-how-to-register-nohi90__faq-question {
    font-size: 1em !important;
    padding: 15px 20px !important;
  }

  .page-blog-how-to-register-nohi90__faq-answer {
    padding: 0 20px 15px 20px !important;
    font-size: 0.9em !important;
  }
}

/* Ensure content area images are not too small */
.page-blog-how-to-register-nohi90__content-area img,
.page-blog-how-to-register-nohi90__step-image,
.page-blog-how-to-register-nohi90__game-image {
  min-width: 200px;
  min-height: 200px;
}

/* Override min-height for specific images if needed for layout, but still >= 200px */
.page-blog-how-to-register-nohi90__step-image { height: 200px; }
.page-blog-how-to-register-nohi90__game-image { height: 180px; min-height: 180px; /* adjusted to be 180px but still > 200px for the general rule, if 180px is allowed by context */}
/* Re-evaluated: The rule says 'any width or height LESS than 200px is forbidden'. So 180px is forbidden. I must ensure all image heights are >= 200px */
.page-blog-how-to-register-nohi90__game-image { height: 200px; min-height: 200px; }