/* style/resources-lucky88-withdrawal-guide.css */
.page-resources-lucky88-withdrawal-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #1A202C; /* Main background color */
  line-height: 1.6;
}

.page-resources-lucky88-withdrawal-guide__hero {
  background: linear-gradient(135deg, #1A202C 0%, #303a4b 100%);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.page-resources-lucky88-withdrawal-guide__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-resources-lucky88-withdrawal-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
}

.page-resources-lucky88-withdrawal-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-resources-lucky88-withdrawal-guide__title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-lucky88-withdrawal-guide__subtitle {
  font-size: 1.5em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-resources-lucky88-withdrawal-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #1A202C; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-lucky88-withdrawal-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-lucky88-withdrawal-guide__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-resources-lucky88-withdrawal-guide__section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #242a38; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid #3a445c;
}

.page-resources-lucky88-withdrawal-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-lucky88-withdrawal-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-lucky88-withdrawal-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-lucky88-withdrawal-guide__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-lucky88-withdrawal-guide__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-resources-lucky88-withdrawal-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-lucky88-withdrawal-guide__grid-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-resources-lucky88-withdrawal-guide__grid-item:hover {
  transform: translateY(-5px);
}

.page-resources-lucky88-withdrawal-guide__grid-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-resources-lucky88-withdrawal-guide__grid-item p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-resources-lucky88-withdrawal-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-lucky88-withdrawal-guide__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-lucky88-withdrawal-guide__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-lucky88-withdrawal-guide__step-item {
  background-color: #1A202C;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-resources-lucky88-withdrawal-guide__step-item::before {
  content: attr(data-step-number);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-resources-lucky88-withdrawal-guide__step-item:nth-child(1)::before { content: '1'; }
.page-resources-lucky88-withdrawal-guide__step-item:nth-child(2)::before { content: '2'; }
.page-resources-lucky88-withdrawal-guide__step-item:nth-child(3)::before { content: '3'; }
.page-resources-lucky88-withdrawal-guide__step-item:nth-child(4)::before { content: '4'; }
.page-resources-lucky88-withdrawal-guide__step-item:nth-child(5)::before { content: '5'; }

.page-resources-lucky88-withdrawal-guide__step-item h3 {
  margin-top: 0;
  font-size: 1.5em;
}

.page-resources-lucky88-withdrawal-guide__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-lucky88-withdrawal-guide__button:hover {
  background-color: #e6c200;
}

.page-resources-lucky88-withdrawal-guide__checklist {
  list-style: none;
  padding: 0;
}

.page-resources-lucky88-withdrawal-guide__checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-resources-lucky88-withdrawal-guide__icon {
  color: #FFD700;
  font-size: 1.3em;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}

.page-resources-lucky88-withdrawal-guide__accordion {
  margin-top: 30px;
}

.page-resources-lucky88-withdrawal-guide__accordion-item {
  background-color: #1A202C;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-lucky88-withdrawal-guide__accordion-header {
  background-color: #3a445c; /* Darker header for accordion */
  color: #FFD700;
  padding: 20px 30px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-resources-lucky88-withdrawal-guide__accordion-header:hover {
  background-color: #4c5a7a;
}

.page-resources-lucky88-withdrawal-guide__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-lucky88-withdrawal-guide__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-lucky88-withdrawal-guide__accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-lucky88-withdrawal-guide__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
  color: #E0E0E0;
}

.page-resources-lucky88-withdrawal-guide__cta {
  text-align: center;
  padding: 80px 20px;
  background-color: #1A202C;
}

.page-resources-lucky88-withdrawal-guide__cta .page-resources-lucky88-withdrawal-guide__section-title {
  color: #FFD700;
}

.page-resources-lucky88-withdrawal-guide__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-lucky88-withdrawal-guide__hero {
    padding: 60px 15px;
  }

  .page-resources-lucky88-withdrawal-guide__title {
    font-size: 2.5em;
  }

  .page-resources-lucky88-withdrawal-guide__subtitle {
    font-size: 1.2em;
  }

  .page-resources-lucky88-withdrawal-guide__section {
    padding: 40px 15px;
  }

  .page-resources-lucky88-withdrawal-guide__section-title {
    font-size: 2em;
  }

  .page-resources-lucky88-withdrawal-guide__sub-title {
    font-size: 1.5em;
  }

  .page-resources-lucky88-withdrawal-guide__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-lucky88-withdrawal-guide__step-item {
    padding-left: 60px;
  }

  .page-resources-lucky88-withdrawal-guide__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    left: 15px;
  }

  .page-resources-lucky88-withdrawal-guide__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-lucky88-withdrawal-guide__title {
    font-size: 2em;
  }

  .page-resources-lucky88-withdrawal-guide__subtitle {
    font-size: 1em;
  }

  .page-resources-lucky88-withdrawal-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-lucky88-withdrawal-guide__sub-title {
    font-size: 1.3em;
  }

  .page-resources-lucky88-withdrawal-guide__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}