.page-index-slot365-game-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg); /* Inherit from shared.css */
}

.page-index-slot365-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-index-slot365-game-features__section-title {
  font-size: 36px;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-index-slot365-game-features__main-title {
  font-size: 48px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-index-slot365-game-features__description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #ffffff;
}

.page-index-slot365-game-features__text-block {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* HERO Section */
.page-index-slot365-game-features__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared 已给 body 留白时用 0 */
  margin-top: 0;
  overflow: hidden;
}

.page-index-slot365-game-features__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.page-index-slot365-game-features__hero-image {
  width: 100%;
  margin: 0;
}

.page-index-slot365-game-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Products Section */
.page-index-slot365-game-features__products-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--dark-bg); /* Use dark background */
  box-sizing: border-box;
}

.page-index-slot365-game-features__products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr; /* Desktop: 4 small + 2 large */
  gap: 20px;
}

.page-index-slot365-game-features__products-grid {
  display: grid;
  gap: 20px;
}

.page-index-slot365-game-features__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-index-slot365-game-features__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-index-slot365-game-features__product-card {
  width: 100%;
  max-width: 300px; /* Max width for each product card */
  border-radius: 0; /* No border-radius */
  overflow: hidden;
  background: transparent;
  box-shadow: none; /* No box-shadow */
  transition: transform 0.3s ease;
  justify-self: center;
  align-self: center;
}

.page-index-slot365-game-features__product-card:hover {
  transform: translateY(-5px); /* Light hover effect */
}

.page-index-slot365-game-features__product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index-slot365-game-features__product-card-image {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
}

.page-index-slot365-game-features__product-card-image img {
  max-width: 100%;
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
}

/* Intro Section */
.page-index-slot365-game-features__intro-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #8B0000; /* Dark Red background */
  color: #ffffff;
}

/* Quick Access Section */
.page-index-slot365-game-features__quick-access-section {
  padding: 60px 20px;
  background-color: #f0f0f0; /* Light background for contrast */
  color: #333333;
  text-align: center;
}

.page-index-slot365-game-features__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-index-slot365-game-features__btn-primary,
.page-index-slot365-game-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-slot365-game-features__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black text for gold button */
  border: 2px solid #FFD700;
}

.page-index-slot365-game-features__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index-slot365-game-features__btn-secondary {
  background-color: transparent;
  color: #8B0000; /* Dark Red text */
  border: 2px solid #8B0000;
}

.page-index-slot365-game-features__btn-secondary:hover {
  background-color: #8B0000;
  color: #ffffff;
}

/* Core Games Section */
.page-index-slot365-game-features__core-games-section {
  padding: 80px 20px;
  background-color: var(--dark-bg);
  color: #f0f0f0;
  text-align: center;
}

.page-index-slot365-game-features__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-slot365-game-features__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-slot365-game-features__game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-slot365-game-features__game-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-slot365-game-features__game-description {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-index-slot365-game-features__promotions-section {
  padding: 80px 20px;
  background-color: #f0f0f0;
  color: #333333;
  text-align: center;
}

.page-index-slot365-game-features__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-slot365-game-features__promo-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-slot365-game-features__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-slot365-game-features__promo-title {
  font-size: 22px;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-index-slot365-game-features__promo-description {
  font-size: 15px;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Security Section */
.page-index-slot365-game-features__security-section {
  padding: 80px 20px;
  background-color: var(--dark-bg);
  color: #f0f0f0;
}

.page-index-slot365-game-features__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-slot365-game-features__security-text {
  flex: 1;
  min-width: 300px;
}

.page-index-slot365-game-features__security-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-slot365-game-features__security-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-index-slot365-game-features__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-slot365-game-features__contact-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ffffff;
}

.page-index-slot365-game-features__contact-list strong {
  color: #FFD700;
}

/* FAQ Section */
.page-index-slot365-game-features__faq-section {
  padding: 80px 20px;
  background-color: #f0f0f0;
  color: #333333;
}

.page-index-slot365-game-features__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-index-slot365-game-features__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-slot365-game-features__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-index-slot365-game-features__faq-item.active .page-index-slot365-game-features__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 15px !important;
  opacity: 1;
  background: #ffffff;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

.page-index-slot365-game-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-index-slot365-game-features__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-slot365-game-features__faq-question:active {
  background: #eeeeee;
}

.page-index-slot365-game-features__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-index-slot365-game-features__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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: 28px;
  height: 28px;
}

.page-index-slot365-game-features__faq-item.active .page-index-slot365-game-features__faq-toggle {
  color: #8B0000; /* Dark red when active */
  transform: rotate(45deg);
}

/* Blog Section */
.page-index-slot365-game-features__blog-section {
  padding: 80px 20px;
  background-color: var(--dark-bg);
  color: #f0f0f0;
  text-align: center;
}

.page-index-slot365-game-features__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-slot365-game-features__blog-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-index-slot365-game-features__blog-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-index-slot365-game-features__blog-title {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-index-slot365-game-features__blog-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-slot365-game-features__blog-title a:hover {
  color: #ffffff;
}

.page-index-slot365-game-features__blog-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.page-index-slot365-game-features__blog-excerpt {
  font-size: 15px;
  color: #e0e0e0;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-slot365-game-features__products-container {
    grid-template-columns: 1fr; /* Mobile: Two grids stacked */
  }
  
  .page-index-slot365-game-features__products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-index-slot365-game-features__game-showcase,
  .page-index-slot365-game-features__promotions-grid,
  .page-index-slot365-game-features__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-index-slot365-game-features__main-title {
    font-size: 40px;
  }

  .page-index-slot365-game-features__section-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-slot365-game-features__container {
    padding: 15px;
  }

  .page-index-slot365-game-features__main-title {
    font-size: 32px;
  }

  .page-index-slot365-game-features__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .page-index-slot365-game-features__description,
  .page-index-slot365-game-features__text-block {
    font-size: 15px;
  }

  /* HERO Section */
  .page-index-slot365-game-features__hero-section {
    padding-top: 0 !important; /* shared already handles body padding */
  }
  .page-index-slot365-game-features__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Products Section */
  .page-index-slot365-game-features__products-section {
    padding: 40px 15px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .page-index-slot365-game-features__products-container {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .page-index-slot365-game-features__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-index-slot365-game-features__products-grid--small .page-index-slot365-game-features__product-card,
  .page-index-slot365-game-features__products-grid--small .page-index-slot365-game-features__product-card-image {
    max-width: 300px;
  }
  
  .page-index-slot365-game-features__products-grid--small .page-index-slot365-game-features__product-card-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  
  .page-index-slot365-game-features__products-grid--large {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-index-slot365-game-features__products-grid--large .page-index-slot365-game-features__product-card,
  .page-index-slot365-game-features__products-grid--large .page-index-slot365-game-features__product-card-image {
    max-width: 300px;
  }
  
  .page-index-slot365-game-features__products-grid--large .page-index-slot365-game-features__product-card-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  /* Quick Access Buttons */
  .page-index-slot365-game-features__button-group {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-index-slot365-game-features__btn-primary,
  .page-index-slot365-game-features__btn-secondary,
  .page-index-slot365-game-features a[class*="button"],
  .page-index-slot365-game-features 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-index-slot365-game-features__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Core Games, Promotions, Blog Grid */
  .page-index-slot365-game-features__game-showcase,
  .page-index-slot365-game-features__promotions-grid,
  .page-index-slot365-game-features__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Security Section */
  .page-index-slot365-game-features__security-content {
    flex-direction: column;
  }

  .page-index-slot365-game-features__security-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* FAQ */
  .page-index-slot365-game-features__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index-slot365-game-features__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-index-slot365-game-features__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-index-slot365-game-features__faq-answer {
    padding: 0 15px;
  }
  
  .page-index-slot365-game-features__faq-item.active .page-index-slot365-game-features__faq-answer {
    padding: 15px !important;
  }

  /* General Image Responsiveness */
  .page-index-slot365-game-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-slot365-game-features__section,
  .page-index-slot365-game-features__card,
  .page-index-slot365-game-features__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}