.page-resources-what-is-nohu-cash {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-what-is-nohu-cash__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-what-is-nohu-cash__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-resources-what-is-nohu-cash__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-resources-what-is-nohu-cash__light-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-resources-what-is-nohu-cash__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold title */
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-what-is-nohu-cash__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* Hero Section */
.page-resources-what-is-nohu-cash__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: left;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #000; /* Ensure dark background */
  color: #ffffff;
}

.page-resources-what-is-nohu-cash__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-what-is-nohu-cash__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-resources-what-is-nohu-cash__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.page-resources-what-is-nohu-cash__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-resources-what-is-nohu-cash__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

/* Buttons */
.page-resources-what-is-nohu-cash__btn-primary,
.page-resources-what-is-nohu-cash__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-what-is-nohu-cash__btn-primary {
  background-color: #FFD700;
  color: #000000; /* Black text on gold for high contrast */
  border: 2px solid #FFD700;
}

.page-resources-what-is-nohu-cash__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-what-is-nohu-cash__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-what-is-nohu-cash__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

/* Image Text Grid */
.page-resources-what-is-nohu-cash__image-text-grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-what-is-nohu-cash__image-grid-item {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-what-is-nohu-cash__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-what-is-nohu-cash__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-resources-what-is-nohu-cash__list-item::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* 3-Column Grid */
.page-resources-what-is-nohu-cash__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-what-is-nohu-cash__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly visible on dark bg */
  color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-what-is-nohu-cash__card:hover {
  transform: translateY(-5px);
}

.page-resources-what-is-nohu-cash__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-what-is-nohu-cash__card-text {
  font-size: 1em;
  line-height: 1.7;
}

.page-resources-what-is-nohu-cash__cta-buttons--center {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Game Type Cards */
.page-resources-what-is-nohu-cash__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-what-is-nohu-cash__game-type-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-what-is-nohu-cash__game-type-card:hover {
  transform: translateY(-5px);
}

.page-resources-what-is-nohu-cash__game-type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-what-is-nohu-cash__game-type-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-what-is-nohu-cash__game-type-description {
  font-size: 0.95em;
  line-height: 1.6;
}

/* Ordered List (Strategy Section) */
.page-resources-what-is-nohu-cash__ordered-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-resources-what-is-nohu-cash__ordered-list .page-resources-what-is-nohu-cash__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 0;
  position: relative;
  counter-increment: list-counter;
  color: #f0f0f0;
}

.page-resources-what-is-nohu-cash__ordered-list .page-resources-what-is-nohu-cash__list-item::before {
  content: counter(list-counter) ". ";
  color: #FFD700;
  font-weight: bold;
  position: static;
  margin-right: 10px;
}

/* Steps Grid (Get Started) */
.page-resources-what-is-nohu-cash__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-what-is-nohu-cash__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-resources-what-is-nohu-cash__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #FFD700;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-resources-what-is-nohu-cash__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-what-is-nohu-cash__step-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-resources-what-is-nohu-cash__step-description a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-what-is-nohu-cash__step-description a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-resources-what-is-nohu-cash__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-resources-what-is-nohu-cash__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-what-is-nohu-cash__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}