/* style/blog-jackpot-game-tips-suncity88.css */

/* Global styles for this page content, adhering to body background color */
.page-blog-jackpot-game-tips-suncity88 {
  background-color: var(--background-color, #08160F); /* Fallback if shared.css doesn't define --background-color */
  color: var(--text-main-color, #F2FFF6); /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 18px; /* Base font size for readability */
}

/* Ensure headings have good contrast */
.page-blog-jackpot-game-tips-suncity88 h1,
.page-blog-jackpot-game-tips-suncity88 h2,
.page-blog-jackpot-game-tips-suncity88 h3 {
  color: var(--text-main-color, #F2FFF6); /* Headings should be light on dark background */
  margin-bottom: 1em;
  line-height: 1.2;
}

.page-blog-jackpot-game-tips-suncity88 h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: bold;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-jackpot-game-tips-suncity88 h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-top: 2em;
  text-align: center;
}

.page-blog-jackpot-game-tips-suncity88 h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 1.5em;
}

.page-blog-jackpot-game-tips-suncity88 p {
  margin-bottom: 1em;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-jackpot-game-tips-suncity88 a {
  color: var(--accent-color, #22C768); /* Links in content */
  text-decoration: none;
}

.page-blog-jackpot-game-tips-suncity88 a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-blog-jackpot-game-tips-suncity88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: var(--background-color, #08160F);
}

.page-blog-jackpot-game-tips-suncity88__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-jackpot-game-tips-suncity88__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-jackpot-game-tips-suncity88__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-jackpot-game-tips-suncity88__description {
  font-size: 1.2em;
  margin-bottom: 2em;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Call to Action Buttons */
.page-blog-jackpot-game-tips-suncity88__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%; /* Ensure container fills width for responsive behavior */
  max-width: 600px; /* Limit button group width */
  box-sizing: border-box;
}

.page-blog-jackpot-game-tips-suncity88__btn-primary,
.page-blog-jackpot-game-tips-suncity88__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping on desktop */
  box-sizing: border-box;
  text-align: center;
}

.page-blog-jackpot-game-tips-suncity88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-blog-jackpot-game-tips-suncity88__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-jackpot-game-tips-suncity88__btn-secondary {
  background: transparent;
  color: var(--gold-color, #F2C14E); /* Gold text for secondary button */
  border: 2px solid var(--gold-color, #F2C14E);
}

.page-blog-jackpot-game-tips-suncity88__btn-secondary:hover {
  background: var(--gold-color, #F2C14E);
  color: #08160F; /* Dark text on gold hover */
  transform: translateY(-2px);
}

.page-blog-jackpot-game-tips-suncity88__btn-large {
  padding: 18px 35px;
  font-size: 1.3em;
}

/* Content Area */
.page-blog-jackpot-game-tips-suncity88__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color, #08160F); /* Ensure consistent background */
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-jackpot-game-tips-suncity88__dark-bg {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

/* Images within content */
.page-blog-jackpot-game-tips-suncity88__image-in-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 2em 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px;
}

/* Video Section */
.page-blog-jackpot-game-tips-suncity88__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Limit video width */
  margin: 40px auto;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  box-sizing: border-box; /* Crucial for responsive behavior */
}

.page-blog-jackpot-game-tips-suncity88__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer; /* Indicate clickable */
}

.page-blog-jackpot-game-tips-suncity88__video-caption {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  color: var(--text-secondary-color, #A7D9B8);
}


/* FAQ Section */
.page-blog-jackpot-game-tips-suncity88__faq-list {
  margin-top: 40px;
  background-color: var(--card-bg-color, #11271B); /* Card BG color for FAQ list */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-jackpot-game-tips-suncity88__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--divider-color, #1E3A2A); /* Border color */
  padding-bottom: 15px;
}

.page-blog-jackpot-game-tips-suncity88__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-blog-jackpot-game-tips-suncity88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  padding: 10px 0;
  list-style: none; /* For details/summary */
}

.page-blog-jackpot-game-tips-suncity88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-jackpot-game-tips-suncity88__faq-qtext {
  flex-grow: 1;
}

.page-blog-jackpot-game-tips-suncity88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--gold-color, #F2C14E); /* Gold for toggle icon */
}

.page-blog-jackpot-game-tips-suncity88__faq-answer {
  padding-top: 10px;
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 0.95em;
}

/* CTA Section at bottom */
.page-blog-jackpot-game-tips-suncity88__cta-section {
  text-align: center;
  background-color: var(--card-bg-color, #11271B); /* Use card background for CTA */
  padding: 50px 20px;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-jackpot-game-tips-suncity88__cta-title {
  color: var(--glow-color, #57E38D); /* Glow color for CTA title */
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 0.8em;
}

.page-blog-jackpot-game-tips-suncity88__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-jackpot-game-tips-suncity88__hero-content {
    padding: 0 40px;
  }
  .page-blog-jackpot-game-tips-suncity88__content-area {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-jackpot-game-tips-suncity88 {
    font-size: 16px; /* Mobile base font size */
  }

  .page-blog-jackpot-game-tips-suncity88 h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-jackpot-game-tips-suncity88 h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .page-blog-jackpot-game-tips-suncity88 h3 {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }

  .page-blog-jackpot-game-tips-suncity88__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-jackpot-game-tips-suncity88__hero-content {
    padding: 0 15px;
  }

  .page-blog-jackpot-game-tips-suncity88__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important; /* Force full width for button container */
    width: 100% !important;
  }

  .page-blog-jackpot-game-tips-suncity88__btn-primary,
  .page-blog-jackpot-game-tips-suncity88__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important; /* Allow text wrap */
    word-wrap: break-word !important;
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-jackpot-game-tips-suncity88__btn-large {
    font-size: 1.1em;
    padding: 18px 25px;
  }

  .page-blog-jackpot-game-tips-suncity88__content-area {
    padding: 30px 15px;
  }

  /* Mobile image and video responsive */
  .page-blog-jackpot-game-tips-suncity88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-jackpot-game-tips-suncity88__section,
  .page-blog-jackpot-game-tips-suncity88__card,
  .page-blog-jackpot-game-tips-suncity88__container,
  .page-blog-jackpot-game-tips-suncity88__cta-section,
  .page-blog-jackpot-game-tips-suncity88__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-jackpot-game-tips-suncity88__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin: 30px auto;
    overflow: hidden !important;
  }

  .page-blog-jackpot-game-tips-suncity88 video,
  .page-blog-jackpot-game-tips-suncity88__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video section top padding, not var(--header-offset) */
  .page-blog-jackpot-game-tips-suncity88__video-section {
    padding-top: 10px !important;
  }

  .page-blog-jackpot-game-tips-suncity88__cta-section {
    padding: 40px 15px;
  }
}