/* style/jackpot-stories.css */
.page-jackpot-stories {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A2239; /* Main background color */
}

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

.page-jackpot-stories__hero {
    background: linear-gradient(135deg, #0A2239, #1A3A5B);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-jackpot-stories__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jackpot-stories__hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.page-jackpot-stories__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    margin: 10px;
}

.page-jackpot-stories__btn--primary {
    background-color: #FFD700;
    color: #0A2239;
    border: 2px solid #FFD700;
}

.page-jackpot-stories__btn--primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-3px);
}

.page-jackpot-stories__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-jackpot-stories__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-jackpot-stories__btn--outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-jackpot-stories__btn--outline:hover {
    background-color: #FFFFFF;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-jackpot-stories__section {
    padding: 80px 0;
    text-align: center;
}

.page-jackpot-stories__section:nth-of-type(even) {
    background-color: #0F2A42;
}

.page-jackpot-stories__section h2 {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-jackpot-stories__section h3 {
    font-size: 2em;
    color: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-jackpot-stories__section p {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #E0E0E0;
}

.page-jackpot-stories__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

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

.page-jackpot-stories__detail-item {
    background-color: #1A3A5B;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-stories__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-jackpot-stories__detail-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-jackpot-stories__detail-item h3 a {
    color: #FFD700;
    text-decoration: none;
}

.page-jackpot-stories__detail-item h3 a:hover {
    text-decoration: underline;
}

.page-jackpot-stories__detail-item p {
    color: #E0E0E0;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-jackpot-stories__btn--view-details {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700;
    color: #0A2239;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-jackpot-stories__btn--view-details:hover {
    background-color: #E6C200;
}

.page-jackpot-stories__cta-bottom {
    background: linear-gradient(45deg, #0A2239, #0F2A42);
    padding: 80px 0;
    text-align: center;
}

.page-jackpot-stories__cta-bottom h2 {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-jackpot-stories__cta-bottom p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-jackpot-stories__hero h1 {
        font-size: 2.5em;
    }

    .page-jackpot-stories__hero p {
        font-size: 1em;
    }

    .page-jackpot-stories__section h2 {
        font-size: 2em;
    }

    .page-jackpot-stories__section h3 {
        font-size: 1.5em;
    }

    .page-jackpot-stories__section p {
        font-size: 0.95em;
    }

    .page-jackpot-stories__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-jackpot-stories__detail-list {
        grid-template-columns: 1fr;
    }

    .page-jackpot-stories__cta-bottom h2 {
        font-size: 2.2em;
    }

    .page-jackpot-stories__cta-bottom p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-jackpot-stories__hero {
        padding: 60px 0;
    }

    .page-jackpot-stories__hero h1 {
        font-size: 2em;
    }

    .page-jackpot-stories__section {
        padding: 50px 0;
    }

    .page-jackpot-stories__section h2 {
        font-size: 1.8em;
    }

    .page-jackpot-stories__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}