:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #121212;
    --bg-light: #f8f9fa;
    --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark bg */
    --card-bg-light: #ffffff;
    --border-color: rgba(255, 255, 255, 0.15); /* Light border for dark bg */
    --shadow-color: rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-strategy {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body bg */
    background-color: var(--bg-dark); /* Inherited from shared, but for safety */
    line-height: 1.6;
}

.page-slot-games-jackpot-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

/* --- Utility Classes for Contrast --- */
.page-slot-games-jackpot-strategy__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-slot-games-jackpot-strategy__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-slot-games-jackpot-strategy__text-block {
    margin-bottom: 20px;
    font-size: 16px;
}

.page-slot-games-jackpot-strategy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* --- Buttons --- */
.page-slot-games-jackpot-strategy__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 10px;
}

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

.page-slot-games-jackpot-strategy__btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-strategy__btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark); /* Ensure contrast on light yellow */
}

.page-slot-games-jackpot-strategy__btn-secondary:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Video Section --- */
.page-slot-games-jackpot-strategy__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: var(--bg-dark); /* Ensure background for video section */
}

.page-slot-games-jackpot-strategy__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-games-jackpot-strategy__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-jackpot-strategy__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.page-slot-games-jackpot-strategy__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.page-slot-games-jackpot-strategy__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event */
}

.page-slot-games-jackpot-strategy__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-slot-games-jackpot-strategy__video-link:hover .page-slot-games-jackpot-strategy__video-overlay {
  opacity: 1;
}

.page-slot-games-jackpot-strategy__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(0, 123, 255, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-slot-games-jackpot-strategy__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-slot-games-jackpot-strategy__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-slot-games-jackpot-strategy__play-now-button:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-strategy__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


/* --- Hero Section (H1 + CTA) --- */
.page-slot-games-jackpot-strategy__hero-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-dark); /* Ensure consistent dark background */
    color: var(--text-light);
}

.page-slot-games-jackpot-strategy__main-title {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-strategy__description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* --- Strategy Content Section --- */
.page-slot-games-jackpot-strategy__strategy-content {
    padding: 80px 20px;
    background-color: var(--bg-light); /* Light background for main content */
    color: var(--text-dark);
}

.page-slot-games-jackpot-strategy__strategy-content .page-slot-games-jackpot-strategy__section-title {
    color: var(--primary-color); /* Darker title for light background */
}

.page-slot-games-jackpot-strategy__sub-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-slot-games-jackpot-strategy__strategy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-slot-games-jackpot-strategy__strategy-content a:hover {
    color: #0056b3;
}

/* --- FAQ Section --- */
.page-slot-games-jackpot-strategy__faq-section {
    padding: 80px 20px;
    background-color: var(--bg-dark); /* Dark background */
    color: var(--text-light);
}

.page-slot-games-jackpot-strategy__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games-jackpot-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.page-slot-games-jackpot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg-dark); /* Slightly lighter background for question */
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-slot-games-jackpot-strategy__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-slot-games-jackpot-strategy__faq-question:active {
  background: rgba(255, 255, 255, 0.15);
}

.page-slot-games-jackpot-strategy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: var(--text-light);
}

.page-slot-games-jackpot-strategy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-slot-games-jackpot-strategy__faq-item.active .page-slot-games-jackpot-strategy__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Plus to X for active */
}

.page-slot-games-jackpot-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05); /* Even lighter background for answer on dark bg */
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

.page-slot-games-jackpot-strategy__faq-item.active .page-slot-games-jackpot-strategy__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-slot-games-jackpot-strategy__faq-answer p {
    margin: 0;
    color: #e0e0e0; /* Slightly off-white for body text in answer */
    font-size: 16px;
}

.page-slot-games-jackpot-strategy__faq-answer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-slot-games-jackpot-strategy__faq-answer a:hover {
    color: #e0a800;
}

/* --- Brand Section --- */
.page-slot-games-jackpot-strategy__brand-section {
    padding: 80px 20px;
    background-color: var(--bg-light); /* Light background */
    color: var(--text-dark);
}

.page-slot-games-jackpot-strategy__brand-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-slot-games-jackpot-strategy__brand-item {
    background: var(--card-bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.page-slot-games-jackpot-strategy__brand-item-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games-jackpot-strategy__brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-slot-games-jackpot-strategy__brand-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.page-slot-games-jackpot-strategy__brand-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
}

.page-slot-games-jackpot-strategy__list-highlight {
    color: var(--primary-color);
}

/* --- Blog Section --- */
.page-slot-games-jackpot-strategy__blog-section {
    padding: 80px 20px;
    background-color: var(--bg-dark); /* Dark background */
    color: var(--text-light);
}

.page-slot-games-jackpot-strategy__blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-jackpot-strategy__blog-item {
    background: var(--card-bg-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-jackpot-strategy__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.page-slot-games-jackpot-strategy__blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.page-slot-games-jackpot-strategy__blog-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-slot-games-jackpot-strategy__blog-content-wrapper {
    padding: 20px;
}

.page-slot-games-jackpot-strategy__blog-item-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-slot-games-jackpot-strategy__blog-item-excerpt {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-slot-games-jackpot-strategy__blog-item-date {
    font-size: 14px;
    color: #aaaaaa;
    display: block;
}

.page-slot-games-jackpot-strategy__view-all-button-container {
    text-align: center;
    margin-top: 50px;
}

.page-slot-games-jackpot-strategy__view-all-button {
    padding: 12px 30px;
    font-size: 16px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-strategy__main-title {
        font-size: 40px;
    }
    .page-slot-games-jackpot-strategy__description {
        font-size: 18px;
    }
    .page-slot-games-jackpot-strategy__section-title {
        font-size: 32px;
    }
    .page-slot-games-jackpot-strategy__sub-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-strategy__container {
        padding: 0 15px;
    }

    .page-slot-games-jackpot-strategy__video-section,
    .page-slot-games-jackpot-strategy__hero-section,
    .page-slot-games-jackpot-strategy__strategy-content,
    .page-slot-games-jackpot-strategy__faq-section,
    .page-slot-games-jackpot-strategy__brand-section,
    .page-slot-games-jackpot-strategy__blog-section {
        padding: 40px 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    .page-slot-games-jackpot-strategy__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-slot-games-jackpot-strategy__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-slot-games-jackpot-strategy__description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-slot-games-jackpot-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-slot-games-jackpot-strategy__cta-button,
    .page-slot-games-jackpot-strategy__play-now-button,
    .page-slot-games-jackpot-strategy__view-all-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 !important; /* Remove horizontal margin for full width */
        padding: 12px 25px !important;
        font-size: 16px !important;
    }

    .page-slot-games-jackpot-strategy__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-slot-games-jackpot-strategy__sub-title {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Images responsiveness */
    .page-slot-games-jackpot-strategy img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}