.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.page-n-h__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-n-h__section {
  padding: 60px 0;
  text-align: center;
}

.page-n-h__section:nth-of-type(even) {
  background-color: #f2f2f2;
}

.page-n-h__section-title {
  font-size: 2.8em;
  color: #A80000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-n-h__section-subtitle {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-n-h__button--primary {
  background-color: #A80000;
  color: #fff;
}

.page-n-h__button--primary:hover {
  background-color: #8a0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h__button--secondary {
  background-color: transparent;
  color: #A80000;
  border: 2px solid #A80000;
  margin-left: 20px;
}

.page-n-h__button--secondary:hover {
  background-color: #A80000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-n-h__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-n-h__button--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-n-h__hero {
  background: linear-gradient(135deg, #A80000 0%, #FFD700 100%);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.page-n-h__hero-content {
  max-width: 600px;
  padding-left: 20px;
}

.page-n-h__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-n-h__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 550px;
}

.page-n-h__hero-actions .page-n-h__button--secondary {
  border-color: #fff;
  color: #fff;
}

.page-n-h__hero-actions .page-n-h__button--secondary:hover {
  background-color: #fff;
  color: #A80000;
}

.page-n-h__hero-image-container {
  flex-shrink: 0;
}

.page-n-h__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Section */
.page-n-h__about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  padding-top: 30px;
}

.page-n-h__about-text {
  flex: 1;
}

.page-n-h__about-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-n-h__about-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-n-h__about-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-n-h__about-text ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #A80000;
  font-weight: bold;
}

.page-n-h__about-image {
  flex: 1;
  min-width: 300px;
}

.page-n-h__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Games */
.page-n-h__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h__game-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-n-h__game-title {
  font-size: 1.8em;
  color: #A80000;
  margin-bottom: 10px;
}

.page-n-h__game-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  min-height: 70px;
}

.page-n-h__more-games-text {
  margin-top: 50px;
  font-size: 1.1em;
  color: #555;
}

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

.page-n-h__tip-card {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.page-n-h__tip-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-n-h__tip-title {
  font-size: 1.5em;
  color: #A80000;
  margin-bottom: 10px;
}

.page-n-h__tip-description {
  font-size: 1em;
  color: #666;
}

/* Promotions Section */
.page-n-h__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h__promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-n-h__promo-title {
  font-size: 1.8em;
  color: #A80000;
  margin-bottom: 10px;
}

.page-n-h__promo-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

/* App Download Section */
.page-n-h__app-download {
  background-color: #A80000;
  color: #fff;
}

.page-n-h__app-download .page-n-h__section-title {
  color: #FFD700;
}

.page-n-h__app-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  padding-top: 30px;
}

.page-n-h__app-text {
  flex: 1;
}

.page-n-h__app-text p {
  font-size: 1.15em;
  margin-bottom: 20px;
  color: #eee;
}

.page-n-h__app-buttons {
  margin-top: 30px;
}

.page-n-h__app-buttons .page-n-h__button {
  margin-right: 15px;
  background-color: #FFD700;
  color: #A80000;
}

.page-n-h__app-buttons .page-n-h__button:hover {
  background-color: #e6c200;
  color: #8a0000;
}

.page-n-h__app-image {
  flex: 1;
  min-width: 300px;
  text-align: right;
}

/* Call to Action */
.page-n-h__cta {
  background-color: #FFD700;
  color: #A80000;
}

.page-n-h__cta-inner {
  padding: 60px 20px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-n-h__cta-title {
  font-size: 2.5em;
  color: #A80000;
  margin-bottom: 15px;
}

.page-n-h__cta-description {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h__cta .page-n-h__button--primary {
  background-color: #A80000;
  color: #fff;
}

.page-n-h__cta .page-n-h__button--primary:hover {
  background-color: #8a0000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h__hero-title {
    font-size: 2.8em;
  }
  .page-n-h__hero-description {
    font-size: 1.1em;
  }
  .page-n-h__hero-content {
    padding-left: 0;
    text-align: center;
  }
  .page-n-h__hero-image {
    max-width: 400px;
  }
  .page-n-h__about-content, .page-n-h__app-content {
    flex-direction: column;
  }
  .page-n-h__about-image, .page-n-h__app-image {
    order: -1; /* Image on top for mobile */
    text-align: center;
  }
  .page-n-h__app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-n-h__app-buttons .page-n-h__button {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .page-n-h__section-title {
    font-size: 2.2em;
  }
  .page-n-h__hero {
    padding: 80px 20px;
  }
  .page-n-h__hero-title {
    font-size: 2.5em;
  }
  .page-n-h__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-n-h__hero-actions .page-n-h__button--secondary {
    margin-left: 0;
  }
  .page-n-h__game-description {
    min-height: auto;
  }
  .page-n-h__cta-title {
    font-size: 2em;
  }
  .page-n-h__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-n-h__section-title {
    font-size: 1.8em;
  }
  .page-n-h__hero-title {
    font-size: 2em;
  }
  .page-n-h__hero-image {
    max-width: 90%;
  }
  .page-n-h__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-n-h__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}