:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* General Page Styling */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--background-color); /* Matches custom palette background */
  line-height: 1.6;
}

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

.page-no-hu__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden; /* Prevent horizontal scroll from inner elements */
}

.page-no-hu__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main);
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--text-secondary);
}

.page-no-hu__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-secondary);
}

.page-no-hu__article-body p {
  margin-bottom: 20px;
}

.page-no-hu__article-body h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-no-hu__article-body ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-no-hu__article-body ul li {
  margin-bottom: 10px;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons adapt to container */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

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

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

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

.page-no-hu__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
}

.page-no-hu__btn-play {
  background: var(--primary-color);
  color: var(--text-main);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
}

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

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

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

/* Image styling */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default for most images */
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body has var(--header-offset) */
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  background-color: var(--background-color);
}

.page-no-hu__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height for desktop hero image */
  overflow: hidden;
}

.page-no-hu__hero-image img {
  width: 100%;
  height: auto;
  min-height: 400px; /* Ensure hero image is not too small */
  object-fit: cover;
}

.page-no-hu__hero-content {
  padding: 40px 20px 60px;
  max-width: 900px;
  z-index: 1;
}

.page-no-hu__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-no-hu__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Introduction Section */
.page-no-hu__introduction-section {
  background-color: var(--deep-green-color);
  color: var(--text-main);
}

.page-no-hu__introduction-section .page-no-hu__section-title {
  color: var(--text-main);
}

.page-no-hu__introduction-section .page-no-hu__article-body {
  color: var(--text-secondary);
}

.page-no-hu__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-no-hu__feature-item {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-5px);
}

.page-no-hu__feature-item strong {
  color: var(--gold-color);
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

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

.page-no-hu__game-card {
  background-color: var(--card-bg);
  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;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
}

.page-no-hu__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-no-hu__game-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-no-hu__game-card-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1; /* Push button to bottom */
}

/* Guide Section */
.page-no-hu__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__guide-step-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  text-align: center;
  padding: 25px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu__guide-step-item:hover {
  transform: translateY(-5px);
}

.page-no-hu__guide-step-image {
  width: 100%;
  height: 200px;
  object-fit: contain; /* Use contain to show full image without cropping for guides */
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05); /* Light background for images with transparent parts */
}

.page-no-hu__guide-step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-no-hu__guide-step-item p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tips Section */
.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
}

.page-no-hu__tips-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.page-no-hu__tips-item:hover {
  transform: translateY(-3px);
}

.page-no-hu__tips-item-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-no-hu__tips-item p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Promotions Section */
.page-no-hu__promotions-section {
  background-color: var(--deep-green-color); /* Dark section background */
  color: var(--text-main);
}

.page-no-hu__promotions-section .page-no-hu__section-title {
  color: var(--text-main);
}

.page-no-hu__promotions-section .page-no-hu__article-body {
  color: var(--text-secondary);
}

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