/* style/pg66-guides-progressive-jackpots.css */

/* Base styles and variables */
.page-pg66-guides-progressive-jackpots {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f9f9f9;
    --button-hover-dark: #071a47;
    --button-hover-light: #e6c200;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Hero Section */
.page-pg66-guides-progressive-jackpots__hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.page-pg66-guides-progressive-jackpots__hero-content {
    z-index: 2;
    max-width: 900px;
}

.page-pg66-guides-progressive-jackpots__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.page-pg66-guides-progressive-jackpots__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-pg66-guides-progressive-jackpots__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-pg66-guides-progressive-jackpots__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-pg66-guides-progressive-jackpots__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.page-pg66-guides-progressive-jackpots__cta-button:hover {
    background-color: var(--button-hover-light);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.page-pg66-guides-progressive-jackpots__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-pg66-guides-progressive-jackpots__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-pg66-guides-progressive-jackpots__cta-button--center {
    display: block;
    margin: 30px auto;
    width: fit-content;
}

.page-pg66-guides-progressive-jackpots__cta-button--download {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-pg66-guides-progressive-jackpots__cta-button--download:hover {
    background-color: var(--button-hover-dark);
    border-color: var(--secondary-color);
    color: var(--button-hover-light);
}

/* General Section Styles */
.page-pg66-guides-progressive-jackpots__section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-pg66-guides-progressive-jackpots__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-pg66-guides-progressive-jackpots__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-pg66-guides-progressive-jackpots__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-pg66-guides-progressive-jackpots__container--center {
    text-align: center;
}

.page-pg66-guides-progressive-jackpots__heading {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-pg66-guides-progressive-jackpots__sub-heading {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-pg66-guides-progressive-jackpots__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-pg66-guides-progressive-jackpots__paragraph--emphasis {
    font-style: italic;
    font-weight: bold;
    color: var(--primary-color);
}

.page-pg66-guides-progressive-jackpots__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-pg66-guides-progressive-jackpots__image--full-width {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-pg66-guides-progressive-jackpots__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-pg66-guides-progressive-jackpots__list li {
    margin-bottom: 10px;
}

.page-pg66-guides-progressive-jackpots__list li strong {
    color: var(--primary-color);
}

/* Grid for tips section */
.page-pg66-guides-progressive-jackpots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-pg66-guides-progressive-jackpots__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-pg66-guides-progressive-jackpots__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-pg66-guides-progressive-jackpots__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Story Grid for history section */
.page-pg66-guides-progressive-jackpots__story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-pg66-guides-progressive-jackpots__story-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-pg66-guides-progressive-jackpots__story-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* App Download Section */
.page-pg66-guides-progressive-jackpots__section--app-download {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-pg66-guides-progressive-jackpots__section--app-download .page-pg66-guides-progressive-jackpots__heading,
.page-pg66-guides-progressive-jackpots__section--app-download .page-pg66-guides-progressive-jackpots__paragraph {
    color: var(--text-light);
}

.page-pg66-guides-progressive-jackpots__app-info {
    flex: 1;
}

.page-pg66-guides-progressive-jackpots__app-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-pg66-guides-progressive-jackpots__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-pg66-guides-progressive-jackpots__app-features-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.page-pg66-guides-progressive-jackpots__app-features-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-pg66-guides-progressive-jackpots__app-features-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* FAQ Section */
.page-pg66-guides-progressive-jackpots__faq-item {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-pg66-guides-progressive-jackpots__faq-item .page-pg66-guides-progressive-jackpots__sub-heading {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-pg66-guides-progressive-jackpots__faq-item .page-pg66-guides-progressive-jackpots__paragraph {
    font-size: 1em;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-pg66-guides-progressive-jackpots__title {
        font-size: 2.5em;
    }

    .page-pg66-guides-progressive-jackpots__subtitle {
        font-size: 1.2em;
    }

    .page-pg66-guides-progressive-jackpots__heading {
        font-size: 2em;
    }

    .page-pg66-guides-progressive-jackpots__sub-heading {
        font-size: 1.5em;
    }

    .page-pg66-guides-progressive-jackpots__container--flex {
        flex-direction: column;
        text-align: center;
    }

    .page-pg66-guides-progressive-jackpots__app-info,
    .page-pg66-guides-progressive-jackpots__app-image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-pg66-guides-progressive-jackpots__app-features-list {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-pg66-guides-progressive-jackpots__title {
        font-size: 2em;
    }

    .page-pg66-guides-progressive-jackpots__subtitle {
        font-size: 1em;
    }

    .page-pg66-guides-progressive-jackpots__heading {
        font-size: 1.8em;
    }

    .page-pg66-guides-progressive-jackpots__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-pg66-guides-progressive-jackpots__hero {
        padding: 60px 15px;
    }

    .page-pg66-guides-progressive-jackpots__section {
        padding: 40px 0;
    }

    .page-pg66-guides-progressive-jackpots__container {
        padding: 0 15px;
    }
}