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

.page-jackpot-games-recommended-slots {
    background-color: var(--bg-color-main);
    color: var(--text-color-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-jackpot-games-recommended-slots h1, 
.page-jackpot-games-recommended-slots h2, 
.page-jackpot-games-recommended-slots h3, 
.page-jackpot-games-recommended-slots h4 {
    color: var(--text-color-main);
    font-weight: bold;
    line-height: 1.2;
}

.page-jackpot-games-recommended-slots h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.6);
}

.page-jackpot-games-recommended-slots h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-jackpot-games-recommended-slots h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--glow-color);
    border-radius: 2px;
}

.page-jackpot-games-recommended-slots h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
    color: var(--gold-color);
}

.page-jackpot-games-recommended-slots a {
    color: var(--glow-color);
    text-decoration: none;
}

.page-jackpot-games-recommended-slots a:hover {
    text-decoration: underline;
}

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

.page-jackpot-games-recommended-slots__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-jackpot-games-recommended-slots__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-jackpot-games-recommended-slots__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.page-jackpot-games-recommended-slots__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-jackpot-games-recommended-slots__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color-secondary);
}

.page-jackpot-games-recommended-slots__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-jackpot-games-recommended-slots__btn-primary,
.page-jackpot-games-recommended-slots__btn-secondary,
.page-jackpot-games-recommended-slots__btn-play,
.page-jackpot-games-recommended-slots__btn-step,
.page-jackpot-games-recommended-slots__btn-promo {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-jackpot-games-recommended-slots__btn-primary,
.page-jackpot-games-recommended-slots__btn-play,
.page-jackpot-games-recommended-slots__btn-step {
    background: var(--btn-gradient);
    color: var(--text-color-main);
    border: none;
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-jackpot-games-recommended-slots__btn-primary:hover,
.page-jackpot-games-recommended-slots__btn-play:hover,
.page-jackpot-games-recommended-slots__btn-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-jackpot-games-recommended-slots__btn-secondary,
.page-jackpot-games-recommended-slots__btn-promo {
    background: transparent;
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
}

.page-jackpot-games-recommended-slots__btn-secondary:hover,
.page-jackpot-games-recommended-slots__btn-promo:hover {
    background: var(--glow-color);
    color: var(--bg-color-main);
    transform: translateY(-3px);
}

.page-jackpot-games-recommended-slots__introduction-section,
.page-jackpot-games-recommended-slots__games-showcase,
.page-jackpot-games-recommended-slots__guide-section,
.page-jackpot-games-recommended-slots__tips-section,
.page-jackpot-games-recommended-slots__promotions-section,
.page-jackpot-games-recommended-slots__faq-section,
.page-jackpot-games-recommended-slots__conclusion-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-jackpot-games-recommended-slots__introduction-section:last-of-type,
.page-jackpot-games-recommended-slots__conclusion-section {
    border-bottom: none;
}

.page-jackpot-games-recommended-slots__text-block {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-jackpot-games-recommended-slots__text-block p {
    color: var(--text-color-secondary);
}

.page-jackpot-games-recommended-slots__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-color-secondary);
    font-size: 1.1rem;
}

.page-jackpot-games-recommended-slots__game-grid,
.page-jackpot-games-recommended-slots__steps-grid,
.page-jackpot-games-recommended-slots__tips-grid,
.page-jackpot-games-recommended-slots__promo-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.page-jackpot-games-recommended-slots__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-jackpot-games-recommended-slots__game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-games-recommended-slots__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-jackpot-games-recommended-slots__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--divider-color);
}

.page-jackpot-games-recommended-slots__game-title {
    font-size: 1.4rem;
    margin: 20px 15px 10px 15px;
    color: var(--gold-color);
}

.page-jackpot-games-recommended-slots__game-title a {
    color: inherit;
    text-decoration: none;
}

.page-jackpot-games-recommended-slots__game-title a:hover {
    text-decoration: underline;
}

.page-jackpot-games-recommended-slots__game-description {
    font-size: 0.95rem;
    color: var(--text-color-secondary);
    padding: 0 15px;
    flex-grow: 1;
}

.page-jackpot-games-recommended-slots__btn-play {
    margin: 20px auto;
    width: fit-content;
}

.page-jackpot-games-recommended-slots__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-jackpot-games-recommended-slots__step-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-jackpot-games-recommended-slots__step-title {
    color: var(--glow-color);
    margin-bottom: 15px;
}

.page-jackpot-games-recommended-slots__step-card p {
    color: var(--text-color-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-jackpot-games-recommended-slots__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-jackpot-games-recommended-slots__tip-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-jackpot-games-recommended-slots__tip-title {
    color: var(--gold-color);
}

.page-jackpot-games-recommended-slots__tip-item p {
    color: var(--text-color-secondary);
}

.page-jackpot-games-recommended-slots__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-jackpot-games-recommended-slots__promo-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-games-recommended-slots__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-jackpot-games-recommended-slots__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--divider-color);
}

.page-jackpot-games-recommended-slots__promo-title {
    font-size: 1.25rem;
    margin: 20px 15px 10px 15px;
    color: var(--glow-color);
}

.page-jackpot-games-recommended-slots__promo-title a {
    color: inherit;
    text-decoration: none;
}

.page-jackpot-games-recommended-slots__promo-title a:hover {
    text-decoration: underline;
}

.page-jackpot-games-recommended-slots__promo-card p {
    font-size: 0.95rem;
    color: var(--text-color-secondary);
    padding: 0 15px;
    flex-grow: 1;
}

.page-jackpot-games-recommended-slots__btn-promo {
    margin: 20px auto;
    width: fit-content;
}

.page-jackpot-games-recommended-slots__faq-list {
    margin-top: 40px;
}

.page-jackpot-games-recommended-slots__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-jackpot-games-recommended-slots__faq-item[open] {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-jackpot-games-recommended-slots__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
    list-style: none;
}

.page-jackpot-games-recommended-slots__faq-item[open] > .page-jackpot-games-recommended-slots__faq-question {
    border-bottom: 1px solid var(--border-color);
}

.page-jackpot-games-recommended-slots__faq-question::-webkit-details-marker {
    display: none;
}

.page-jackpot-games-recommended-slots__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--glow-color);
}

.page-jackpot-games-recommended-slots__faq-item[open] .page-jackpot-games-recommended-slots__faq-toggle {
    transform: rotate(45deg);
}

.page-jackpot-games-recommended-slots__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-color-secondary);
    background-color: var(--card-bg);
}

.page-jackpot-games-recommended-slots__faq-answer p {
    margin-bottom: 0;
}

.page-jackpot-games-recommended-slots__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-jackpot-games-recommended-slots__hero-content {
        max-width: 700px;
    }
    .page-jackpot-games-recommended-slots__game-grid,
    .page-jackpot-games-recommended-slots__steps-grid,
    .page-jackpot-games-recommended-slots__tips-grid,
    .page-jackpot-games-recommended-slots__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-jackpot-games-recommended-slots h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .page-jackpot-games-recommended-slots h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-jackpot-games-recommended-slots h3 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .page-jackpot-games-recommended-slots__hero-section {
        padding-bottom: 40px;
    }
    .page-jackpot-games-recommended-slots__hero-content {
        padding: 15px;
    }
    .page-jackpot-games-recommended-slots__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-jackpot-games-recommended-slots__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-jackpot-games-recommended-slots__btn-primary,
    .page-jackpot-games-recommended-slots__btn-secondary,
    .page-jackpot-games-recommended-slots__btn-play,
    .page-jackpot-games-recommended-slots__btn-step,
    .page-jackpot-games-recommended-slots__btn-promo {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-jackpot-games-recommended-slots__introduction-section,
    .page-jackpot-games-recommended-slots__games-showcase,
    .page-jackpot-games-recommended-slots__guide-section,
    .page-jackpot-games-recommended-slots__tips-section,
    .page-jackpot-games-recommended-slots__promotions-section,
    .page-jackpot-games-recommended-slots__faq-section,
    .page-jackpot-games-recommended-slots__conclusion-section {
        padding: 40px 0;
    }

    .page-jackpot-games-recommended-slots__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-jackpot-games-recommended-slots__text-block {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-jackpot-games-recommended-slots__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-jackpot-games-recommended-slots__game-grid,
    .page-jackpot-games-recommended-slots__steps-grid,
    .page-jackpot-games-recommended-slots__tips-grid,
    .page-jackpot-games-recommended-slots__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-jackpot-games-recommended-slots__game-image,
    .page-jackpot-games-recommended-slots__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-jackpot-games-recommended-slots img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-jackpot-games-recommended-slots__game-card,
    .page-jackpot-games-recommended-slots__step-card,
    .page-jackpot-games-recommended-slots__tip-item,
    .page-jackpot-games-recommended-slots__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-jackpot-games-recommended-slots__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-jackpot-games-recommended-slots__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .page-jackpot-games-recommended-slots__faq-toggle {
        font-size: 1.5rem;
    }
}