:root {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  --card-bg-color: #2A1212;
  --background-color: #140C0C;
  --text-main-color: #FFF1E8;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red-color: #7E0D0D;
}

.page-no-hu {
  background: var(--background-color);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}

.page-no-hu *,
.page-no-hu *::before,
.page-no-hu *::after {
  box-sizing: inherit;
}

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

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

.page-no-hu__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play,
.page-no-hu__btn-promo,
.page-no-hu__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-no-hu__btn-secondary {
  background: var(--card-bg-color);
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-no-hu__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--card-bg-color);
}

/* General Section Styling */
.page-no-hu__intro-section,
.page-no-hu__why-choose-section,
.page-no-hu__popular-games-section,
.page-no-hu__how-to-play-section,
.page-no-hu__tips-section,
.page-no-hu__promotions-section,
.page-no-hu__mobile-app-section,
.page-no-hu__faq-section,
.page-no-hu__conclusion-section {
  padding: 60px 0;
}

.page-no-hu__dark-section {
  background: var(--background-color);
  color: var(--text-main-color);
}

.page-no-hu__light-bg {
  background: var(--card-bg-color);
  color: var(--text-main-color);
}

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

.page-no-hu__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

/* Why Choose Section */
.page-no-hu__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-no-hu__feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-no-hu__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.page-no-hu__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-no-hu__feature-description {
  font-size: 1rem;
  color: var(--text-main-color);
}

/* Popular Games Section */
.page-no-hu__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-no-hu__game-card {
  background: var(--card-bg-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  text-align: center;
  padding-bottom: 20px;
}

.page-no-hu__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-no-hu__game-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--gold-color);
}

.page-no-hu__game-provider {
  font-size: 0.95rem;
  color: rgba(255, 241, 232, 0.7);
  margin-bottom: 15px;
}