.page-latest-news-exclusive-event {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --background-light: #F8F8F8;
  --accent-gold-dark: #9f7f04;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-latest-news-exclusive-event__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-latest-news-exclusive-event__hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a7a 100%);
  color: var(--text-light);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 450px;
  overflow: hidden;
}

.page-latest-news-exclusive-event__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-latest-news-exclusive-event__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-latest-news-exclusive-event__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-latest-news-exclusive-event__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-latest-news-exclusive-event__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-latest-news-exclusive-event__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 15px 30px;
  border-radius: 50px;
  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-latest-news-exclusive-event__cta-button:hover {
  background-color: var(--accent-gold-dark);
  transform: translateY(-3px);
}

.page-latest-news-exclusive-event__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-latest-news-exclusive-event__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-latest-news-exclusive-event__introduction,
.page-latest-news-exclusive-event__event-types,
.page-latest-news-exclusive-event__how-to-participate,
.page-latest-news-exclusive-event__benefits,
.page-latest-news-exclusive-event__responsible-gaming,
.page-latest-news-exclusive-event__why-choose-da88,
.page-latest-news-exclusive-event__faq,
.page-latest-news-exclusive-event__cta-final {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-latest-news-exclusive-event__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-latest-news-exclusive-event__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-latest-news-exclusive-event__introduction p,
.page-latest-news-exclusive-event__responsible-gaming p,
.page-latest-news-exclusive-event__why-choose-da88 p,
.page-latest-news-exclusive-event__cta-final p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news-exclusive-event__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-latest-news-exclusive-event__grid-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-latest-news-exclusive-event__grid-item:hover {
  transform: translateY(-5px);
}

.page-latest-news-exclusive-event__item-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.page-latest-news-exclusive-event__grid-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
}

.page-latest-news-exclusive-event__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-latest-news-exclusive-event__how-to-participate .page-latest-news-exclusive-event__container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.page-latest-news-exclusive-event__steps {
  list-style: none;
  padding: 0;
  flex: 2;
  min-width: 300px;
}

.page-latest-news-exclusive-event__steps li {
  background-color: var(--text-light);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
}

.page-latest-news-exclusive-event__steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-latest-news-exclusive-event__step-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-latest-news-exclusive-event__steps p {
  margin-bottom: 15px;
  text-align: left;
}

.page-latest-news-exclusive-event__steps a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-latest-news-exclusive-event__image-right {
  flex: 1;
  min-width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  align-self: flex-start;
  margin-top: 20px;
}

.page-latest-news-exclusive-event__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-latest-news-exclusive-event__benefit-list li {
  background-color: var(--text-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-latest-news-exclusive-event__icon {
  font-size: 1.5em;
  color: var(--secondary-color);
  line-height: 1;
}

.page-latest-news-exclusive-event__image-center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-latest-news-exclusive-event__responsible-gaming .page-latest-news-exclusive-event__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-latest-news-exclusive-event__responsible-gaming .page-latest-news-exclusive-event__container p {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.page-latest-news-exclusive-event__image-left {
  flex: 1;
  min-width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-left: auto; /* Push to the right on smaller screens if text wraps */
  margin-right: auto;
}

.page-latest-news-exclusive-event__why-choose-da88 .page-latest-news-exclusive-event__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-latest-news-exclusive-event__why-choose-da88 .page-latest-news-exclusive-event__feature-list li {
  background-color: var(--text-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: var(--text-dark);
  text-align: left;
}

.page-latest-news-exclusive-event__why-choose-da88 .page-latest-news-exclusive-event__feature-list li strong {
  color: var(--primary-color);
}

.page-latest-news-exclusive-event__faq {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-latest-news-exclusive-event__faq .page-latest-news-exclusive-event__section-title {
  color: var(--secondary-color);
}

.page-latest-news-exclusive-event__faq .page-latest-news-exclusive-event__section-title::after {
  background-color: var(--text-light);
}

.page-latest-news-exclusive-event__accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news-exclusive-event__accordion-item {
  background-color: var(--text-light);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-latest-news-exclusive-event__accordion-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-latest-news-exclusive-event__accordion-header:hover {
  background-color: #1a3a7a;
}

.page-latest-news-exclusive-event__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-latest-news-exclusive-event__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-latest-news-exclusive-event__accordion-content {
  padding: 0 25px;
  background-color: var(--background-light);
  color: var(--text-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-latest-news-exclusive-event__accordion-content.active {
  max-height: 200px; /* Adjust based on content */
  padding: 25px;
}

.page-latest-news-exclusive-event__accordion-content p {
  margin: 0;
  text-align: left;
}

.page-latest-news-exclusive-event__cta-final {
  text-align: center;
  padding: 80px 0;
}

.page-latest-news-exclusive-event__cta-final .page-latest-news-exclusive-event__section-title {
  margin-bottom: 20px;
}

.page-latest-news-exclusive-event__cta-final p {
  margin-bottom: 40px;
}

.page-latest-news-exclusive-event__cta-final p a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}

.page-latest-news-exclusive-event__image-cta {
  margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-latest-news-exclusive-event__hero-title {
    font-size: 2.8em;
  }
  .page-latest-news-exclusive-event__hero-subtitle {
    font-size: 1.1em;
  }
  .page-latest-news-exclusive-event__section-title {
    font-size: 2em;
  }
  .page-latest-news-exclusive-event__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-latest-news-exclusive-event__how-to-participate .page-latest-news-exclusive-event__container {
    flex-direction: column;
    align-items: center;
  }
  .page-latest-news-exclusive-event__image-right {
    order: -1; /* Move image to top on mobile */
    margin-bottom: 30px;
  }
  .page-latest-news-exclusive-event__responsible-gaming .page-latest-news-exclusive-event__container {
    flex-direction: column;
  }
  .page-latest-news-exclusive-event__responsible-gaming .page-latest-news-exclusive-event__container p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-latest-news-exclusive-event__hero {
    padding: 80px 0;
  }
  .page-latest-news-exclusive-event__hero-title {
    font-size: 2.2em;
  }
  .page-latest-news-exclusive-event__section-title {
    font-size: 1.8em;
  }
  .page-latest-news-exclusive-event__grid {
    grid-template-columns: 1fr;
  }
  .page-latest-news-exclusive-event__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-latest-news-exclusive-event__why-choose-da88 .page-latest-news-exclusive-event__feature-list {
    grid-template-columns: 1fr;
  }
  .page-latest-news-exclusive-event__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-latest-news-exclusive-event__hero-title {
    font-size: 1.8em;
  }
  .page-latest-news-exclusive-event__hero-subtitle {
    font-size: 1em;
  }
  .page-latest-news-exclusive-event__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-latest-news-exclusive-event__section-title {
    font-size: 1.5em;
  }
  .page-latest-news-exclusive-event__steps li {
    padding-left: 50px;
  }
  .page-latest-news-exclusive-event__steps li::before {
    left: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-latest-news-exclusive-event__item-title {
    font-size: 1.3em;
  }
  .page-latest-news-exclusive-event__benefit-list li {
    font-size: 1em;
  }
}