/* style/no-hu.css */

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

/* Base Styles */
.page-no-hu {
  background-color: var(--page-no-hu-background);
  color: var(--page-no-hu-text-main);
  font-family: Arial, sans-serif;
  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-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--page-no-hu-text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--page-no-hu-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-no-hu__text-center {
  text-align: center;
}

.page-no-hu__mt-40 {
  margin-top: 40px;
}

.page-no-hu__card {
  background-color: var(--page-no-hu-card-bg);
  border: 1px solid var(--page-no-hu-border);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-no-hu-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-no-hu__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: var(--page-no-hu-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-no-hu__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

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

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

.page-no-hu__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

/* Image & Video Responsive Defaults */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-no-hu video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--page-no-hu-background);
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height on larger screens */
  overflow: hidden;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

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

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--page-no-hu-text-main);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(87, 227, 141, 0.4);
}

.page-no-hu__description-text {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--page-no-hu-text-secondary);
  margin-bottom: 30px;
}

/* Features Section */
.page-no-hu__features-section {
  padding: 80px 0;
  background-color: var(--page-no-hu-deep-green);
}

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

.page-no-hu__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-no-hu__feature-title {
  font-size: 1.6em;
  color: var(--page-no-hu-gold);
  margin-bottom: 10px;
}

.page-no-hu__feature-text {
  color: var(--page-no-hu-text-secondary);
  font-size: 0.95em;
}

/* Game Showcase Section */
.page-no-hu__game-showcase {
  padding: 80px 0;
  background-color: var(--page-no-hu-background);
}

.page-no-hu__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-no-hu__game-card {
  padding: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-no-hu__game-image {
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-no-hu__game-title {
  font-size: 1.4em;
  color: var(--page-no-hu-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-no-hu__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-no-hu__game-title a:hover {
  text-decoration: underline;
}

.page-no-hu__game-description {
  color: var(--page-no-hu-text-secondary);
  font-size: 0.9em;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Promotions Section */
.page-no-hu__promotions-section {
  padding: 80px 0;
  background-color: var(--page-no-hu-deep-green);
}

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

.page-no-hu__promotion-card {
  padding: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-no-hu__promotion-image {
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-no-hu__promotion-title {
  font-size: 1.4em;
  color: var(--page-no-hu-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-no-hu__promotion-text {
  color: var(--page-no-hu-text-secondary);
  font-size: 0.9em;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: var(--page-no-hu-background);
}

.page-no-hu__guide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-no-hu__guide-steps {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-no-hu__step-item {
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-no-hu__step-number {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--page-no-hu-glow);
  margin-bottom: 10px;
  line-height: 1;
}

.page-no-hu__step-title {
  font-size: 1.3em;
  color: var(--page-no-hu-gold);
  margin-bottom: 8px;
}

.page-no-hu__step-text {
  color: var(--page-no-hu-text-secondary);
  font-size: 0.9em;
}

.page-no-hu__guide-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-no-hu__guide-image {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Security Section */
.page-no-hu__security-section {
  padding: 80px 0;
  background-color: var(--page-no-hu-deep-green);
}

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

.page-no-hu__security-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-no-hu__security-title {
  font-size: 1.5em;
  color: var(--page-no-hu-gold);
  margin-bottom: 10px;
}

.page-no-hu__security-text {
  color: var(--page-no-hu-text-secondary);
  font-size: 0.95em;
}

.page-no-hu__security-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: var(--page-no-hu-background);
}

.page-no-hu__faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.page-no-hu__faq-item {
  text-align: left;
  padding: 0; /* Remove default padding as summary will have it */
}

.page-no-hu__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--page-no-hu-gold);
  background-color: var(--page-no-hu-deep-green);
  border-radius: 10px; /* Match card border-radius */
  border: 1px solid var(--page-no-hu-border);
  transition: background-color 0.3s ease;
}

.page-no-hu__faq-item summary:hover {
  background-color: var(--page-no-hu-deep-green);
  filter: brightness(1.2);
}

.page-no-hu__faq-item summary::-webkit-details-marker {
  display: none; /* For Chrome/Safari */
}

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  margin-left: 15px;
  color: var(--page-no-hu-glow);
}

.page-no-hu__faq-answer {
  padding: 15px 20px;
  font-size: 0.95em;
  color: var(--page-no-hu-text-secondary);
  background-color: var(--page-no-hu-card-bg);
  border: 1px solid var(--page-no-hu-border);
  border-top: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* CTA Bottom Section */
.page-no-hu__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: var(--page-no-hu-deep-green);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-no-hu__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 0 15px;
  }

  .page-no-hu__hero-section {
    padding-bottom: 40px;
  }

  .page-no-hu__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-no-hu__description-text {
    font-size: 1rem;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important; /* Remove margin-left for secondary button */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__features-section,
  .page-no-hu__game-showcase,
  .page-no-hu__promotions-section,
  .page-no-hu__guide-section,
  .page-no-hu__security-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-bottom {
    padding: 40px 0;
  }

  .page-no-hu__features-grid,
  .page-no-hu__games-grid,
  .page-no-hu__promotions-grid,
  .page-no-hu__security-grid {
    grid-template-columns: 1fr;
  }

  .page-no-hu__guide-content {
    flex-direction: column;
  }

  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-no-hu__guide-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-no-hu__section, .page-no-hu__card, .page-no-hu__container, .page-no-hu__hero-section, .page-no-hu__features-section, .page-no-hu__game-showcase, .page-no-hu__promotions-section, .page-no-hu__guide-section, .page-no-hu__security-section, .page-no-hu__faq-section, .page-no-hu__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__hero-image-wrapper {
    max-height: 300px;
  }

  .page-no-hu__game-image,
  .page-no-hu__promotion-image {
    height: 150px; /* Adjust card image height for mobile */
  }
}

@media (max-width: 480px) {
  .page-no-hu__main-title {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .page-no-hu__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-no-hu__hero-image-wrapper {
    max-height: 250px;
  }
}