/* style/helo888-promotions.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000;
  --background-light: #f5f5f5;
  --card-background: rgba(255, 255, 255, 0.1);
}

.page-helo888-promotions {
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--background-dark);
}

.page-helo888-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-helo888-promotions__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-helo888-promotions__section-description {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-helo888-promotions a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-helo888-promotions a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Hero Section */
.page-helo888-promotions__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 20px 60px; /* Fixed nav spacing */
  box-sizing: border-box;
}

.page-helo888-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-helo888-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-helo888-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.page-helo888-promotions__main-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.page-helo888-promotions__hero-description {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-helo888-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-helo888-promotions__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-helo888-promotions__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-helo888-promotions__cta-button--secondary {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.4);
}

.page-helo888-promotions__cta-button--secondary:hover {
  background: #071a4f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.6);
}

/* Intro Section */
.page-helo888-promotions__intro-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

/* Categories Section */
.page-helo888-promotions__categories-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-helo888-promotions__promo-card {
  background: var(--card-background);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-helo888-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-helo888-promotions__promo-card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-helo888-promotions__promo-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.page-helo888-promotions__promo-card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-helo888-promotions__promo-card-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
  white-space: normal;
  word-wrap: break-word;
}

.page-helo888-promotions__promo-card-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* How to Claim Section */
.page-helo888-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-helo888-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0;
  max-width: 900px;
}

.page-helo888-promotions__steps-list li {
  background: var(--card-background);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--secondary-color);
  position: relative;
  counter-increment: step-counter;
}

.page-helo888-promotions__steps-list li::before {
  content: "Bước " counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
}

.page-helo888-promotions__step-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin-top: 10px;
  margin-bottom: 15px;
}

.page-helo888-promotions__steps-list p {
  font-size: 17px;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: left;
}

.page-helo888-promotions__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Terms Section */
.page-helo888-promotions__terms-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-helo888-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0;
  max-width: 900px;
}

.page-helo888-promotions__terms-list li {
  background: var(--card-background);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--primary-color);
  font-size: 17px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-helo888-promotions__terms-list-title {
  font-size: 18px;
  color: var(--secondary-color);
  display: inline;
}

/* Why Choose Section */
.page-helo888-promotions__why-choose-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-helo888-promotions__why-choose-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-helo888-promotions__why-choose-text {
  flex: 1;
}

.page-helo888-promotions__why-choose-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-helo888-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-helo888-promotions__benefits-list li {
  background: rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.5;
}

.page-helo888-promotions__benefits-list strong {
  color: var(--secondary-color);
}

.page-helo888-promotions__why-choose-image-wrapper {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--primary-color);
}

.page-helo888-promotions__why-choose-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Final CTA Section */
.page-helo888-promotions__final-cta-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-helo888-promotions__final-cta-section .page-helo888-promotions__container {
  background: var(--primary-color);
  border-radius: 15px;
  text-align: center;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--secondary-color);
}

.page-helo888-promotions__final-cta-section .page-helo888-promotions__section-title {
  color: var(--secondary-color);
}

.page-helo888-promotions__final-cta-section .page-helo888-promotions__section-description {
  color: var(--text-light);
  margin-bottom: 40px;
}

.page-helo888-promotions__cta-button--large {
  padding: 18px 50px;
  font-size: 22px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-helo888-promotions__hero-content {
    padding: 30px;
  }

  .page-helo888-promotions__main-title {
    font-size: 48px;
  }

  .page-helo888-promotions__hero-description {
    font-size: 18px;
  }

  .page-helo888-promotions__section-title {
    font-size: 32px;
  }

  .page-helo888-promotions__promo-card-title {
    font-size: 22px;
  }

  .page-helo888-promotions__why-choose-content {
    flex-direction: column;
  }

  .page-helo888-promotions__why-choose-image-wrapper {
    min-width: unset;
    width: 100%;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-helo888-promotions__hero-section {
    padding-top: 100px !important; /* Mobile fixed nav spacing */
    padding-bottom: 40px;
    min-height: 500px;
  }

  .page-helo888-promotions__hero-content {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-helo888-promotions__main-title {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .page-helo888-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-helo888-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-helo888-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 18px;
    padding: 14px 20px;
  }

  .page-helo888-promotions__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-helo888-promotions__section-description {
    font-size: 16px;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .page-helo888-promotions__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-helo888-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-helo888-promotions__promo-card {
    padding: 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-helo888-promotions__promo-card-image {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-helo888-promotions__promo-card-title {
    font-size: 20px;
  }

  .page-helo888-promotions__promo-card-description {
    font-size: 15px;
  }

  .page-helo888-promotions__promo-card-button {
    font-size: 15px;
    padding: 10px 20px;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-helo888-promotions__steps-list {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-helo888-promotions__steps-list li {
    padding: 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-helo888-promotions__step-title {
    font-size: 20px;
  }

  .page-helo888-promotions__steps-list p {
    font-size: 16px;
  }

  .page-helo888-promotions__terms-list {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-helo888-promotions__terms-list li {
    font-size: 16px;
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-helo888-promotions__terms-list-title {
    font-size: 17px;
  }

  .page-helo888-promotions__why-choose-content {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .page-helo888-promotions__why-choose-text p,
  .page-helo888-promotions__benefits-list li {
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-helo888-promotions__why-choose-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  
  .page-helo888-promotions__why-choose-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-helo888-promotions__final-cta-section .page-helo888-promotions__container {
    padding: 40px 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-helo888-promotions__cta-button--large {
    font-size: 18px;
    padding: 15px 30px;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* General image responsive */
  .page-helo888-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-helo888-promotions__hero-section,
  .page-helo888-promotions__intro-section,
  .page-helo888-promotions__categories-section,
  .page-helo888-promotions__how-to-claim-section,
  .page-helo888-promotions__terms-section,
  .page-helo888-promotions__why-choose-section,
  .page-helo888-promotions__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}