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

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

/* Hero Section */
.page-jackpot-stories-lucky-player .hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #000080 100%); /* Gold to Orange to Dark Blue */
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-jackpot-stories-lucky-player .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #FFFFFF; /* Ensure high contrast */
}

.page-jackpot-stories-lucky-player .hero-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF; /* Ensure high contrast */
}

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

.page-jackpot-stories-lucky-player .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    border: 2px solid #FFD700;
}

.page-jackpot-stories-lucky-player .btn-primary:hover {
    background-color: #000080;
    color: #FFD700;
    border-color: #FFD700;
}

.page-jackpot-stories-lucky-player .btn-secondary {
    background-color: #000080; /* Dark Blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-jackpot-stories-lucky-player .btn-secondary:hover {
    background-color: #FFD700;
    color: #000080;
    border-color: #000080;
}

/* General Section Styling */
.page-jackpot-stories-lucky-player section {
    padding: 60px 0;
}

.page-jackpot-stories-lucky-player section h2 {
    font-size: 2.5em;
    color: #000080;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-jackpot-stories-lucky-player section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

/* Stories Overview Section */
.page-jackpot-stories-lucky-player .stories-overview-section {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.page-jackpot-stories-lucky-player .stories-overview-section .image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-jackpot-stories-lucky-player .stories-overview-section .story-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Individual Story Sections */
.page-jackpot-stories-lucky-player .individual-story-section {
    padding: 80px 0;
}

.page-jackpot-stories-lucky-player .story-odd {
    background-color: #FFFFFF;
}

.page-jackpot-stories-lucky-player .story-even {
    background-color: #e6e6fa; /* Light Lavender for contrast */
}

.page-jackpot-stories-lucky-player .individual-story-section .story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-jackpot-stories-lucky-player .individual-story-section h2 {
    font-size: 2em;
    color: #000080;
    margin-bottom: 15px;
    text-align: center;
}

.page-jackpot-stories-lucky-player .individual-story-section h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
}

.page-jackpot-stories-lucky-player .individual-story-section .image-wrapper {
    margin: 30px 0;
}

.page-jackpot-stories-lucky-player .individual-story-section .story-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Lessons Section */
.page-jackpot-stories-lucky-player .lessons-section {
    background-color: #000080;
    color: #FFFFFF;
    text-align: center;
}

.page-jackpot-stories-lucky-player .lessons-section h2 {
    color: #FFD700;
}

.page-jackpot-stories-lucky-player .lessons-section h2::after {
    background-color: #FFFFFF;
}

.page-jackpot-stories-lucky-player .lessons-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-jackpot-stories-lucky-player .lessons-section li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    font-size: 1.1em;
    border-left: 5px solid #FFD700;
    color: #FFFFFF; /* Ensure high contrast */
}

.page-jackpot-stories-lucky-player .lessons-section li strong {
    color: #FFD700;
}

.page-jackpot-stories-lucky-player .lessons-section p {
    color: #E0E0E0;
    text-align: center;
}

/* Why Choose Section */
.page-jackpot-stories-lucky-player .why-choose-section {
    background-color: #f8f8f8;
    padding-bottom: 80px;
}

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

.page-jackpot-stories-lucky-player .feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-jackpot-stories-lucky-player .feature-item:hover {
    transform: translateY(-5px);
}

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

.page-jackpot-stories-lucky-player .feature-item h3 {
    font-size: 1.4em;
    color: #000080;
    margin-bottom: 10px;
}

.page-jackpot-stories-lucky-player .feature-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

.page-jackpot-stories-lucky-player .cta-banner {
    background-color: #000080;
    color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-jackpot-stories-lucky-player .cta-banner p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #FFD700; /* Ensure high contrast */
}

/* FAQ Section */
.page-jackpot-stories-lucky-player .faq-section {
    background-color: #FFFFFF;
}

.page-jackpot-stories-lucky-player .faq-item {
    background-color: #f0f8ff; /* AliceBlue for subtle contrast */
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-jackpot-stories-lucky-player .faq-item h3 {
    color: #000080;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-jackpot-stories-lucky-player .faq-item p {
    color: #555;
    font-size: 1em;
    text-align: left;
}

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

    .page-jackpot-stories-lucky-player .hero-section p {
        font-size: 1em;
    }

    .page-jackpot-stories-lucky-player .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-jackpot-stories-lucky-player .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-jackpot-stories-lucky-player section h2 {
        font-size: 2em;
    }

    .page-jackpot-stories-lucky-player .individual-story-section h2 {
        font-size: 1.8em;
    }

    .page-jackpot-stories-lucky-player .individual-story-section h3 {
        font-size: 1.3em;
    }

    .page-jackpot-stories-lucky-player .features-grid {
        grid-template-columns: 1fr;
    }

    .page-jackpot-stories-lucky-player .cta-banner p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-jackpot-stories-lucky-player .hero-section h1 {
        font-size: 2em;
    }

    .page-jackpot-stories-lucky-player .hero-section p {
        font-size: 0.9em;
    }

    .page-jackpot-stories-lucky-player .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .page-jackpot-stories-lucky-player .btn-secondary {
        margin-top: 0;
    }

    .page-jackpot-stories-lucky-player section h2 {
        font-size: 1.8em;
    }

    .page-jackpot-stories-lucky-player .individual-story-section .story-image {
        max-width: 95%;
    }
}