/* style/resources-2024-e88-game-latest-promotions.css */
.page-resources-2024-e88-game-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-resources-2024-e88-game-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-2024-e88-game-latest-promotions__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-2024-e88-game-latest-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0; /* Slightly off-white for readability */
}

.page-resources-2024-e88-game-latest-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-resources-2024-e88-game-latest-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-resources-2024-e88-game-latest-promotions__btn-primary:hover {
  background-color: #1e87b9;
  transform: translateY(-2px);
}

.page-resources-2024-e88-game-latest-promotions__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-2024-e88-game-latest-promotions__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Hero Section */
.page-resources-2024-e88-game-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  overflow: hidden;
}

.page-resources-2024-e88-game-latest-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-resources-2024-e88-game-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-2024-e88-game-latest-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-resources-2024-e88-game-latest-promotions__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-2024-e88-game-latest-promotions__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Intro Section */
.page-resources-2024-e88-game-latest-promotions__intro-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
}

/* Promotions Grid Section */
.page-resources-2024-e88-game-latest-promotions__promotions-grid-section {
  padding: 80px 0;
}

.page-resources-2024-e88-game-latest-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-2024-e88-game-latest-promotions__promotion-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-2024-e88-game-latest-promotions__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-2024-e88-game-latest-promotions__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
}

.page-resources-2024-e88-game-latest-promotions__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-2024-e88-game-latest-promotions__card-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Guide Section */
.page-resources-2024-e88-game-latest-promotions__guide-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-2024-e88-game-latest-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-2024-e88-game-latest-promotions__guide-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-resources-2024-e88-game-latest-promotions__guide-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-resources-2024-e88-game-latest-promotions__guide-text h3 {
  font-size: 1.5em;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-2024-e88-game-latest-promotions__guide-text p {
  color: #f0f0f0;
}

.page-resources-2024-e88-game-latest-promotions__guide-text a {
  color: #EA7C07; /* Login color for links */
  text-decoration: underline;
}

.page-resources-2024-e88-game-latest-promotions__guide-text a:hover {
  color: #ff9933;
}

.page-resources-2024-e88-game-latest-promotions__guide-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  min-height: 200px;
}

/* Benefits Section */
.page-resources-2024-e88-game-latest-promotions__benefits-section {
  padding: 80px 0;
}

.page-resources-2024-e88-game-latest-promotions__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-2024-e88-game-latest-promotions__benefits-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-resources-2024-e88-game-latest-promotions__benefits-heading {
  font-size: 1.6em;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-2024-e88-game-latest-promotions__benefits-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-2024-e88-game-latest-promotions__benefits-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  min-height: 200px;
}

/* Video Section */
.page-resources-2024-e88-game-latest-promotions__video-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-2024-e88-game-latest-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  margin-top: 40px;
}

.page-resources-2024-e88-game-latest-promotions__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-resources-2024-e88-game-latest-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

/* FAQ Section */
.page-resources-2024-e88-game-latest-promotions__faq-section {
  padding: 80px 0;
}

.page-resources-2024-e88-game-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-resources-2024-e88-game-latest-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-2024-e88-game-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-2024-e88-game-latest-promotions__faq-question:hover {
  background-color: #1e87b9;
}

.page-resources-2024-e88-game-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-2024-e88-game-latest-promotions__faq-item.active .page-resources-2024-e88-game-latest-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-2024-e88-game-latest-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-2024-e88-game-latest-promotions__faq-item.active .page-resources-2024-e88-game-latest-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px 25px;
}

/* Final CTA Section */
.page-resources-2024-e88-game-latest-promotions__final-cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-2024-e88-game-latest-promotions__final-cta-section .page-resources-2024-e88-game-latest-promotions__container {
  background-color: #26A9E0; /* Brand color as background */
  padding: 50px;
  border-radius: 10px;
  color: #ffffff;
}

.page-resources-2024-e88-game-latest-promotions__final-cta-section .page-resources-2024-e88-game-latest-promotions__section-title {
  color: #ffffff;
}

.page-resources-2024-e88-game-latest-promotions__final-cta-section .page-resources-2024-e88-game-latest-promotions__text-block {
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-2024-e88-game-latest-promotions__final-cta-section .page-resources-2024-e88-game-latest-promotions__text-block a {
  color: #ffffff;
  text-decoration: underline;
}

.page-resources-2024-e88-game-latest-promotions__final-cta-section .page-resources-2024-e88-game-latest-promotions__text-block a:hover {
  color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-2024-e88-game-latest-promotions__hero-title {
    font-size: 2.8em;
  }

  .page-resources-2024-e88-game-latest-promotions__hero-description {
    font-size: 1.1em;
  }

  .page-resources-2024-e88-game-latest-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-2024-e88-game-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-2024-e88-game-latest-promotions__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-2024-e88-game-latest-promotions__hero-content {
    padding: 20px;
  }

  .page-resources-2024-e88-game-latest-promotions__hero-title {
    font-size: 2.2em;
  }

  .page-resources-2024-e88-game-latest-promotions__hero-description {
    font-size: 1em;
  }

  .page-resources-2024-e88-game-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-2024-e88-game-latest-promotions__intro-section,
  .page-resources-2024-e88-game-latest-promotions__promotions-grid-section,
  .page-resources-2024-e88-game-latest-promotions__guide-section,
  .page-resources-2024-e88-game-latest-promotions__benefits-section,
  .page-resources-2024-e88-game-latest-promotions__video-section,
  .page-resources-2024-e88-game-latest-promotions__faq-section,
  .page-resources-2024-e88-game-latest-promotions__final-cta-section {
    padding: 50px 0;
  }

  .page-resources-2024-e88-game-latest-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Image responsive adaptations */
  .page-resources-2024-e88-game-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-2024-e88-game-latest-promotions__hero-image-wrapper,
  .page-resources-2024-e88-game-latest-promotions__promotion-card,
  .page-resources-2024-e88-game-latest-promotions__guide-section,
  .page-resources-2024-e88-game-latest-promotions__benefits-section,
  .page-resources-2024-e88-game-latest-promotions__video-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Video responsive adaptations */
  .page-resources-2024-e88-game-latest-promotions video,
  .page-resources-2024-e88-game-latest-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-2024-e88-game-latest-promotions__video-wrapper,
  .page-resources-2024-e88-game-latest-promotions__video-container,
  .page-resources-2024-e88-game-latest-promotions__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Button responsive adaptations */
  .page-resources-2024-e88-game-latest-promotions__cta-button,
  .page-resources-2024-e88-game-latest-promotions__btn-primary,
  .page-resources-2024-e88-game-latest-promotions__btn-secondary,
  .page-resources-2024-e88-game-latest-promotions a[class*="button"],
  .page-resources-2024-e88-game-latest-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-2024-e88-game-latest-promotions__hero-content .page-resources-2024-e88-game-latest-promotions__cta-button {
    padding: 12px 20px;
  }

  .page-resources-2024-e88-game-latest-promotions__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-2024-e88-game-latest-promotions__guide-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-resources-2024-e88-game-latest-promotions__guide-step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-resources-2024-e88-game-latest-promotions__guide-text h3 {
    font-size: 1.3em;
  }

  .page-resources-2024-e88-game-latest-promotions__benefits-list {
    grid-template-columns: 1fr;
  }

  .page-resources-2024-e88-game-latest-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-resources-2024-e88-game-latest-promotions__faq-answer {
    padding: 0 20px;
  }

  .page-resources-2024-e88-game-latest-promotions__faq-item.active .page-resources-2024-e88-game-latest-promotions__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-2024-e88-game-latest-promotions__hero-title {
    font-size: 1.8em;
  }

  .page-resources-2024-e88-game-latest-promotions__section-title {
    font-size: 1.5em;
  }
}