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

/* Base styles for the page content, ensuring text color contrast with body background */
.page-slot-games-progressive-jackpots {
    background-color: var(--background-color); /* Inherits from body, but explicitly set for clarity */
    color: var(--text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-slot-games-progressive-jackpots__section-title {
    font-size: clamp(2em, 2.5vw, 3em);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-slot-games-progressive-jackpots__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-main);
}

.page-slot-games-progressive-jackpots__light-text {
    color: var(--text-main) !important;
}

.page-slot-games-progressive-jackpots__text-secondary {
    color: var(--text-secondary) !important;
}

/* Hero Section */
.page-slot-games-progressive-jackpots__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden;
}

.page-slot-games-progressive-jackpots__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.page-slot-games-progressive-jackpots__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games-progressive-jackpots__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-slot-games-progressive-jackpots__hero-title {
    font-size: clamp(2.5em, 4vw, 3.8em); /* H1 font size controlled by clamp */
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.page-slot-games-progressive-jackpots__hero-description {
    font-size: 1.3em;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-progressive-jackpots__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-slot-games-progressive-jackpots__btn-primary,
.page-slot-games-progressive-jackpots__btn-secondary,
.page-slot-games-progressive-jackpots__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
    white-space: normal; /* Allow button text to wrap */
    word-wrap: break-word;
}

.page-slot-games-progressive-jackpots__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-progressive-jackpots__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-slot-games-progressive-jackpots__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-slot-games-progressive-jackpots__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Intro Section */
.page-slot-games-progressive-jackpots__intro-section {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-main);
}

/* Game Highlights Section */
.page-slot-games-progressive-jackpots__game-highlights {
    padding: 60px 0;
    background-color: var(--card-bg);
}

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

.page-slot-games-progressive-jackpots__game-card {
    background-color: var(--deep-green);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games-progressive-jackpots__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
}

.page-slot-games-progressive-jackpots__card-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin: 10px 15px;
    font-weight: 700;
}

.page-slot-games-progressive-jackpots__card-description {
    font-size: 0.95em;
    color: var(--text-secondary);
    margin: 0 15px 20px;
    flex-grow: 1;
}

.page-slot-games-progressive-jackpots__card-btn {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    margin: 0 auto;
    padding: 10px 20px;
    min-width: 120px;
}

.page-slot-games-progressive-jackpots__card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

.page-slot-games-progressive-jackpots__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Why Choose Us Section */
.page-slot-games-progressive-jackpots__why-choose-us {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-main);
}

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

.page-slot-games-progressive-jackpots__feature-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games-progressive-jackpots__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    /* No filter allowed */
}

.page-slot-games-progressive-jackpots__feature-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-slot-games-progressive-jackpots__feature-description {
    font-size: 0.95em;
    color: var(--text-secondary);
}

/* Tips Section */
.page-slot-games-progressive-jackpots__tips-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

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

.page-slot-games-progressive-jackpots__tip-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-slot-games-progressive-jackpots__tip-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 700;
}

/* FAQ Section */
.page-slot-games-progressive-jackpots__faq-section {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-main);
}

.page-slot-games-progressive-jackpots__faq-list {
    margin-top: 40px;
}

.page-slot-games-progressive-jackpots__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games-progressive-jackpots__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main);
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
}

.page-slot-games-progressive-jackpots__faq-item[open] > .page-slot-games-progressive-jackpots__faq-question {
    background-color: var(--primary-color);
    color: #ffffff;
    border-bottom: 1px solid var(--primary-color);
}

.page-slot-games-progressive-jackpots__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-games-progressive-jackpots__faq-question::marker {
    display: none;
}

.page-slot-games-progressive-jackpots__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-slot-games-progressive-jackpots__faq-item[open] .page-slot-games-progressive-jackpots__faq-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

.page-slot-games-progressive-jackpots__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-secondary);
    background-color: var(--card-bg);
}

/* Final CTA Section */
.page-slot-games-progressive-jackpots__cta-final {
    padding: 80px 0;
    background-color: var(--deep-green);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-progressive-jackpots__hero-title {
        font-size: clamp(2em, 3.5vw, 3.5em);
    }
    .page-slot-games-progressive-jackpots__hero-description {
        font-size: 1.15em;
    }
}