/* style/jackpot-stories.css */

/* Base styles for the page */
.page-jackpot-stories {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

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

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

.page-jackpot-stories__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark blue */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-jackpot-stories__subtitle {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-jackpot-stories p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
}

.page-jackpot-stories .highlight {
    color: #000080;
    font-weight: bold;
}

/* Hero Section */
.page-jackpot-stories__hero {
    background: linear-gradient(135deg, #000080 0%, #000040 100%); /* Dark blue gradient */
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-jackpot-stories__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-jackpot-stories__hero > .page-jackpot-stories__container {
    position: relative;
    z-index: 1;
}

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

.page-jackpot-stories .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark blue */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    margin: 10px;
}

.page-jackpot-stories .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-jackpot-stories .btn-secondary {
    background-color: #000080; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin: 10px;
}

.page-jackpot-stories .btn-secondary:hover {
    background-color: #000066; /* Slightly darker blue */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 128, 0.4);
}

/* Image Styling */
.page-jackpot-stories__image-wrapper {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-jackpot-stories__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Featured Stories Section */
.page-jackpot-stories__featured-stories .page-jackpot-stories__story-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-jackpot-stories__story-card .page-jackpot-stories__story-title {
    font-size: 1.8em;
    color: #000080; /* Dark blue */
    margin-bottom: 15px;
}

.page-jackpot-stories__story-card .page-jackpot-stories__story-title a {
    color: #000080;
    text-decoration: none;
}

.page-jackpot-stories__story-card .page-jackpot-stories__story-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-jackpot-stories__story-card .page-jackpot-stories__story-description {
    color: #555;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-jackpot-stories__featured-stories .page-jackpot-stories__image-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    border-radius: 8px;
}

/* Tips Section */
.page-jackpot-stories__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-jackpot-stories__tips-list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
}

.page-jackpot-stories__tips-list li strong {
    color: #000080; /* Dark blue */
}

/* Call to Action Bottom */
.page-jackpot-stories__cta-bottom {
    background-color: #000080; /* Dark blue background */
    color: #ffffff;
    padding: 80px 0;
}

.page-jackpot-stories__cta-bottom .page-jackpot-stories__section-title {
    color: #FFD700; /* Gold title */
}

.page-jackpot-stories__cta-bottom p {
    color: #f0f0f0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

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

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

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

    .page-jackpot-stories .btn-primary, .page-jackpot-stories .btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-jackpot-stories__story-card {
        padding: 20px;
    }

    .page-jackpot-stories__story-card .page-jackpot-stories__story-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-jackpot-stories__title {
        font-size: 2em;
    }

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

    .page-jackpot-stories__hero {
        padding: 60px 0;
    }

    .page-jackpot-stories__cta-buttons {
        flex-direction: column;
    }

    .page-jackpot-stories .btn-primary, .page-jackpot-stories .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}