/* style/slot-games-jackpot-analysis.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --button-login-color: #EA7C07;
  --background-color: #FFFFFF;
  --black-color: #000000;
}

.page-slot-games-jackpot-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color);
}

.page-slot-games-jackpot-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-slot-games-jackpot-analysis__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Specific top padding for hero */
  padding-bottom: 40px;
  color: var(--text-color-dark);
  background-color: var(--background-color);
}

.page-slot-games-jackpot-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-slot-games-jackpot-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-slot-games-jackpot-analysis__hero-content {
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-slot-games-jackpot-analysis__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-slot-games-jackpot-analysis__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-slot-games-jackpot-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-slot-games-jackpot-analysis__cta-button,
.page-slot-games-jackpot-analysis__btn-primary,
.page-slot-games-jackpot-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-analysis__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-slot-games-jackpot-analysis__btn-primary:hover {
  background-color: #1e8dc7;
  border-color: #1e8dc7;
}

.page-slot-games-jackpot-analysis__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-slot-games-jackpot-analysis__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e8dc7;
  border-color: #1e8dc7;
}

/* General Section Styling */
.page-slot-games-jackpot-analysis__section {
  padding: 60px 0;
}

.page-slot-games-jackpot-analysis__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-slot-games-jackpot-analysis__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-jackpot-analysis__keyword {
  font-weight: bold;
  color: var(--primary-color);
}

/* Card Layouts */
.page-slot-games-jackpot-analysis__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games-jackpot-analysis__card {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  color: var(--text-color-dark);
}

.page-slot-games-jackpot-analysis__card--dark {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border-color: var(--primary-color);
}

.page-slot-games-jackpot-analysis__card--dark .page-slot-games-jackpot-analysis__card-title {
  color: var(--text-color-light);
}

.page-slot-games-jackpot-analysis__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-jackpot-analysis__card-text {
  font-size: 1em;
  line-height: 1.6;
}

/* Dark Section */
.page-slot-games-jackpot-analysis__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-slot-games-jackpot-analysis__dark-bg .page-slot-games-jackpot-analysis__section-title {
  color: var(--text-color-light);
}

.page-slot-games-jackpot-analysis__dark-bg .page-slot-games-jackpot-analysis__text-block {
  color: var(--text-color-light);
}

.page-slot-games-jackpot-analysis__dark-bg .page-slot-games-jackpot-analysis__keyword {
  color: var(--secondary-color);
}

/* Top Games Section */
.page-slot-games-jackpot-analysis__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpot-analysis__game-card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: var(--text-color-dark);
}

.page-slot-games-jackpot-analysis__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-analysis__game-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 15px;
  font-weight: 600;
}

.page-slot-games-jackpot-analysis__game-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-slot-games-jackpot-analysis__game-button {
  margin: 0 15px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-analysis__game-button:hover {
  background-color: #1e8dc7;
  border-color: #1e8dc7;
}

/* Benefits Section */
.page-slot-games-jackpot-analysis__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games-jackpot-analysis__benefit-item {
  background-color: var(--secondary-color);
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-color-dark);
}

.page-slot-games-jackpot-analysis__benefit-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games-jackpot-analysis__benefit-description {
  font-size: 0.95em;
  color: #555;
}

/* FAQ Section */
.page-slot-games-jackpot-analysis__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-analysis__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-color-dark);
}

.page-slot-games-jackpot-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-slot-games-jackpot-analysis__faq-item[open] .page-slot-games-jackpot-analysis__faq-question {
  border-bottom: 1px solid transparent;
}

.page-slot-games-jackpot-analysis__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-jackpot-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-analysis__faq-item[open] .page-slot-games-jackpot-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-jackpot-analysis__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

.page-slot-games-jackpot-analysis__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-slot-games-jackpot-analysis__conclusion-section {
  text-align: center;
  padding: 80px 0;
}

.page-slot-games-jackpot-analysis__conclusion-section .page-slot-games-jackpot-analysis__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-slot-games-jackpot-analysis__conclusion-section .page-slot-games-jackpot-analysis__keyword {
  color: var(--secondary-color);
}

.page-slot-games-jackpot-analysis__conclusion-section .page-slot-games-jackpot-analysis__cta-buttons {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-analysis__section-title {
    font-size: 2em;
  }

  .page-slot-games-jackpot-analysis__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }

  .page-slot-games-jackpot-analysis__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-analysis__container,
  .page-slot-games-jackpot-analysis__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* HERO 主图区域 */
  .page-slot-games-jackpot-analysis__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }

  .page-slot-games-jackpot-analysis__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em) !important;
    margin-bottom: 15px !important;
  }

  .page-slot-games-jackpot-analysis__hero-description {
    font-size: 1em !important;
    margin-bottom: 25px !important;
  }

  /* 产品展示图区域 & 通用图片与容器 */
  .page-slot-games-jackpot-analysis img,
  .page-slot-games-jackpot-analysis__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-jackpot-analysis__hero-image-wrapper,
  .page-slot-games-jackpot-analysis__section,
  .page-slot-games-jackpot-analysis__card,
  .page-slot-games-jackpot-analysis__container,
  .page-slot-games-jackpot-analysis__games-grid,
  .page-slot-games-jackpot-analysis__game-card,
  .page-slot-games-jackpot-analysis__benefits-list,
  .page-slot-games-jackpot-analysis__benefit-item,
  .page-slot-games-jackpot-analysis__faq-list,
  .page-slot-games-jackpot-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-slot-games-jackpot-analysis__games-grid {
    grid-template-columns: 1fr !important; /* Single column for games */
  }

  .page-slot-games-jackpot-analysis__grid-layout {
    grid-template-columns: 1fr !important; /* Single column for cards */
  }

  /* 按钮与按钮容器 */
  .page-slot-games-jackpot-analysis__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px !important;
  }

  .page-slot-games-jackpot-analysis__cta-button,
  .page-slot-games-jackpot-analysis__btn-primary,
  .page-slot-games-jackpot-analysis__btn-secondary,
  .page-slot-games-jackpot-analysis a[class*="button"],
  .page-slot-games-jackpot-analysis 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 !important;
    padding-right: 15px !important;
  }

  .page-slot-games-jackpot-analysis__game-button {
    width: calc(100% - 30px) !important; /* Adjust for padding in game card */
    margin: 0 15px 15px !important;
  }

  /* 其他内容模块 */
  .page-slot-games-jackpot-analysis__section {
    padding: 40px 0 !important;
  }

  .page-slot-games-jackpot-analysis__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px !important;
  }

  .page-slot-games-jackpot-analysis__text-block {
    font-size: 1em !important;
  }

  .page-slot-games-jackpot-analysis__card-title,
  .page-slot-games-jackpot-analysis__benefit-title {
    font-size: 1.2em !important;
  }

  .page-slot-games-jackpot-analysis__faq-question {
    padding: 15px 20px !important;
    font-size: 1em !important;
  }

  .page-slot-games-jackpot-analysis__faq-answer {
    padding: 10px 20px 15px !important;
    font-size: 0.95em !important;
  }

  .page-slot-games-jackpot-analysis__conclusion-section {
    padding: 60px 0 !important;
  }
}