
    /* General styles for the page */
.page-888clup {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a1a;
  line-height: 1.6;
  padding-top: 10px; /* Decorative padding, actual header offset is handled by body padding-top */
}

/* Section styling */
.page-888clup__section-title {
  font-size: 2.5em;
  color: #ffcc00; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.page-888clup__hero-section {
  background: linear-gradient(135deg, #2a0000, #4d0000); /* Dark red gradient */
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #ffcc00;
}

.page-888clup__hero-content {
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-888clup__hero-title {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 900;
}

.page-888clup__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-888clup__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-888clup__button--primary {
  background-color: #ffcc00; /* Gold */
  color: #1a1a1a;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-888clup__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

.page-888clup__button--secondary {
  background-color: #333333;
  color: #ffcc00; /* Gold */
  border: 2px solid #ffcc00;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-888clup__button--secondary:hover {
  background-color: #444444;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-888clup__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-888clup__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-888clup__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto;
}

/* About Section */
.page-888clup__about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-888clup__about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-888clup__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-888clup__about-text {
  font-size: 1.1em;
  color: #cccccc;
  max-width: 800px;
  text-align: justify;
}

/* Products Section */
.page-888clup__products-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-888clup__product-card {
  background-color: #222222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-888clup__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-888clup__product-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-bottom: 3px solid #ffcc00;
  margin-bottom: 15px;
  width: 100%; /* Ensure image fills card width */
  box-sizing: border-box;
}

.page-888clup__product-title {
  font-size: 1.5em;
  color: #ffcc00;
  margin-bottom: 10px;
  font-weight: bold;
  padding: 0 15px;
}

.page-888clup__product-description {
  font-size: 0.95em;
  color: #b0b0b0;
  padding: 0 15px;
  flex-grow: 1; /* Allows description to take available space */
}

/* Promotions Section */
.page-888clup__promo-section {
  background: linear-gradient(90deg, #3a0000, #5a0000);
  padding: 60px 20px;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.page-888clup__promo-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-888clup__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 600px;
  text-align: left;
}

.page-888clup__promo-item {
  background-color: rgba(255, 204, 0, 0.1);
  border-left: 4px solid #ffcc00;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #f5f5f5;
  box-sizing: border-box; /* Required for list items */
}

/* Features Section */
.page-888clup__features-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-888clup__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-888clup__feature-card {
  background-color: #222222;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-888clup__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-888clup__feature-icon {
  max-width: 150px; /* Adjust size, minimum 200x200 requirement means this will be scaled down if needed, but the actual image will be large */
  height: auto;
  margin-bottom: 20px;
  display: block;
  box-sizing: border-box;
}

.page-888clup__feature-title {
  font-size: 1.4em;
  color: #ffcc00;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-888clup__feature-description {
  font-size: 0.95em;
  color: #b0b0b0;
}

/* Providers Section */
.page-888clup__providers-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-888clup__providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Min width 150px for logos */
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.page-888clup__provider-logo {
  display: block;
  background-color: #333333;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 200px; /* Ensure logos don't get too big */
  box-sizing: border-box;
}

.page-888clup__provider-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-888clup__provider-image {
  max-width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%); /* Example, keeping original color, but for logos, grayscale is common */
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
  box-sizing: border-box;
}

.page-888clup__provider-logo:hover .page-888clup__provider-image {
  filter: grayscale(0%);
  opacity: 1;
}

/* Payment Section */
.page-888clup__payment-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-888clup__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.page-888clup__payment-logo {
  display: block;
  background-color: #333333;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 200px;
  box-sizing: border-box;
}

.page-888clup__payment-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-888clup__payment-image {
  max-width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
  box-sizing: border-box;
}

.page-888clup__payment-logo:hover .page-888clup__payment-image {
  filter: grayscale(0%);
  opacity: 1;
}

/* FAQ Section */
.page-888clup__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-888clup__faq-container {
  margin-top: 30px;
}

.page-888clup__faq-item {
  background-color: #222222;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-888clup__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #333333;
  border-bottom: 1px solid #444444;
  transition: background-color 0.3s ease;
}

.page-888clup__faq-question:hover {
  background-color: #444444;
}

.page-888clup__faq-question-title {
  margin: 0;
  font-size: 1.25em;
  color: #ffcc00;
  font-weight: bold;
  pointer-events: none; /* Prevent click on h3 from blocking parent click */
}

.page-888clup__faq-toggle {
  font-size: 1.8em;
  color: #ffcc00;
  font-weight: bold;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent click on toggle from blocking parent click */
}

.page-888clup__faq-item.active .page-888clup__faq-toggle {
  transform: rotate(45deg); /* Plus to X (minus) */
}

.page-888clup__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #cccccc;
}

.page-888clup__faq-item.active .page-888clup__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-888clup__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Call to Action Section */
.page-888clup__cta-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #4d0000, #2a0000);
  margin-top: 40px;
  border-top: 5px solid #ffcc00;
}

.page-888clup__cta-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-888clup__hero-title {
    font-size: 2.5em;
  }
  .page-888clup__section-title {
    font-size: 2em;
  }
  .page-888clup__product-grid,
  .page-888clup__features-grid,
  .page-888clup__providers-grid,
  .page-888clup__payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-888clup__hero-section {
    padding: 40px 15px;
  }
  .page-888clup__hero-title {
    font-size: 2em;
  }
  .page-888clup__hero-description {
    font-size: 1em;
  }
  .page-888clup__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-888clup__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-888clup__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-888clup__about-section,
  .page-888clup__products-section,
  .page-888clup__promo-section,
  .page-888clup__features-section,
  .page-888clup__providers-section,
  .page-888clup__payment-section,
  .page-888clup__faq-section,
  .page-888clup__cta-section {
    padding: 40px 15px;
  }

  /* List items responsive */
  .page-888clup__promo-list,
  .page-888clup__faq-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
  .page-888clup__promo-item,
  .page-888clup__product-card,
  .page-888clup__feature-card,
  .page-888clup__provider-logo,
  .page-888clup__payment-logo,
  .page-888clup__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px !important; /* Adjust padding to prevent content overflow */
    padding-right: 15px !important; /* Adjust padding to prevent content overflow */
  }
  .page-888clup__faq-question, .page-888clup__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-888clup__faq-question-title {
    font-size: 1.1em;
  }
  .page-888clup__faq-toggle {
    font-size: 1.5em;
  }

  /* Images responsive */
  .page-888clup__hero-image,
  .page-888clup__about-image,
  .page-888clup__product-image,
  .page-888clup__feature-icon,
  .page-888clup__provider-image,
  .page-888clup__payment-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-888clup__hero-image-wrapper,
  .page-888clup__about-content,
  .page-888clup__product-card,
  .page-888clup__feature-card,
  .page-888clup__provider-logo,
  .page-888clup__payment-logo {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  /* Text wrapping */
  .page-888clup__promo-item,
  .page-888clup__product-description,
  .page-888clup__feature-description,
  .page-888clup__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
}

@media (max-width: 480px) {
  .page-888clup__hero-title {
    font-size: 1.8em;
  }
  .page-888clup__section-title {
    font-size: 1.6em;
  }
  .page-888clup__hero-buttons {
    flex-direction: column;
  }
  .page-888clup__button {
    width: 100%;
    max-width: 250px;
  }
  .page-888clup__product-grid,
  .page-888clup__features-grid,
  .page-888clup__providers-grid,
  .page-888clup__payment-grid {
    grid-template-columns: 1fr;
  }
}
  