/* style/game-intro-no-hu.css */
.page-game-intro-no-hu {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for readability */
  background-color: #1a1a1a; /* Dark background to highlight gold/red */
  line-height: 1.6;
}

.page-game-intro-no-hu__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-game-intro-no-hu__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.page-game-intro-no-hu__hero-content {
  z-index: 10;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
  max-width: 900px;
}

.page-game-intro-no-hu__main-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for contrast */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-intro-no-hu__subtitle {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-intro-no-hu__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-intro-no-hu__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-intro-no-hu__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
}

.page-game-intro-no-hu__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-intro-no-hu__btn--secondary {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-game-intro-no-hu__btn--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-3px);
}

.page-game-intro-no-hu__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-game-intro-no-hu__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
}

.page-game-intro-no-hu__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
}

/* General Section Styling */
.page-game-intro-no-hu__section {
  padding: 60px 0;
  background-color: #2a2a2a;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-game-intro-no-hu__section:nth-of-type(even) {
  background-color: #1f1f1f;
}

.page-game-intro-no-hu__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-game-intro-no-hu__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-game-intro-no-hu p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-game-intro-no-hu ul, .page-game-intro-no-hu ol {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-game-intro-no-hu li {
  margin-bottom: 8px;
}

.page-game-intro-no-hu strong {
  color: #FFD700;
}

.page-game-intro-no-hu__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-game-intro-no-hu__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-game-intro-no-hu__image--left {
  float: left;
  margin-right: 30px;
  max-width: 40%;
}

.page-game-intro-no-hu__image--right {
  float: right;
  margin-left: 30px;
  max-width: 40%;
}

.page-game-intro-no-hu__section::after {
  content: '';
  display: table;
  clear: both;
}

/* FAQ Section */
.page-game-intro-no-hu__faq-item {
  background-color: #333333;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
}

.page-game-intro-no-hu__faq-item .page-game-intro-no-hu__sub-section-title {
  color: #FFD700;
  font-size: 1.5em;
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-intro-no-hu__faq-item p {
  color: #E0E0E0;
}

/* Call to Action Section */
.page-game-intro-no-hu__call-to-action {
  background: linear-gradient(90deg, #8B0000, #FFD700);
  text-align: center;
  padding: 80px 0;
  margin-top: 20px;
}

.page-game-intro-no-hu__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-intro-no-hu__call-to-action .page-game-intro-no-hu__section-title {
  color: #FFFFFF; /* White for contrast */
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-game-intro-no-hu__call-to-action p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-intro-no-hu__main-title {
    font-size: 2.8em;
  }
  .page-game-intro-no-hu__subtitle {
    font-size: 1.1em;
  }
  .page-game-intro-no-hu__section-title {
    font-size: 2em;
  }
  .page-game-intro-no-hu__sub-section-title {
    font-size: 1.6em;
  }
  .page-game-intro-no-hu__image--left, .page-game-intro-no-hu__image--right {
    float: none;
    margin: 20px auto;
    max-width: 80%;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-game-intro-no-hu__hero-section {
    padding: 60px 0;
  }
  .page-game-intro-no-hu__main-title {
    font-size: 2.2em;
  }
  .page-game-intro-no-hu__subtitle {
    font-size: 1em;
  }
  .page-game-intro-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-intro-no-hu__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-game-intro-no-hu__section {
    padding: 40px 0;
  }
  .page-game-intro-no-hu__section-title {
    font-size: 1.8em;
  }
  .page-game-intro-no-hu__sub-section-title {
    font-size: 1.4em;
  }
  .page-game-intro-no-hu__call-to-action {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-game-intro-no-hu__main-title {
    font-size: 1.8em;
  }
  .page-game-intro-no-hu__subtitle {
    font-size: 0.9em;
  }
  .page-game-intro-no-hu__btn {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-game-intro-no-hu__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-game-intro-no-hu__section-title {
    font-size: 1.5em;
  }
  .page-game-intro-no-hu__sub-section-title {
    font-size: 1.2em;
  }
}