/* style/jackpot-stories-player-comeback.css */

/* General Styles for page-jackpot-stories-player-comeback */
.page-jackpot-stories-player-comeback {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

.page-jackpot-stories-player-comeback__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-jackpot-stories-player-comeback__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-jackpot-stories-player-comeback__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-jackpot-stories-player-comeback__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-jackpot-stories-player-comeback__btn--secondary {
    background-color: #000080; /* Dark Blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 128, 0.4);
}

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

.page-jackpot-stories-player-comeback__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    min-width: 280px;
}

/* Hero Section */
.page-jackpot-stories-player-comeback__hero-section {
    background: linear-gradient(135deg, #000080, #000066);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-jackpot-stories-player-comeback__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jackpot-stories-player-comeback__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Intro Section */
.page-jackpot-stories-player-comeback__intro-section {
    padding: 80px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

/* Story Grid Section */
.page-jackpot-stories-player-comeback__story-grid {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-jackpot-stories-player-comeback__story-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-stories-player-comeback__story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-jackpot-stories-player-comeback__story-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.page-jackpot-stories-player-comeback__story-title {
    font-size: 1.8em;
    color: #000080; /* Dark Blue */
    margin-bottom: 15px;
}

.page-jackpot-stories-player-comeback__story-excerpt {
    font-size: 1.05em;
    color: #555;
    text-align: justify;
}

.page-jackpot-stories-player-comeback__cta-box {
    background-color: #000080; /* Dark Blue */
    color: #fff;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-jackpot-stories-player-comeback__cta-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
}

.page-jackpot-stories-player-comeback__cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Strategy Section */
.page-jackpot-stories-player-comeback__strategy-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-jackpot-stories-player-comeback__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-jackpot-stories-player-comeback__list li {
    background-color: #f0f8ff;
    border-left: 5px solid #FFD700; /* Gold */
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: background-color 0.3s ease;
}

.page-jackpot-stories-player-comeback__list li:hover {
    background-color: #e0f0ff;
}

.page-jackpot-stories-player-comeback__list strong {
    color: #000080; /* Dark Blue */
}

/* Platform Advantages Section */
.page-jackpot-stories-player-comeback__platform-advantages {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

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

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

.page-jackpot-stories-player-comeback__advantage-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-jackpot-stories-player-comeback__advantage-title {
    font-size: 1.6em;
    color: #000080; /* Dark Blue */
    margin-bottom: 15px;
}

.page-jackpot-stories-player-comeback__advantage-text {
    font-size: 1em;
    color: #555;
}

.page-jackpot-stories-player-comeback__cta-box--download {
    margin-top: 60px;
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-jackpot-stories-player-comeback__cta-box--download .page-jackpot-stories-player-comeback__cta-title {
    color: #000080; /* Dark Blue */
}

.page-jackpot-stories-player-comeback__cta-box--download .page-jackpot-stories-player-comeback__cta-text {
    color: #333;
}

.page-jackpot-stories-player-comeback__cta-box--download .page-jackpot-stories-player-comeback__btn--primary {
    background-color: #000080; /* Dark Blue */
    color: #FFD700; /* Gold */
}

.page-jackpot-stories-player-comeback__cta-box--download .page-jackpot-stories-player-comeback__btn--primary:hover {
    background-color: #000066;
    color: #FFD700;
}

/* FAQ Section */
.page-jackpot-stories-player-comeback__faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-jackpot-stories-player-comeback__faq-item {
    background-color: #f0f8ff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-jackpot-stories-player-comeback__faq-question {
    font-size: 1.4em;
    color: #000080; /* Dark Blue */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-jackpot-stories-player-comeback__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    font-weight: bold;
}

.page-jackpot-stories-player-comeback__faq-item.active .page-jackpot-stories-player-comeback__faq-question::after {
    content: '-';
}

.page-jackpot-stories-player-comeback__faq-answer {
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-jackpot-stories-player-comeback__faq-item.active .page-jackpot-stories-player-comeback__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Final CTA Section */
.page-jackpot-stories-player-comeback__final-cta {
    background: linear-gradient(135deg, #000080, #00004d);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.page-jackpot-stories-player-comeback__final-cta-title {
    font-size: 3em;
    color: #FFD700; /* Gold */
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jackpot-stories-player-comeback__final-cta-text {
    font-size: 1.4em;
    margin-bottom: 50px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-jackpot-stories-player-comeback__final-cta .page-jackpot-stories-player-comeback__btn {
    margin: 0 15px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-jackpot-stories-player-comeback__hero-title {
        font-size: 3em;
    }
    .page-jackpot-stories-player-comeback__hero-subtitle {
        font-size: 1.3em;
    }
    .page-jackpot-stories-player-comeback__section-title {
        font-size: 2em;
    }
    .page-jackpot-stories-player-comeback__list {
        grid-template-columns: 1fr;
    }
    .page-jackpot-stories-player-comeback__advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-jackpot-stories-player-comeback__final-cta-title {
        font-size: 2.5em;
    }
    .page-jackpot-stories-player-comeback__final-cta-text {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-jackpot-stories-player-comeback__hero-section {
        padding: 80px 0;
    }
    .page-jackpot-stories-player-comeback__hero-title {
        font-size: 2.5em;
    }
    .page-jackpot-stories-player-comeback__hero-subtitle {
        font-size: 1.1em;
    }
    .page-jackpot-stories-player-comeback__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-jackpot-stories-player-comeback__story-card {
        padding: 20px;
    }
    .page-jackpot-stories-player-comeback__story-title {
        font-size: 1.5em;
    }
    .page-jackpot-stories-player-comeback__cta-title {
        font-size: 1.8em;
    }
    .page-jackpot-stories-player-comeback__cta-text {
        font-size: 1.1em;
    }
    .page-jackpot-stories-player-comeback__final-cta-title {
        font-size: 2em;
    }
    .page-jackpot-stories-player-comeback__final-cta-text {
        font-size: 1em;
    }
    .page-jackpot-stories-player-comeback__final-cta .page-jackpot-stories-player-comeback__btn {
        display: block;
        margin: 0 auto 15px auto;
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-jackpot-stories-player-comeback__hero-title {
        font-size: 2em;
    }
    .page-jackpot-stories-player-comeback__hero-subtitle {
        font-size: 1em;
    }
    .page-jackpot-stories-player-comeback__section-title {
        font-size: 1.8em;
    }
    .page-jackpot-stories-player-comeback__text-content {
        font-size: 0.95em;
    }
    .page-jackpot-stories-player-comeback__btn--large {
        min-width: unset;
        width: 100%;
    }
}