/* style/jackpot-stories-strategy-win.css */
.page-jackpot-stories-strategy-win {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-jackpot-stories-strategy-win__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-jackpot-stories-strategy-win__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-jackpot-stories-strategy-win__hero-content {
    z-index: 1;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-jackpot-stories-strategy-win__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jackpot-stories-strategy-win__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-jackpot-stories-strategy-win__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-jackpot-stories-strategy-win__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-jackpot-stories-strategy-win__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-jackpot-stories-strategy-win__section:nth-of-type(even) {
    background-color: #f0f4f8;
}

.page-jackpot-stories-strategy-win__section-title {
    font-size: 2.5em;
    color: #000080;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-jackpot-stories-strategy-win__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-jackpot-stories-strategy-win__intro p,
.page-jackpot-stories-strategy-win__responsibility p,
.page-jackpot-stories-strategy-win__cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-jackpot-stories-strategy-win__intro strong {
    color: #000080;
}

.page-jackpot-stories-strategy-win__story-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-jackpot-stories-strategy-win__story-card:nth-child(odd) {
    background-color: #e6f2ff; /* Lighter blue tint */
}

.page-jackpot-stories-strategy-win__story-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-jackpot-stories-strategy-win__story-title {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 15px;
}

.page-jackpot-stories-strategy-win__story-card p {
    font-size: 1.05em;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

.page-jackpot-stories-strategy-win__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-jackpot-stories-strategy-win__strategy-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-stories-strategy-win__strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-jackpot-stories-strategy-win__strategy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-jackpot-stories-strategy-win__strategy-heading {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 15px;
}

.page-jackpot-stories-strategy-win__strategy-item p {
    color: #666;
    font-size: 1em;
    text-align: justify;
}

.page-jackpot-stories-strategy-win__strategy-item ul {
    list-style: disc inside;
    text-align: left;
    color: #666;
    margin-left: 20px;
    margin-top: 10px;
}

.page-jackpot-stories-strategy-win__strategy-item ul li {
    margin-bottom: 5px;
}

.page-jackpot-stories-strategy-win__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-jackpot-stories-strategy-win__promo-card {
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-jackpot-stories-strategy-win__promo-card:hover {
    transform: translateY(-3px);
}

.page-jackpot-stories-strategy-win__promo-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 128, 0.3));
}

.page-jackpot-stories-strategy-win__promo-title {
    font-size: 1.4em;
    color: #000080;
    margin-bottom: 10px;
}

.page-jackpot-stories-strategy-win__promo-card p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-jackpot-stories-strategy-win__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: #000080;
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-jackpot-stories-strategy-win__app-text {
    flex: 1;
    min-width: 300px;
}

.page-jackpot-stories-strategy-win__app-text .page-jackpot-stories-strategy-win__section-title {
    color: #FFD700;
    text-align: left;
    margin-bottom: 20px;
}

.page-jackpot-stories-strategy-win__app-text .page-jackpot-stories-strategy-win__section-title::after {
    background-color: #fff;
    left: 0;
    transform: translateX(0);
}

.page-jackpot-stories-strategy-win__app-text p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
}

.page-jackpot-stories-strategy-win__app-image-wrapper {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-jackpot-stories-strategy-win__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-jackpot-stories-strategy-win__responsibility ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-jackpot-stories-strategy-win__responsibility ul li {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #444;
    text-align: justify;
}

.page-jackpot-stories-strategy-win__responsibility ul li strong {
    color: #000080;
}

.page-jackpot-stories-strategy-win__cta {
    background-color: #000080;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-jackpot-stories-strategy-win__cta .page-jackpot-stories-strategy-win__section-title {
    color: #FFD700;
}

.page-jackpot-stories-strategy-win__cta .page-jackpot-stories-strategy-win__section-title::after {
    background-color: #fff;
}

.page-jackpot-stories-strategy-win__cta p {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-jackpot-stories-strategy-win__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-jackpot-stories-strategy-win__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-jackpot-stories-strategy-win__btn--primary {
    background-color: #FFD700;
    color: #000080;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-jackpot-stories-strategy-win__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-jackpot-stories-strategy-win__btn--secondary {
    background-color: #000080;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 128, 0.4);
}

.page-jackpot-stories-strategy-win__btn--secondary:hover {
    background-color: #000066;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 128, 0.6);
}

.page-jackpot-stories-strategy-win__btn--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-jackpot-stories-strategy-win__btn--tertiary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-jackpot-stories-strategy-win__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-jackpot-stories-strategy-win__hero-title {
        font-size: 2.8em;
    }
    .page-jackpot-stories-strategy-win__hero-subtitle {
        font-size: 1.3em;
    }
    .page-jackpot-stories-strategy-win__section-title {
        font-size: 2em;
    }
    .page-jackpot-stories-strategy-win__story-card {
        flex-direction: column;
    }
    .page-jackpot-stories-strategy-win__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-jackpot-stories-strategy-win__app-text .page-jackpot-stories-strategy-win__section-title {
        text-align: center;
    }
    .page-jackpot-stories-strategy-win__app-text .page-jackpot-stories-strategy-win__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-jackpot-stories-strategy-win__hero {
        padding: 60px 0;
    }
    .page-jackpot-stories-strategy-win__hero-title {
        font-size: 2.2em;
    }
    .page-jackpot-stories-strategy-win__hero-subtitle {
        font-size: 1.1em;
    }
    .page-jackpot-stories-strategy-win__section {
        padding: 40px 0;
    }
    .page-jackpot-stories-strategy-win__section-title {
        font-size: 1.8em;
    }
    .page-jackpot-stories-strategy-win__story-title {
        font-size: 1.5em;
    }
    .page-jackpot-stories-strategy-win__strategy-grid,
    .page-jackpot-stories-strategy-win__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-jackpot-stories-strategy-win__cta p {
        font-size: 1em;
    }
    .page-jackpot-stories-strategy-win__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-jackpot-stories-strategy-win__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-jackpot-stories-strategy-win__app-content {
        padding: 30px;
    }
    .page-jackpot-stories-strategy-win__responsibility ul {
        grid-template-columns: 1fr;
    }
}