/* style/index-about-n-h-88-win.css */
.page-index-about-n-h-88-win {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-about-n-h-88-win__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-about-n-h-88-win__section-title {
  font-size: 2.5em;
  color: #000080; /* Deep Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-about-n-h-88-win__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold */
  border-radius: 2px;
}

.page-index-about-n-h-88-win__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-index-about-n-h-88-win__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.page-index-about-n-h-88-win__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Deep Blue for contrast */
  border: 2px solid #FFD700;
}

.page-index-about-n-h-88-win__btn--primary:hover {
  background-color: #e6c200;
  color: #00004d;
  transform: translateY(-3px);
}

.page-index-about-n-h-88-win__btn--secondary {
  background-color: #000080; /* Deep Blue */
  color: #FFD700; /* Gold for contrast */
  border: 2px solid #000080;
}

.page-index-about-n-h-88-win__btn--secondary:hover {
  background-color: #00004d;
  color: #e6c200;
  transform: translateY(-3px);
}

/* Hero Section */
.page-index-about-n-h-88-win__hero-section {
  background: linear-gradient(135deg, #000080 0%, #00004d 100%); /* Dark Blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-about-n-h-88-win__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-about-n-h-88-win__hero-section .page-index-about-n-h-88-win__container {
  position: relative;
  z-index: 1;
}

.page-index-about-n-h-88-win__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  line-height: 1.2;
}

.page-index-about-n-h-88-win__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-about-n-h-88-win__hero-image {
  max-width: 70%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: page-index-about-n-h-88-win__float 3s ease-in-out infinite;
}

@keyframes page-index-about-n-h-88-win__float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* About Intro Section */
.page-index-about-n-h-88-win__about-intro {
  padding: 80px 0;
  background-color: #fff;
}

/* Features Section */
.page-index-about-n-h-88-win__features-section {
  padding: 80px 0;
  background-color: #f0f4f8;
}

.page-index-about-n-h-88-win__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-about-n-h-88-win__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-n-h-88-win__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-about-n-h-88-win__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-about-n-h-88-win__feature-title {
  font-size: 1.8em;
  color: #000080; /* Deep Blue */
  margin-bottom: 15px;
}

.page-index-about-n-h-88-win__feature-description {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

/* How to Start Section */
.page-index-about-n-h-88-win__how-to-start {
  padding: 80px 0;
  background-color: #fff;
}

.page-index-about-n-h-88-win__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-n-h-88-win__step-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-about-n-h-88-win__step-number {
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.3); /* Transparent Gold */
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 0;
}

.page-index-about-n-h-88-win__step-item h3,
.page-index-about-n-h-88-win__step-item p,
.page-index-about-n-h-88-win__step-item .page-index-about-n-h-88-win__btn {
  position: relative;
  z-index: 1;
}

.page-index-about-n-h-88-win__step-title {
  font-size: 2em;
  color: #000080;
  margin-bottom: 15px;
  margin-top: 20px;
}

.page-index-about-n-h-88-win__step-description {
  color: #555;
  margin-bottom: 25px;
}

/* Testimonials Section */
.page-index-about-n-h-88-win__testimonials-section {
  padding: 80px 0;
  background-color: #000080; /* Deep Blue background */
  color: #fff;
}

.page-index-about-n-h-88-win__testimonials-section .page-index-about-n-h-88-win__section-title {
  color: #FFD700; /* Gold title */
}

.page-index-about-n-h-88-win__testimonials-section .page-index-about-n-h-88-win__section-title::after {
  background-color: #FFD700; /* Gold line */
}

.page-index-about-n-h-88-win__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-n-h-88-win__testimonial-item {
  background-color: #00004d; /* Slightly lighter deep blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-index-about-n-h-88-win__testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700; /* Gold border */
}

.page-index-about-n-h-88-win__testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-index-about-n-h-88-win__testimonial-author {
  font-weight: bold;
  color: #FFD700; /* Gold */
  font-size: 1.1em;
}

/* Responsible Gaming Section */
.page-index-about-n-h-88-win__responsible-gaming {
  padding: 80px 0;
  background-color: #f8f8f8;
}

/* CTA Section */
.page-index-about-n-h-88-win__cta-section {
  background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #000080; /* Deep Blue for text */
  position: relative;
  overflow: hidden;
}

.page-index-about-n-h-88-win__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns,gold_light]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-about-n-h-88-win__cta-section .page-index-about-n-h-88-win__container {
  position: relative;
  z-index: 1;
}

.page-index-about-n-h-88-win__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #000080;
}

.page-index-about-n-h-88-win__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.page-index-about-n-h-88-win__cta-buttons .page-index-about-n-h-88-win__btn {
  margin: 0 10px;
}

.page-index-about-n-h-88-win__cta-image {
  max-width: 40%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-about-n-h-88-win__hero-title {
    font-size: 2.8em;
  }
  .page-index-about-n-h-88-win__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-about-n-h-88-win__section-title {
    font-size: 2em;
  }
  .page-index-about-n-h-88-win__features-grid,
  .page-index-about-n-h-88-win__steps-grid,
  .page-index-about-n-h-88-win__testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-about-n-h-88-win__hero-image,
  .page-index-about-n-h-88-win__cta-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-index-about-n-h-88-win__hero-section,
  .page-index-about-n-h-88-win__about-intro,
  .page-index-about-n-h-88-win__features-section,
  .page-index-about-n-h-88-win__how-to-start,
  .page-index-about-n-h-88-win__testimonials-section,
  .page-index-about-n-h-88-win__responsible-gaming,
  .page-index-about-n-h-88-win__cta-section {
    padding: 60px 0;
  }
  .page-index-about-n-h-88-win__hero-title {
    font-size: 2.2em;
  }
  .page-index-about-n-h-88-win__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-about-n-h-88-win__cta-title {
    font-size: 2.5em;
  }
  .page-index-about-n-h-88-win__cta-description {
    font-size: 1.2em;
  }
  .page-index-about-n-h-88-win__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-about-n-h-88-win__cta-buttons .page-index-about-n-h-88-win__btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-index-about-n-h-88-win__hero-title {
    font-size: 1.8em;
  }
  .page-index-about-n-h-88-win__hero-subtitle {
    font-size: 1em;
  }
  .page-index-about-n-h-88-win__section-title {
    font-size: 1.8em;
  }
  .page-index-about-n-h-88-win__feature-title {
    font-size: 1.5em;
  }
  .page-index-about-n-h-88-win__step-title {
    font-size: 1.8em;
  }
  .page-index-about-n-h-88-win__cta-title {
    font-size: 2em;
  }
  .page-index-about-n-h-88-win__hero-image,
  .page-index-about-n-h-88-win__cta-image {
    max-width: 95%;
  }
}