.page-aw8-slot-games {
  color: #ffffff; /* Body background is dark (#121212), so use light text */
  background-color: #121212;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Fixed navbar spacing for the whole page content */
}

.page-aw8-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-aw8-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-aw8-slot-games__section:nth-of-type(even) {
  background-color: #1A202C; /* Dark gray for alternating sections */
}

.page-aw8-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-aw8-slot-games__section-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-aw8-slot-games__hero-section {
  padding: 10px 0 60px 0; /* Adjust padding-top for fixed header, keep bottom padding */
  background: linear-gradient(135deg, #1A202C 0%, #0d0d0d 100%);
  text-align: left;
}

.page-aw8-slot-games__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px; /* Wider container for hero */
  margin: 0 auto;
  padding: 0 20px;
}

.page-aw8-slot-games__hero-content {
  flex: 1;
  max-width: 55%;
}

.page-aw8-slot-games__hero-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-aw8-slot-games__hero-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-aw8-slot-games__hero-image-wrapper {
  flex: 1;
  max-width: 45%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-aw8-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-aw8-slot-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* Buttons */
.page-aw8-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-aw8-slot-games__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A202C; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-aw8-slot-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-aw8-slot-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-aw8-slot-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

/* Why Choose Section */
.page-aw8-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-aw8-slot-games__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-aw8-slot-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-aw8-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.page-aw8-slot-games__feature-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-aw8-slot-games__feature-description {
  font-size: 16px;
  color: #e0e0e0;
  text-align: left;
}

/* Game Types Section */
.page-aw8-slot-games__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-aw8-slot-games__game-type-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-aw8-slot-games__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-aw8-slot-games__game-type-title {
  font-size: 26px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-aw8-slot-games__game-type-description {
  font-size: 16px;
  color: #e0e0e0;
}

/* How To Play Section */
.page-aw8-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-aw8-slot-games__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-aw8-slot-games__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-aw8-slot-games__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.page-aw8-slot-games__step-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-aw8-slot-games__step-description {
  font-size: 16px;
  color: #e0e0e0;
}

.page-aw8-slot-games__step-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-aw8-slot-games__step-description a:hover {
  color: #e6c200;
}

.page-aw8-slot-games__cta-section {
  margin-top: 50px;
  text-align: center;
}

/* Promotions Section */
.page-aw8-slot-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-aw8-slot-games__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-aw8-slot-games__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-aw8-slot-games__promotion-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-aw8-slot-games__promotion-description {
  font-size: 16px;
  color: #e0e0e0;
}

/* Support Section */
.page-aw8-slot-games__support-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-aw8-slot-games__support-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 17px;
  color: #e0e0e0;
  border-left: 4px solid #FFD700;
}

.page-aw8-slot-games__support-item strong {
  color: #FFD700;
}

/* FAQ Section */
.page-aw8-slot-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-aw8-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-aw8-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A202C; /* Dark gray for question background */
  border: 1px solid #333;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-aw8-slot-games__faq-question:hover {
  background: #2a303c;
  border-color: #555;
}

.page-aw8-slot-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-aw8-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-aw8-slot-games__faq-item.active .page-aw8-slot-games__faq-question {
  background: #2a303c;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-aw8-slot-games__faq-item.active .page-aw8-slot-games__faq-toggle {
  transform: rotate(45deg);
  color: #e6c200;
}

.page-aw8-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #1A202C;
  color: #e0e0e0;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-aw8-slot-games__faq-item.active .page-aw8-slot-games__faq-answer {
  max-height: 2000px !important; /* Ensure content fits */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-aw8-slot-games__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Bottom CTA Section */
.page-aw8-slot-games__section--cta-bottom {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-aw8-slot-games__hero-title {
    font-size: 42px;
  }
  .page-aw8-slot-games__section-title {
    font-size: 32px;
  }
  .page-aw8-slot-games__hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .page-aw8-slot-games__hero-content,
  .page-aw8-slot-games__hero-image-wrapper {
    max-width: 100%;
  }
  .page-aw8-slot-games__hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-aw8-slot-games {
    padding-top: 10px !important; /* Ensure mobile padding-top */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-aw8-slot-games__container {
    padding: 0 15px;
  }
  .page-aw8-slot-games__section {
    padding: 40px 0;
  }
  .page-aw8-slot-games__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-aw8-slot-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-aw8-slot-games__hero-title {
    font-size: 36px;
  }
  .page-aw8-slot-games__hero-description {
    font-size: 16px;
  }
  .page-aw8-slot-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-aw8-slot-games__btn {
    padding: 12px 20px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-aw8-slot-games__features-grid,
  .page-aw8-slot-games__game-types-grid,
  .page-aw8-slot-games__steps-grid,
  .page-aw8-slot-games__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-aw8-slot-games__feature-card,
  .page-aw8-slot-games__game-type-card,
  .page-aw8-slot-games__step-card,
  .page-aw8-slot-games__promotion-card {
    padding: 25px;
  }
  .page-aw8-slot-games__feature-title,
  .page-aw8-slot-games__game-type-title,
  .page-aw8-slot-games__step-title,
  .page-aw8-slot-games__promotion-title {
    font-size: 20px;
  }
  .page-aw8-slot-games__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-aw8-slot-games__step-card {
    padding-top: 50px;
  }
  .page-aw8-slot-games__step-number {
    top: 15px;
    left: 25px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .page-aw8-slot-games__support-item {
    font-size: 15px;
    padding: 12px 15px;
  }
  .page-aw8-slot-games__faq-question {
    padding: 15px 20px;
  }
  .page-aw8-slot-games__faq-question h3 {
    font-size: 16px;
  }
  .page-aw8-slot-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-aw8-slot-games__faq-answer {
    padding: 0 20px;
  }
  .page-aw8-slot-games__faq-item.active .page-aw8-slot-games__faq-answer {
    padding: 15px 20px !important;
  }
  .page-aw8-slot-games__faq-answer p {
    font-size: 15px;
  }
  /* Universal image responsive styles */
  .page-aw8-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-aw8-slot-games__hero-image-wrapper,
  .page-aw8-slot-games__feature-icon,
  .page-aw8-slot-games__cta-section,
  .page-aw8-slot-games__hero-cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-aw8-slot-games__hero-title {
    font-size: 30px;
  }
  .page-aw8-slot-games__section-title {
    font-size: 24px;
  }
  .page-aw8-slot-games__btn {
    font-size: 15px;
    padding: 10px 15px;
  }
  .page-aw8-slot-games__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}