/* style/game-guides-slot-jackpot-tips.css */

:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-bg: #FFFFFF;
  --background-page: #F4F7FB;
  --text-main: #1F2D3D;
  --text-black: #000000;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
}

.page-game-guides-slot-jackpot-tips {
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-game-guides-slot-jackpot-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body đã có padding-top, đây chỉ là khoảng cách nhỏ */
  background-color: var(--primary-color);
  overflow: hidden;
}

.page-game-guides-slot-jackpot-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-game-guides-slot-jackpot-tips__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  text-align: center;
  color: #ffffff;
  z-index: 10;
}

.page-game-guides-slot-jackpot-tips__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-slot-jackpot-tips__hero-description {
  font-size: clamp(1em, 1.5vw, 1.25em);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-guides-slot-jackpot-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-guides-slot-jackpot-tips__btn-primary,
.page-game-guides-slot-jackpot-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-game-guides-slot-jackpot-tips__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid var(--primary-color);
}

.page-game-guides-slot-jackpot-tips__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slot-jackpot-tips__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-game-guides-slot-jackpot-tips__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Content Area */
.page-game-guides-slot-jackpot-tips__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-page);
  box-sizing: border-box;
}

.page-game-guides-slot-jackpot-tips__section-title {
  font-size: 2.5em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-game-guides-slot-jackpot-tips__content-area p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--text-main);
}

.page-game-guides-slot-jackpot-tips__content-area ul {
  margin-bottom: 20px;
  padding-left: 30px;
  color: var(--text-main);
}

.page-game-guides-slot-jackpot-tips__content-area li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-main);
}

.page-game-guides-slot-jackpot-tips__content-area a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.page-game-guides-slot-jackpot-tips__content-area a:hover {
  text-decoration: underline;
}

/* Strategy Items */
.page-game-guides-slot-jackpot-tips__strategy-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.page-game-guides-slot-jackpot-tips__strategy-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-game-guides-slot-jackpot-tips__strategy-image,
.page-game-guides-slot-jackpot-tips__why-go9-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  object-fit: cover;
}

/* FAQ Section */
.page-game-guides-slot-jackpot-tips__faq-section {
  background-color: var(--card-bg);
  padding: 60px 20px;
}

.page-game-guides-slot-jackpot-tips__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-game-guides-slot-jackpot-tips__faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-slot-jackpot-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: #f8faff;
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-game-guides-slot-jackpot-tips__faq-question:hover {
  background-color: #e6f0ff;
}

.page-game-guides-slot-jackpot-tips__faq-question::-webkit-details-marker, 
.page-game-guides-slot-jackpot-tips__faq-question::marker {
  display: none;
}

.page-game-guides-slot-jackpot-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

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

.page-game-guides-slot-jackpot-tips__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1.05em;
  color: var(--text-main);
  border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides-slot-jackpot-tips__hero-content {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-game-guides-slot-jackpot-tips__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-game-guides-slot-jackpot-tips__hero-content {
    width: 95%;
    padding: 15px;
  }

  .page-game-guides-slot-jackpot-tips__main-title {
    font-size: 2em !important;
    margin-bottom: 15px;
  }

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

  .page-game-guides-slot-jackpot-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-game-guides-slot-jackpot-tips__btn-primary,
  .page-game-guides-slot-jackpot-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-game-guides-slot-jackpot-tips__content-area,
  .page-game-guides-slot-jackpot-tips__faq-section {
    padding: 40px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-game-guides-slot-jackpot-tips__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-game-guides-slot-jackpot-tips__content-area p,
  .page-game-guides-slot-jackpot-tips__content-area li {
    font-size: 1em;
  }

  .page-game-guides-slot-jackpot-tips__strategy-item {
    padding: 25px;
    margin-bottom: 30px;
  }

  .page-game-guides-slot-jackpot-tips__strategy-title {
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .page-game-guides-slot-jackpot-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-guides-slot-jackpot-tips__video-section,
  .page-game-guides-slot-jackpot-tips__video-container,
  .page-game-guides-slot-jackpot-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-game-guides-slot-jackpot-tips__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-game-guides-slot-jackpot-tips__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-game-guides-slot-jackpot-tips__main-title {
    font-size: 1.8em !important;
  }

  .page-game-guides-slot-jackpot-tips__section-title {
    font-size: 1.8em;
  }
}