/* style/blog-slot-machine-jackpot-tips.css */

/* Custom Colors */
:root {
  --nex88-primary-color: #11A84E;
  --nex88-secondary-color: #22C768;
  --nex88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --nex88-card-bg: #11271B;
  --nex88-background: #08160F;
  --nex88-text-main: #F2FFF6;
  --nex88-text-secondary: #A7D9B8;
  --nex88-border: #2E7A4E;
  --nex88-glow: #57E38D;
  --nex88-gold: #F2C14E;
  --nex88-divider: #1E3A2A;
  --nex88-deep-green: #0A4B2C;
}

.page-blog-slot-machine-jackpot-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--nex88-text-main); /* Default text color for the page */
  background-color: var(--nex88-background); /* Overall page background */
}

/* Hero Section */
.page-blog-slot-machine-jackpot-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-slot-machine-jackpot-tips__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-slot-machine-jackpot-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-slot-machine-jackpot-tips__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 30px 20px;
  z-index: 1;
  color: var(--nex88-text-main);
}

.page-blog-slot-machine-jackpot-tips__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: var(--nex88-gold);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-slot-machine-jackpot-tips__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--nex88-text-secondary);
}

/* General Section & Text Block */
.page-blog-slot-machine-jackpot-tips__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--nex88-divider);
}

.page-blog-slot-machine-jackpot-tips__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-slot-machine-jackpot-tips__text-block {
  margin-bottom: 30px;
}

.page-blog-slot-machine-jackpot-tips__section-title {
  font-size: 2.5em;
  color: var(--nex88-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-slot-machine-jackpot-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--nex88-gold);
  border-radius: 2px;
}

.page-blog-slot-machine-jackpot-tips__sub-title {
  font-size: 1.8em;
  color: var(--nex88-text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--nex88-primary-color);
  padding-left: 15px;
}

.page-blog-slot-machine-jackpot-tips p {
  margin-bottom: 15px;
  color: var(--nex88-text-secondary);
}

.page-blog-slot-machine-jackpot-tips strong {
  color: var(--nex88-text-main);
}

/* Images in Content */
.page-blog-slot-machine-jackpot-tips__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Buttons */
.page-blog-slot-machine-jackpot-tips__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--nex88-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-slot-machine-jackpot-tips__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--nex88-glow);
}

.page-blog-slot-machine-jackpot-tips__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 20px 0;
}

/* Dark Section Specifics */
.page-blog-slot-machine-jackpot-tips__dark-section {
  background-color: var(--nex88-deep-green);
  color: var(--nex88-text-secondary);
}

.page-blog-slot-machine-jackpot-tips__dark-section .page-blog-slot-machine-jackpot-tips__section-title {
  color: var(--nex88-gold);
}

.page-blog-slot-machine-jackpot-tips__dark-section .page-blog-slot-machine-jackpot-tips__sub-title {
  color: var(--nex88-text-main);
  border-left-color: var(--nex88-gold);
}

.page-blog-slot-machine-jackpot-tips__dark-section p {
  color: var(--nex88-text-secondary);
}

.page-blog-slot-machine-jackpot-tips__dark-section strong {
  color: var(--nex88-text-main);
}

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

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

.page-blog-slot-machine-jackpot-tips__faq-item {
  background-color: var(--nex88-background);
  border: 1px solid var(--nex88-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--nex88-text-main);
}

.page-blog-slot-machine-jackpot-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  color: var(--nex88-text-main);
  background-color: var(--nex88-deep-green);
  border-bottom: 1px solid var(--nex88-border);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-slot-machine-jackpot-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-slot-machine-jackpot-tips__faq-question:hover {
  background-color: var(--nex88-primary-color);
}

.page-blog-slot-machine-jackpot-tips__faq-qtext {
  flex-grow: 1;
}

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

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

.page-blog-slot-machine-jackpot-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--nex88-text-secondary);
  background-color: var(--nex88-background);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-slot-machine-jackpot-tips__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-blog-slot-machine-jackpot-tips__section-title {
    font-size: 2em;
  }

  .page-blog-slot-machine-jackpot-tips__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-slot-machine-jackpot-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-slot-machine-jackpot-tips__hero-section {
    padding-bottom: 20px;
  }

  .page-blog-slot-machine-jackpot-tips__hero-content {
    padding: 20px 15px;
  }

  .page-blog-slot-machine-jackpot-tips__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-slot-machine-jackpot-tips__description {
    font-size: 1em;
  }

  .page-blog-slot-machine-jackpot-tips__section,
  .page-blog-slot-machine-jackpot-tips__content-area,
  .page-blog-slot-machine-jackpot-tips__faq-section {
    padding: 30px 15px;
  }

  .page-blog-slot-machine-jackpot-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-slot-machine-jackpot-tips__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  /* Mobile responsive for images */
  .page-blog-slot-machine-jackpot-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset !important; /* Override min-width for mobile */
    min-height: unset !important; /* Override min-height for mobile */
  }

  .page-blog-slot-machine-jackpot-tips__section,
  .page-blog-slot-machine-jackpot-tips__card,
  .page-blog-slot-machine-jackpot-tips__container,
  .page-blog-slot-machine-jackpot-tips__faq-section,
  .page-blog-slot-machine-jackpot-tips__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-blog-slot-machine-jackpot-tips__btn-primary,
  .page-blog-slot-machine-jackpot-tips a[class*="button"],
  .page-blog-slot-machine-jackpot-tips 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;
    text-align: center;
  }

  .page-blog-slot-machine-jackpot-tips__cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-slot-machine-jackpot-tips__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-slot-machine-jackpot-tips__faq-answer {
    padding: 15px 20px;
  }
}