/* style/game-strategy-center-high-win-rate-slots.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --accent-color: #EA7C07; /* Màu cho nút đăng nhập */
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --bg-light: #f9f9f9;
}

.page-game-strategy-center-high-win-rate-slots {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--secondary-color); /* Body background is from shared.css, this is for main content area if it has its own bg */
}

.page-game-strategy-center-high-win-rate-slots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background: var(--primary-color);
  color: var(--text-light);
  overflow: hidden;
}

.page-game-strategy-center-high-win-rate-slots__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-game-strategy-center-high-win-rate-slots__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-game-strategy-center-high-win-rate-slots__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-game-strategy-center-high-win-rate-slots__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-game-strategy-center-high-win-rate-slots__hero-content h1 {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  font-size: clamp(28px, 4vw, 48px); /* Using clamp for responsive H1 */
}

.page-game-strategy-center-high-win-rate-slots__hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategy-center-high-win-rate-slots__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-color); /* Sử dụng màu login cho CTA */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-center-high-win-rate-slots__cta-button:hover {
  background: darken(var(--accent-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-game-strategy-center-high-win-rate-slots__section {
  padding: 60px 20px;
  text-align: center;
}

.page-game-strategy-center-high-win-rate-slots__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.page-game-strategy-center-high-win-rate-slots__section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-game-strategy-center-high-win-rate-slots__dark-bg {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-game-strategy-center-high-win-rate-slots__dark-bg .page-game-strategy-center-high-win-rate-slots__section-title {
  color: var(--text-light);
}

.page-game-strategy-center-high-win-rate-slots__light-bg {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-game-strategy-center-high-win-rate-slots__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy-center-high-win-rate-slots__card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-dark);
}

.page-game-strategy-center-high-win-rate-slots__card img {
  width: 100%;
  height: auto;
  min-height: 200px; /* Ensure min size */
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-game-strategy-center-high-win-rate-slots__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-game-strategy-center-high-win-rate-slots__list {
  list-style: disc;
  text-align: left;
  margin: 20px auto 0;
  max-width: 800px;
  padding-left: 25px;
  color: var(--text-dark);
}

.page-game-strategy-center-high-win-rate-slots__list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-game-strategy-center-high-win-rate-slots__dark-bg .page-game-strategy-center-high-win-rate-slots__list li,
.page-game-strategy-center-high-win-rate-slots__dark-bg .page-game-strategy-center-high-win-rate-slots__list {
  color: var(--text-light);
}

.page-game-strategy-center-high-win-rate-slots__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-game-strategy-center-high-win-rate-slots__btn-primary,
.page-game-strategy-center-high-win-rate-slots__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-center-high-win-rate-slots__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-game-strategy-center-high-win-rate-slots__btn-primary:hover {
  background: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.page-game-strategy-center-high-win-rate-slots__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-game-strategy-center-high-win-rate-slots__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* FAQ Section */
.page-game-strategy-center-high-win-rate-slots__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-game-strategy-center-high-win-rate-slots__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

details.page-game-strategy-center-high-win-rate-slots__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

details.page-game-strategy-center-high-win-rate-slots__faq-item summary.page-game-strategy-center-high-win-rate-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-light);
}

details.page-game-strategy-center-high-win-rate-slots__faq-item summary.page-game-strategy-center-high-win-rate-slots__faq-question::-webkit-details-marker {
  display: none;
}

details.page-game-strategy-center-high-win-rate-slots__faq-item summary.page-game-strategy-center-high-win-rate-slots__faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-game-strategy-center-high-win-rate-slots__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-game-strategy-center-high-win-rate-slots__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-light);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-game-strategy-center-high-win-rate-slots__faq-item .page-game-strategy-center-high-win-rate-slots__faq-answer {
  padding: 0 20px 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-game-strategy-center-high-win-rate-slots__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-strategy-center-high-win-rate-slots__hero-content h1 {
    font-size: clamp(24px, 6vw, 40px);
  }

  .page-game-strategy-center-high-win-rate-slots__hero-content p {
    font-size: 16px;
  }

  .page-game-strategy-center-high-win-rate-slots__cta-button,
  .page-game-strategy-center-high-win-rate-slots__btn-primary,
  .page-game-strategy-center-high-win-rate-slots__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 15px; /* Adjust spacing for mobile buttons */
  }

  .page-game-strategy-center-high-win-rate-slots__button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-strategy-center-high-win-rate-slots__section {
    padding: 40px 15px;
  }

  .page-game-strategy-center-high-win-rate-slots__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-game-strategy-center-high-win-rate-slots__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-strategy-center-high-win-rate-slots__card {
    padding: 20px;
  }

  .page-game-strategy-center-high-win-rate-slots__card-title {
    font-size: 20px;
  }

  .page-game-strategy-center-high-win-rate-slots__list {
    padding-left: 20px;
    font-size: 15px;
  }

  details.page-game-strategy-center-high-win-rate-slots__faq-item summary.page-game-strategy-center-high-win-rate-slots__faq-question {
    padding: 15px;
  }
  .page-game-strategy-center-high-win-rate-slots__faq-qtext {
    font-size: 15px;
  }
  .page-game-strategy-center-high-win-rate-slots__faq-answer {
    padding: 0 15px 15px;
  }

  /* Ensure all images are responsive and do not overflow */
  .page-game-strategy-center-high-win-rate-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-game-strategy-center-high-win-rate-slots__section,
  .page-game-strategy-center-high-win-rate-slots__card,
  .page-game-strategy-center-high-win-rate-slots__container,
  .page-game-strategy-center-high-win-rate-slots__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}