/* style/game-introduction-progressive-jackpots.css */

.page-game-introduction-progressive-jackpots {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark background */
    background-color: #1a0033; /* Darker background based on #4B0082 */
}

.page-game-introduction-progressive-jackpots__hero {
    background: linear-gradient(135deg, #4B0082 0%, #2e004c 100%); /* Deep purple gradient */
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-game-introduction-progressive-jackpots__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,dark_purple]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-game-introduction-progressive-jackpots__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-game-introduction-progressive-jackpots__title {
    font-size: 3.5em;
    color: #FFC107; /* Auxiliary color for highlight */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-introduction-progressive-jackpots__subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-introduction-progressive-jackpots__btn--primary {
    background-color: #FFC107; /* Auxiliary color */
    color: #4B0082; /* Main color */
    border: 2px solid #FFC107;
}

.page-game-introduction-progressive-jackpots__btn--primary:hover {
    background-color: #e6b000;
    border-color: #e6b000;
    transform: translateY(-3px);
}

.page-game-introduction-progressive-jackpots__btn--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-game-introduction-progressive-jackpots__btn--secondary:hover {
    background-color: #FFC107;
    color: #4B0082;
    transform: translateY(-3px);
}

.page-game-introduction-progressive-jackpots__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    max-width: 400px;
    opacity: 0.6;
    z-index: 0;
    transform: translateX(20%) translateY(20%);
}

.page-game-introduction-progressive-jackpots__hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.page-game-introduction-progressive-jackpots__section {
    padding: 80px 20px;
    text-align: center;
    background-color: #1a0033;
}

.page-game-introduction-progressive-jackpots__section--about {
    background-color: #2e004c;
}

.page-game-introduction-progressive-jackpots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-introduction-progressive-jackpots__section-title {
    font-size: 2.8em;
    color: #FFC107;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-introduction-progressive-jackpots__description {
    font-size: 1.15em;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-introduction-progressive-jackpots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-game-introduction-progressive-jackpots__grid-item {
    background-color: #4B0082; /* Main color as background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: left;
    color: #f8f8f8;
}

.page-game-introduction-progressive-jackpots__grid-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

.page-game-introduction-progressive-jackpots__img--small {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.6));
}

.page-game-introduction-progressive-jackpots__item-title {
    font-size: 1.8em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-game-introduction-progressive-jackpots__steps {
    list-style: none;
    padding: 0;
    text-align: left;
}

.page-game-introduction-progressive-jackpots__steps li {
    background-color: #2e004c;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-introduction-progressive-jackpots__step-number {
    background-color: #FFC107;
    color: #4B0082;
    font-size: 2em;
    font-weight: bold;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
}

.page-game-introduction-progressive-jackpots__steps h3 {
    font-size: 1.8em;
    color: #FFC107;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-introduction-progressive-jackpots__steps p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-game-introduction-progressive-jackpots__img--medium {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-progressive-jackpots__btn--outline {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-game-introduction-progressive-jackpots__btn--outline:hover {
    background-color: #FFC107;
    color: #4B0082;
}

.page-game-introduction-progressive-jackpots__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-introduction-progressive-jackpots__game-card {
    background-color: #4B0082;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-introduction-progressive-jackpots__game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #FFC107;
}

.page-game-introduction-progressive-jackpots__game-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-game-introduction-progressive-jackpots__game-card p {
    color: #e0e0e0;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-game-introduction-progressive-jackpots__btn--play {
    background-color: #FFC107;
    color: #4B0082;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
}

.page-game-introduction-progressive-jackpots__btn--play:hover {
    background-color: #e6b000;
}

.page-game-introduction-progressive-jackpots__tip-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 40px;
}

.page-game-introduction-progressive-jackpots__tip-list li {
    background-color: #2e004c;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-progressive-jackpots__tip-list h3 {
    font-size: 1.6em;
    color: #FFC107;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-introduction-progressive-jackpots__tip-list p {
    color: #e0e0e0;
    line-height: 1.6;
}

.page-game-introduction-progressive-jackpots__btn--bonus {
    background-color: #FFC107;
    color: #4B0082;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-game-introduction-progressive-jackpots__btn--bonus:hover {
    background-color: #e6b000;
}

.page-game-introduction-progressive-jackpots__testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-introduction-progressive-jackpots__testimonial-card {
    background-color: #4B0082;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
    color: #f8f8f8;
}

.page-game-introduction-progressive-jackpots__testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FFC107;
}

.page-game-introduction-progressive-jackpots__testimonial-text {
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-game-introduction-progressive-jackpots__testimonial-author {
    font-weight: bold;
    color: #FFC107;
    font-size: 1.05em;
}

.page-game-introduction-progressive-jackpots__faq-item {
    background-color: #2e004c;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-progressive-jackpots__faq-question {
    font-size: 1.5em;
    color: #FFC107;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-introduction-progressive-jackpots__faq-answer {
    color: #e0e0e0;
    line-height: 1.6;
}

.page-game-introduction-progressive-jackpots__btn--download {
    background-color: #FFC107;
    color: #4B0082;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-game-introduction-progressive-jackpots__btn--download:hover {
    background-color: #e6b000;
}

.page-game-introduction-progressive-jackpots__cta {
    background: linear-gradient(135deg, #FFC107 0%, #e6b000 100%); /* Auxiliary color gradient */
    padding: 80px 20px;
    text-align: center;
    color: #4B0082; /* Main color for text on light background */
}

.page-game-introduction-progressive-jackpots__cta-title {
    font-size: 3em;
    color: #4B0082;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-game-introduction-progressive-jackpots__cta-description {
    font-size: 1.2em;
    color: #330066; /* Darker shade of main color */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-introduction-progressive-jackpots__link {
    color: #4B0082;
    text-decoration: underline;
    font-weight: bold;
}

.page-game-introduction-progressive-jackpots__link:hover {
    color: #330066;
}

.page-game-introduction-progressive-jackpots__small-text {
    font-size: 0.9em;
    margin-top: 20px;
    color: #330066;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-introduction-progressive-jackpots__title {
        font-size: 2.8em;
    }
    .page-game-introduction-progressive-jackpots__subtitle {
        font-size: 1.3em;
    }
    .page-game-introduction-progressive-jackpots__hero-image-wrapper {
        width: 40%;
        transform: translateX(10%) translateY(10%);
    }
    .page-game-introduction-progressive-jackpots__section-title {
        font-size: 2.2em;
    }
    .page-game-introduction-progressive-jackpots__item-title,
    .page-game-introduction-progressive-jackpots__steps h3,
    .page-game-introduction-progressive-jackpots__game-title,
    .page-game-introduction-progressive-jackpots__faq-question {
        font-size: 1.5em;
    }
    .page-game-introduction-progressive-jackpots__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-introduction-progressive-jackpots__hero {
        padding: 80px 15px;
        min-height: 400px;
        flex-direction: column;
    }
    .page-game-introduction-progressive-jackpots__hero-image-wrapper {
        display: none; /* Hide image on smaller screens */
    }
    .page-game-introduction-progressive-jackpots__title {
        font-size: 2.2em;
    }
    .page-game-introduction-progressive-jackpots__subtitle {
        font-size: 1.1em;
    }
    .page-game-introduction-progressive-jackpots__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-introduction-progressive-jackpots__grid {
        grid-template-columns: 1fr;
    }
    .page-game-introduction-progressive-jackpots__steps li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-game-introduction-progressive-jackpots__step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-game-introduction-progressive-jackpots__game-list {
        grid-template-columns: 1fr;
    }
    .page-game-introduction-progressive-jackpots__section-title {
        font-size: 1.8em;
    }
    .page-game-introduction-progressive-jackpots__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-game-introduction-progressive-jackpots__hero {
        padding: 60px 10px;
    }
    .page-game-introduction-progressive-jackpots__title {
        font-size: 1.8em;
    }
    .page-game-introduction-progressive-jackpots__subtitle {
        font-size: 1em;
    }
    .page-game-introduction-progressive-jackpots__section-title {
        font-size: 1.6em;
    }
    .page-game-introduction-progressive-jackpots__item-title,
    .page-game-introduction-progressive-jackpots__steps h3,
    .page-game-introduction-progressive-jackpots__game-title,
    .page-game-introduction-progressive-jackpots__faq-question {
        font-size: 1.3em;
    }
    .page-game-introduction-progressive-jackpots__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-game-introduction-progressive-jackpots__cta-title {
        font-size: 1.8em;
    }
}