/* style/promotions-vip.css */

/* Base styles */
.page-promotions-vip {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Ensures consistency with body background */
}

.page-promotions-vip__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-vip__section {
  padding: 60px 0;
}

.page-promotions-vip__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-promotions-vip__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-vip__keyword {
  font-weight: bold;
  color: #26A9E0;
}

.page-promotions-vip__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions-vip__text-link:hover {
  color: #1a7bb7;
}

/* Color Contrast Classes */
.page-promotions-vip__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-vip__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-vip__dark-bg .page-promotions-vip__section-title,
.page-promotions-vip__dark-bg .page-promotions-vip__keyword,
.page-promotions-vip__dark-bg .page-promotions-vip__text-link {
  color: #ffffff;
}

.page-promotions-vip__dark-bg .page-promotions-vip__text-link:hover {
  color: #e0e0e0;
}

/* Hero Section */
.page-promotions-vip__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small padding for the top */
  padding-bottom: 60px;
  min-height: 500px;
  overflow: hidden;
}

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

.page-promotions-vip__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions-vip__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

.page-promotions-vip__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
}

.page-promotions-vip__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

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

.page-promotions-vip__btn-primary,
.page-promotions-vip__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-promotions-vip__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-promotions-vip__btn-primary:hover {
  background-color: #d66f06;
  border-color: #d66f06;
}

.page-promotions-vip__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions-vip__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

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

.page-promotions-vip__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-promotions-vip__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-promotions-vip__card-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions-vip__card-text {
  font-size: 1em;
  text-align: justify;
}

/* Levels Table */
.page-promotions-vip__levels-table {
  overflow-x: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions-vip__levels-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensure table is not too narrow on small screens */
}

.page-promotions-vip__levels-table th,
.page-promotions-vip__levels-table td {
  border: 1px solid #e0e0e0;
  padding: 15px;
  text-align: left;
}

.page-promotions-vip__levels-table th {
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
}

.page-promotions-vip__levels-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-promotions-vip__image-content {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 200px;
}

/* How To Join Section */
.page-promotions-vip__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-promotions-vip__step-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions-vip__step-description {
  font-size: 1em;
  text-align: justify;
}

.page-promotions-vip__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

/* FAQ Section */
.page-promotions-vip__faq-list {
  margin-top: 40px;
}

.page-promotions-vip__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-vip__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-promotions-vip__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-vip__faq-question:hover {
  background-color: #ebebeb;
}

.page-promotions-vip__faq-qtext {
  flex-grow: 1;
}

.page-promotions-vip__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-promotions-vip__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #f0f0f0;
}

.page-promotions-vip__faq-item[open] .page-promotions-vip__faq-question {
  border-bottom: none;
}

/* Final CTA Section */
.page-promotions-vip__cta-final {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-vip__section-title {
    font-size: 2em;
  }

  .page-promotions-vip__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-promotions-vip__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-vip__container {
    padding: 0 15px;
  }

  .page-promotions-vip__section {
    padding: 40px 0;
  }

  .page-promotions-vip__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-vip__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-promotions-vip__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-vip__hero-content {
    padding: 15px;
  }

  .page-promotions-vip__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions-vip__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-vip__btn-primary,
  .page-promotions-vip__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-vip__benefits-grid,
  .page-promotions-vip__steps-list,
  .page-promotions-vip__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-vip__card {
    padding: 20px;
  }

  .page-promotions-vip__card-title {
    font-size: 1.3em;
  }

  .page-promotions-vip__card-image,
  .page-promotions-vip__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box !important;
  }
  
  .page-promotions-vip__levels-table table {
    min-width: unset;
  }

  .page-promotions-vip__levels-table th,
  .page-promotions-vip__levels-table td {
    padding: 10px;
    font-size: 0.9em;
  }

  .page-promotions-vip__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-promotions-vip__faq-answer {
    padding: 15px 20px;
  }

  /* Ensure all containers containing images/buttons/video are responsive */
  .page-promotions-vip__section,
  .page-promotions-vip__card,
  .page-promotions-vip__container,
  .page-promotions-vip__cta-buttons,
  .page-promotions-vip__cta-wrapper,
  .page-promotions-vip__levels-table {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-promotions-vip__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
  }
}