.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F3F8FF);
  background-color: var(--deep-navy, #08162B);
}

.page-no-hu__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-no-hu__center-content {
  text-align: center;
}

/* Text colors */
.page-no-hu__text-main {
  color: var(--text-main, #F3F8FF);
}

.page-no-hu__text-secondary {
  color: var(--text-secondary, #AFC4E8);
}

.page-no-hu__highlight {
  color: var(--gold, #F2C14E);
  font-weight: bold;
}

/* Section Titles */
.page-no-hu__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main, #F3F8FF);
  line-height: 1.3;
}

.page-no-hu__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-secondary, #AFC4E8);
  line-height: 1.6;
}

/* Buttons */
.page-no-hu__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap; /* Prevent text wrapping on desktop */
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff; /* Always white for primary buttons */
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
  background: var(--card-bg, #10233F);
  color: var(--text-main, #F3F8FF);
  border: 2px solid var(--glow, #4FA8FF);
  margin-left: 20px;
}

.page-no-hu__btn-secondary:hover {
  background: var(--glow, #4FA8FF);
  color: var(--deep-navy, #08162B);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* General Image Styling */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 80px;
  text-align: center;
  background-color: var(--deep-navy, #08162B);
  overflow: hidden;
}

.page-no-hu__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-no-hu__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px; /* Adjust as needed */
}

.page-no-hu__hero-title {
  font-size: clamp(36px, 5vw, 60px); /* Use clamp for H1 */
  font-weight: 900;
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-no-hu__hero-description {
  font-size: 20px;
  color: var(--text-secondary, #AFC4E8);
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: var(--light-bg, #ffffff);
  color: #333333; /* Dark text for light background */
}

.page-no-hu__intro-section .page-no-hu__section-title {
  color: #333333;
}

.page-no-hu__intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-no-hu__intro-section .page-no-hu__text-block p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-no-hu__intro-section .page-no-hu__highlight {
  color: var(--main-color, #113B7A);
}

.page-no-hu__image-responsive {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.page-no-hu__benefits-section {
  padding: 80px 0;
  background-color: var(--deep-navy, #08162B);
}

.page-no-hu__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-no-hu__benefit-card {
  background: var(--card-bg, #10233F);
  border: 1px solid var(--border, #244D84);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-secondary, #AFC4E8);
}

.page-no-hu__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-no-hu__benefit-card .page-no-hu__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main, #F3F8FF);
}

.page-no-hu__benefit-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary, #AFC4E8);
}

/* Popular Games Section */
.page-no-hu__popular-games-section {
  padding: 80px 0;
  background-color: var(--light-bg, #ffffff);
  color: #333333;
}

.page-no-hu__popular-games-section .page-no-hu__section-title,
.page-no-hu__popular-games-section .page-no-hu__section-description {
  color: #333333;
}

.page-no-hu__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-no-hu__game-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  text-align: center;
}

.page-no-hu__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-no-hu__game-card .page-no-hu__game-title {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 15px 10px;
  color: var(--main-color, #113B7A);
}

.page-no-hu__game-card .page-no-hu__game-description {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 15px 20px;
  color: #555555;
}

.page-no-hu__game-card .page-no-hu__game-button {
  margin-bottom: 20px;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
}

/* Strategy Section */
.page-no-hu__strategy-section {
  padding: 80px 0;
  background-color: var(--deep-navy, #08162B);
}

.page-no-hu__strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-no-hu__strategy-section .page-no-hu__text-block {
  color: var(--text-secondary, #AFC4E8);
}

.page-no-hu__strategy-section .page-no-hu__text-block p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-no-hu__strategy-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold, #F2C14E);
  margin-top: 30px;
  margin-bottom: 10px;
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: var(--light-bg, #ffffff);
  color: #333333;
}

.page-no-hu__faq-section .page-no-hu__section-title {
  color: #333333;
}

.page-no-hu__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}

details.page-no-hu__faq-item summary.page-no-hu__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-no-hu__faq-item summary.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question:hover {
  background: #f5f5f5;
}

.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

.page-no-hu__faq-answer p {
  font-size: 16px;
  line-height: 1.6;
}

/* CTA Section */
.page-no-hu__cta-section {
  padding: 80px 0;
  background-color: var(--deep-navy, #08162B);
  text-align: center;
}

.page-no-hu__cta-section .page-no-hu__cta-buttons {
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__section-title {
    font-size: 32px;
  }
  .page-no-hu__hero-title {
    font-size: clamp(32px, 4.5vw, 55px);
  }
  .page-no-hu__hero-description {
    font-size: 18px;
  }
  .page-no-hu__intro-section .page-no-hu__text-block p,
  .page-no-hu__strategy-section .page-no-hu__text-block p,
  .page-no-hu__faq-answer p {
    font-size: 16px;
  }
  .page-no-hu__benefit-card .page-no-hu__card-title {
    font-size: 22px;
  }
  .page-no-hu__game-card .page-no-hu__game-title {
    font-size: 20px;
  }
}

/* Mobile Responsive Styles (max-width: 768px) */
@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 0 15px;
  }

  .page-no-hu__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-no-hu__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
  }
  .page-no-hu__hero-image-wrapper {
    height: 300px; /* Adjust hero image height for mobile */
  }
  .page-no-hu__hero-image {
    object-fit: contain !important; /* Prevent cropping */
    aspect-ratio: unset !important; /* Remove aspect ratio constraint */
    width: 100% !important;
    height: 100% !important;
  }
  .page-no-hu__hero-content {
    padding-top: 40px;
  }
  .page-no-hu__hero-title {
    font-size: clamp(28px, 8vw, 45px);
    margin-bottom: 15px;
  }
  .page-no-hu__hero-description {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 25px;
  }
  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  /* Buttons - Mobile Adaptation */
  .page-no-hu__cta-button,
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu a[class*="button"],
  .page-no-hu 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: 12px 15px !important;
    font-size: 16px !important;
    margin-left: 0 !important; /* Remove margin for secondary button */
  }
  .page-no-hu__hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  /* General Images and Containers - Mobile Adaptation */
  .page-no-hu img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__image-block,
  .page-no-hu__image-responsive {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__intro-section,
  .page-no-hu__benefits-section,
  .page-no-hu__popular-games-section,
  .page-no-hu__strategy-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-section {
    padding: 40px 0;
  }

  /* Intro Section */
  .page-no-hu__intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-no-hu__intro-content .page-no-hu__image-block {
    order: -1; /* Image above text on mobile */
  }

  /* Benefits Section */
  .page-no-hu__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__benefit-card {
    padding: 25px;
  }
  .page-no-hu__benefit-card .page-no-hu__card-title {
    font-size: 20px;
  }

  /* Popular Games Section */
  .page-no-hu__games-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-no-hu__game-card .page-no-hu__game-title {
    font-size: 18px;
  }
  .page-no-hu__game-card .page-no-hu__game-description {
    font-size: 14px;
  }
  .page-no-hu__game-image {
    height: 180px;
  }

  /* Strategy Section */
  .page-no-hu__strategy-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-no-hu__strategy-content .page-no-hu__image-block {
    order: -1; /* Image above text on mobile */
  }
  .page-no-hu__strategy-subtitle {
    font-size: 20px;
  }

  /* FAQ Section */
  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px;
  }
  .page-no-hu__faq-qtext {
    font-size: 15px;
  }
  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 15px 15px;
  }
  .page-no-hu__faq-answer p {
    font-size: 15px;
  }
}

/* Specific media query for hero image object-fit: contain */
@media (max-width: 849px) {
  .page-no-hu__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}