/* style/jackpot-games-strategy.css */
:root {
    --page-jackpot-games-strategy-text-main: #F2FFF6;
    --page-jackpot-games-strategy-text-secondary: #A7D9B8;
    --page-jackpot-games-strategy-card-bg: #11271B;
    --page-jackpot-games-strategy-background: #08160F;
    --page-jackpot-games-strategy-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-jackpot-games-strategy-glow: #57E38D;
    --page-jackpot-games-strategy-gold: #F2C14E;
    --page-jackpot-games-strategy-divider: #1E3A2A;
    --page-jackpot-games-strategy-deep-green: #0A4B2C;
    --page-jackpot-games-strategy-border: #2E7A4E;
}

.page-jackpot-games-strategy {
    font-family: 'Arial', sans-serif;
    color: var(--page-jackpot-games-strategy-text-main);
    background-color: var(--page-jackpot-games-strategy-background);
}

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

.page-jackpot-games-strategy__section-title {
    font-size: 2.5em;
    color: var(--page-jackpot-games-strategy-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-jackpot-games-strategy__sub-title {
    font-size: 1.5em;
    color: var(--page-jackpot-games-strategy-text-main);
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-jackpot-games-strategy__text-block,
.page-jackpot-games-strategy__card-text,
.page-jackpot-games-strategy__benefit-text,
.page-jackpot-games-strategy p,
.page-jackpot-games-strategy li {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--page-jackpot-games-strategy-text-secondary);
    margin-bottom: 15px;
}

.page-jackpot-games-strategy__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-jackpot-games-strategy__nested-list {
    list-style: circle;
    padding-left: 20px;
    margin-top: 5px;
}

.page-jackpot-games-strategy__list-item,
.page-jackpot-games-strategy__nested-list-item {
    margin-bottom: 8px;
}

.page-jackpot-games-strategy__btn-primary,
.page-jackpot-games-strategy__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-jackpot-games-strategy__btn-primary {
    background: var(--page-jackpot-games-strategy-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-jackpot-games-strategy__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--page-jackpot-games-strategy-glow), 0.4);
}

.page-jackpot-games-strategy__btn-secondary {
    background: transparent;
    color: var(--page-jackpot-games-strategy-gold);
    border: 2px solid var(--page-jackpot-games-strategy-gold);
}

.page-jackpot-games-strategy__btn-secondary:hover {
    background: var(--page-jackpot-games-strategy-gold);
    color: var(--page-jackpot-games-strategy-background);
    box-shadow: 0 5px 15px rgba(var(--page-jackpot-games-strategy-gold), 0.4);
}

/* Hero Section */
.page-jackpot-games-strategy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    background-color: var(--page-jackpot-games-strategy-background);
}

.page-jackpot-games-strategy__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

.page-jackpot-games-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-jackpot-games-strategy__hero-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Adjust to place content below image but slightly overlap for visual flow */
    background-color: var(--page-jackpot-games-strategy-card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.page-jackpot-games-strategy__main-title {
    font-size: 3em;
    color: var(--page-jackpot-games-strategy-gold);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-jackpot-games-strategy__hero-description {
    font-size: 1.2em;
    color: var(--page-jackpot-games-strategy-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Sections */
.page-jackpot-games-strategy__introduction-section,
.page-jackpot-games-strategy__strategies-section,
.page-jackpot-games-strategy__faq-section {
    padding: 60px 0;
    background-color: var(--page-jackpot-games-strategy-background);
}

.page-jackpot-games-strategy__mechanics-section,
.page-jackpot-games-strategy__advanced-tips-section,
.page-jackpot-games-strategy__conclusion-section {
    padding: 60px 0;
    background-color: var(--page-jackpot-games-strategy-deep-green);
}

.page-jackpot-games-strategy__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-jackpot-games-strategy__image-text-block:nth-child(even) {
    flex-direction: row-reverse;
}

.page-jackpot-games-strategy__image-text-block img {
    flex: 1;
    min-width: 400px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
    max-width: 100%;
    height: auto;
}

.page-jackpot-games-strategy__text-content {
    flex: 1.5;
}

.page-jackpot-games-strategy__strategy-card {
    background-color: var(--page-jackpot-games-strategy-card-bg);
    border: 1px solid var(--page-jackpot-games-strategy-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-jackpot-games-strategy__card-title {
    font-size: 1.8em;
    color: var(--page-jackpot-games-strategy-gold);
    margin-bottom: 15px;
}

.page-jackpot-games-strategy__card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
    display: block;
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-jackpot-games-strategy__btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-jackpot-games-strategy__list--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding-left: 0;
}

.page-jackpot-games-strategy__list--columns .page-jackpot-games-strategy__list-item {
    background-color: var(--page-jackpot-games-strategy-card-bg);
    border: 1px solid var(--page-jackpot-games-strategy-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-jackpot-games-strategy__list--columns .page-jackpot-games-strategy__list-item h3 {
    color: var(--page-jackpot-games-strategy-gold);
}

.page-jackpot-games-strategy__platform-benefits-section {
    padding: 60px 0;
    background-color: var(--page-jackpot-games-strategy-background);
}

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

.page-jackpot-games-strategy__benefit-card {
    background-color: var(--page-jackpot-games-strategy-card-bg);
    border: 1px solid var(--page-jackpot-games-strategy-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-jackpot-games-strategy__benefit-icon {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-jackpot-games-strategy__benefit-title {
    font-size: 1.4em;
    color: var(--page-jackpot-games-strategy-gold);
    margin-bottom: 10px;
}

.page-jackpot-games-strategy__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--page-jackpot-games-strategy-deep-green);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-jackpot-games-strategy__cta-text {
    font-size: 1.5em;
    color: var(--page-jackpot-games-strategy-text-main);
    margin-bottom: 30px;
    font-weight: bold;
}

/* FAQ Section */
.page-jackpot-games-strategy__faq-list {
    margin-top: 40px;
}

.page-jackpot-games-strategy__faq-item {
    background-color: var(--page-jackpot-games-strategy-card-bg);
    border: 1px solid var(--page-jackpot-games-strategy-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.page-jackpot-games-strategy__faq-question:hover {
    background-color: var(--page-jackpot-games-strategy-border);
}

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

.page-jackpot-games-strategy__faq-question::marker {
    display: none;
}

.page-jackpot-games-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-jackpot-games-strategy__faq-answer {
    padding: 20px 25px;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--page-jackpot-games-strategy-text-secondary);
}

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

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

.page-jackpot-games-strategy__faq-answer a:hover {
    color: var(--page-jackpot-games-strategy-glow);
}

/* Conclusion Section */
.page-jackpot-games-strategy__conclusion-section {
    text-align: center;
    padding: 80px 0;
}

.page-jackpot-games-strategy__text-center {
    text-align: center;
}

/* Image responsiveness */
.page-jackpot-games-strategy img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .page-jackpot-games-strategy__main-title {
        font-size: 2.5em;
    }
    .page-jackpot-games-strategy__section-title {
        font-size: 2em;
    }
    .page-jackpot-games-strategy__image-text-block {
        flex-direction: column;
    }
    .page-jackpot-games-strategy__image-text-block:nth-child(even) {
        flex-direction: column;
    }
    .page-jackpot-games-strategy__image-text-block img {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-jackpot-games-strategy {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-jackpot-games-strategy__hero-content {
        margin-top: -50px;
        padding: 20px;
    }
    .page-jackpot-games-strategy__main-title {
        font-size: 2em;
    }
    .page-jackpot-games-strategy__section-title {
        font-size: 1.8em;
    }
    .page-jackpot-games-strategy__hero-description {
        font-size: 1em;
    }
    .page-jackpot-games-strategy__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-jackpot-games-strategy__btn-primary,
    .page-jackpot-games-strategy__btn-secondary {
        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;
    }
    .page-jackpot-games-strategy__cta-buttons,
    .page-jackpot-games-strategy__button-group,
    .page-jackpot-games-strategy__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-jackpot-games-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-jackpot-games-strategy__section,
    .page-jackpot-games-strategy__card,
    .page-jackpot-games-strategy__container,
    .page-jackpot-games-strategy__image-text-block img,
    .page-jackpot-games-strategy__benefit-icon {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-jackpot-games-strategy__hero-section {
        padding-top: 10px !important;
    }
    .page-jackpot-games-strategy__video-section {
        padding-top: 10px !important;
    }
    .page-jackpot-games-strategy__content-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-jackpot-games-strategy__card-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-jackpot-games-strategy__list--columns {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .page-jackpot-games-strategy__benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .page-jackpot-games-strategy__faq-item {
        margin: 0 15px 15px 15px;
    }
    .page-jackpot-games-strategy__cta-section {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-jackpot-games-strategy__main-title {
        font-size: 1.8em;
    }
    .page-jackpot-games-strategy__section-title {
        font-size: 1.6em;
    }
    .page-jackpot-games-strategy__sub-title {
        font-size: 1.3em;
    }
    .page-jackpot-games-strategy__hero-content {
        padding: 15px;
    }
    .page-jackpot-games-strategy__hero-description {
        font-size: 0.9em;
    }
    .page-jackpot-games-strategy__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-jackpot-games-strategy__faq-answer {
        font-size: 1em;
        padding: 15px 20px;
    }
}