.page-resources-ae888-platform-analysis {
  color: #ffffff; /* Body background #121212 is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Ensure consistency with body background */
}

.page-resources-ae888-platform-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-ae888-platform-analysis__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-ae888-platform-analysis__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-ae888-platform-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-ae888-platform-analysis__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #121212; /* Dark text for contrast */
  margin-right: 20px;
}

.page-resources-ae888-platform-analysis__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-platform-analysis__cta-button--secondary {
  background-color: #8B0000; /* Dark Red */
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-resources-ae888-platform-analysis__cta-button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-platform-analysis__cta-center {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 60px;
}

/* Hero Section */
.page-resources-ae888-platform-analysis__hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:ae888,platform,analysis,hero_bg]') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  padding-top: var(--header-offset, 120px);
}

.page-resources-ae888-platform-analysis__main-title {
  font-size: 56px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-resources-ae888-platform-analysis__intro-description {
  font-size: 22px;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.page-resources-ae888-platform-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* About Section */
.page-resources-ae888-platform-analysis__about-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-resources-ae888-platform-analysis__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-resources-ae888-platform-analysis__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-resources-ae888-platform-analysis__image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-resources-ae888-platform-analysis__text-content {
  flex: 1;
  color: #f0f0f0;
  font-size: 17px;
}

.page-resources-ae888-platform-analysis__text-content h3 {
  color: #FFD700;
  font-size: 28px;
  margin-bottom: 15px;
}

.page-resources-ae888-platform-analysis__text-content p {
  margin-bottom: 15px;
}

/* Games Section */
.page-resources-ae888-platform-analysis__games-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-resources-ae888-platform-analysis__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-ae888-platform-analysis__game-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-resources-ae888-platform-analysis__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-ae888-platform-analysis__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-resources-ae888-platform-analysis__game-title {
  font-size: 24px;
  font-weight: bold;
  padding: 15px 20px 5px;
}

.page-resources-ae888-platform-analysis__game-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-ae888-platform-analysis__game-title a:hover {
  color: #e6c200;
}

.page-resources-ae888-platform-analysis__game-description {
  font-size: 16px;
  padding: 0 20px 20px;
  color: #cccccc;
}

/* Advantages Section */
.page-resources-ae888-platform-analysis__advantages-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-resources-ae888-platform-analysis__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-ae888-platform-analysis__advantage-item {
  background-color: #222222;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-ae888-platform-analysis__advantage-item:hover {
  transform: translateY(-5px);
  background-color: #2a2a2a;
}

.page-resources-ae888-platform-analysis__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-ae888-platform-analysis__advantage-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-ae888-platform-analysis__advantage-text {
  font-size: 16px;
  color: #cccccc;
}

/* Guide Section */
.page-resources-ae888-platform-analysis__guide-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-resources-ae888-platform-analysis__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-ae888-platform-analysis__guide-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-resources-ae888-platform-analysis__guide-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-ae888-platform-analysis__guide-text {
  font-size: 16px;
  color: #cccccc;
}

/* Security Section */
.page-resources-ae888-platform-analysis__security-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

/* Promotions Section */
.page-resources-ae888-platform-analysis__promotions-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-resources-ae888-platform-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-ae888-platform-analysis__promo-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-resources-ae888-platform-analysis__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-ae888-platform-analysis__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-ae888-platform-analysis__promo-title {
  font-size: 24px;
  font-weight: bold;
  padding: 15px 20px 5px;
  color: #FFD700;
}

.page-resources-ae888-platform-analysis__promo-description {
  font-size: 16px;
  padding: 0 20px 15px;
  color: #cccccc;
  flex-grow: 1;
}

.page-resources-ae888-platform-analysis__promo-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 20px;
  background-color: #8B0000; /* Dark Red */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-resources-ae888-platform-analysis__promo-button:hover {
  background-color: #6a0000;
}

/* Support Section */
.page-resources-ae888-platform-analysis__support-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-resources-ae888-platform-analysis__support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-ae888-platform-analysis__support-item {
  background-color: #222222;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-platform-analysis__support-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-ae888-platform-analysis__support-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-ae888-platform-analysis__support-text {
  font-size: 16px;
  color: #cccccc;
}

/* FAQ Section */
.page-resources-ae888-platform-analysis__faq-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-resources-ae888-platform-analysis__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-ae888-platform-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-ae888-platform-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #222222;
  border: 1px solid #333333;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-ae888-platform-analysis__faq-question:hover {
  background: #2a2a2a;
  border-color: #444444;
}

.page-resources-ae888-platform-analysis__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold */
  pointer-events: none;
}

.page-resources-ae888-platform-analysis__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;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-ae888-platform-analysis__faq-item.active .page-resources-ae888-platform-analysis__faq-toggle {
  color: #8B0000; /* Dark Red */
  transform: rotate(45deg);
}

.page-resources-ae888-platform-analysis__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;
  color: #cccccc;
  font-size: 16px;
  background-color: #1a1a1a;
  border-top: 1px solid #333333;
}

.page-resources-ae888-platform-analysis__faq-item.active .page-resources-ae888-platform-analysis__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

/* Conclusion Section */
.page-resources-ae888-platform-analysis__conclusion-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

.page-resources-ae888-platform-analysis__conclusion-section .page-resources-ae888-platform-analysis__section-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Global image styles */
.page-resources-ae888-platform-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Consistent rounded corners */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-resources-ae888-platform-analysis__main-title {
    font-size: 48px;
  }
  .page-resources-ae888-platform-analysis__intro-description {
    font-size: 20px;
  }
  .page-resources-ae888-platform-analysis__section-title {
    font-size: 32px;
  }
  .page-resources-ae888-platform-analysis__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-resources-ae888-platform-analysis__image {
    max-width: 100%;
  }
  .page-resources-ae888-platform-analysis__game-grid,
  .page-resources-ae888-platform-analysis__advantage-grid,
  .page-resources-ae888-platform-analysis__guide-steps,
  .page-resources-ae888-platform-analysis__promo-grid,
  .page-resources-ae888-platform-analysis__support-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-ae888-platform-analysis {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-ae888-platform-analysis__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-ae888-platform-analysis__main-title {
    font-size: 38px;
  }
  .page-resources-ae888-platform-analysis__intro-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-resources-ae888-platform-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-ae888-platform-analysis__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-right: 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
  .page-resources-ae888-platform-analysis__section-title {
    font-size: 28px;
    padding-top: 40px;
  }
  .page-resources-ae888-platform-analysis__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-resources-ae888-platform-analysis__container {
    padding: 0 15px;
  }
  .page-resources-ae888-platform-analysis__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-ae888-platform-analysis__text-content {
    font-size: 15px;
  }
  .page-resources-ae888-platform-analysis__text-content h3 {
    font-size: 24px;
  }
  .page-resources-ae888-platform-analysis__game-card,
  .page-resources-ae888-platform-analysis__advantage-item,
  .page-resources-ae888-platform-analysis__guide-item,
  .page-resources-ae888-platform-analysis__promo-card,
  .page-resources-ae888-platform-analysis__support-item {
    padding: 20px;
  }
  .page-resources-ae888-platform-analysis__game-title,
  .page-resources-ae888-platform-analysis__advantage-title,
  .page-resources-ae888-platform-analysis__guide-title,
  .page-resources-ae888-platform-analysis__promo-title,
  .page-resources-ae888-platform-analysis__support-title {
    font-size: 20px;
  }
  .page-resources-ae888-platform-analysis__game-description,
  .page-resources-ae888-platform-analysis__advantage-text,
  .page-resources-ae888-platform-analysis__guide-text,
  .page-resources-ae888-platform-analysis__promo-description,
  .page-resources-ae888-platform-analysis__support-text {
    font-size: 14px;
  }
  .page-resources-ae888-platform-analysis__promo-button {
    width: calc(100% - 40px) !important;
    margin-left: 20px;
    margin-right: 20px;
  }
  .page-resources-ae888-platform-analysis__faq-question {
    padding: 15px 20px;
  }
  .page-resources-ae888-platform-analysis__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-ae888-platform-analysis__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .page-resources-ae888-platform-analysis__faq-answer {
    padding: 0 20px;
  }
  .page-resources-ae888-platform-analysis__faq-item.active .page-resources-ae888-platform-analysis__faq-answer {
    padding: 15px 20px !important;
  }
}