/* style/no-hu.css */

:root {
  --primary-color: #E53935;
  --secondary-color: #FF5A4F;
  --text-main-color: #333333;
  --card-bg-color: #FFFFFF;
  --background-color: #F5F7FA;
  --border-color: #E0E0E0;
}

.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color);
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Assuming shared.css handles body padding-top */
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #ffffff; /* White text on dark gradient background */
}

.page-no-hu__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 24px;
}

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-no-hu__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
  color: #ffffff;
}

.page-no-hu__hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  color: #f0f0f0;
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-no-hu__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Common Content Area */
.page-no-hu__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

.page-no-hu__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 24px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
}

.page-no-hu__section-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

.page-no-hu__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 32px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card Styles */
.page-no-hu__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color);
}

.page-no-hu__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-no-hu__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.page-no-hu__card-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* Buttons */
.page-no-hu__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-secondary {
  background-color: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-no-hu__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

/* Benefits Section */
.page-no-hu__benefits-section {
  padding: 60px 0;
}

.page-no-hu__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* Games Section */
.page-no-hu__games-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-no-hu__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.page-no-hu__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-no-hu__game-trial-frame {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 8px;
  margin-bottom: 16px;
}

.page-no-hu__game-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-color);
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 60px 0;
}

.page-no-hu__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
  max-width: 800px;
  margin: 32px auto;
}

.page-no-hu__guide-item {
  counter-increment: guide-counter;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  color: var(--text-main-color);
}

.page-no-hu__guide-item::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

/* Tips Section */
.page-no-hu__tips-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 32px auto;
}

.page-no-hu__tips-item {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--text-main-color);
}

.page-no-hu__tips-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Promo Section */
.page-no-hu__promo-section {
  padding: 60px 0;
  text-align: center;
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

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

.page-no-hu__faq-item {
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-no-hu__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--primary-color);
}

.page-no-hu__faq-item summary::-webkit-details-marker,
.page-no-hu__faq-item summary::marker {
  display: none;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-no-hu__faq-qtext {
  flex-grow: 1;
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  margin-left: 16px;
  color: var(--primary-color);
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  content: '−';
}

.page-no-hu__faq-answer {
  padding: 0 24px 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-content {
    text-align: center;
    flex: 1 1 100%;
  }

  .page-no-hu__hero-cta-buttons {
    justify-content: center;
  }

  .page-no-hu__hero-image {
    flex: 1 1 100%;
    margin-top: 32px;
  }

  .page-no-hu__benefits-grid,
  .page-no-hu__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-no-hu__hero-container {
    padding: 30px 15px;
    gap: 20px;
  }

  .page-no-hu__hero-title {
    font-size: 2rem !important;
    margin-bottom: 12px;
  }

  .page-no-hu__hero-description {
    font-size: 1rem !important;
    margin-bottom: 24px;
  }

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* General Content Area */
  .page-no-hu__content-area {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px;
  }

  .page-no-hu__section-description {
    font-size: 0.95rem !important;
    margin-bottom: 24px;
  }

  /* Images */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Card Styles */
  .page-no-hu__card {
    padding: 20px !important;
  }

  .page-no-hu__card-title {
    font-size: 1.3rem !important;
  }

  .page-no-hu__card-text {
    font-size: 0.95rem !important;
  }

  /* Buttons */
  .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-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-no-hu__hero-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 !important;
    padding-right: 0 !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Benefits Grid */
  .page-no-hu__benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Games Grid */
  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-no-hu__game-title {
    font-size: 1.2rem !important;
  }

  /* Guide List */
  .page-no-hu__guide-item {
    font-size: 1rem !important;
    padding-left: 35px;
  }

  .page-no-hu__guide-item::before {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  /* Tips List */
  .page-no-hu__tips-item {
    font-size: 1rem !important;
    padding-left: 20px;
  }

  /* FAQ Section */
  .page-no-hu__faq-item summary {
    padding: 15px 20px !important;
    font-size: 1rem !important;
  }

  .page-no-hu__faq-toggle {
    font-size: 1.3rem !important;
  }

  .page-no-hu__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 0.95rem !important;
  }
}