/* style/jackpot-high-payout-game-list.css */
.page-jackpot-high-payout-game-list {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A1A2E;
    line-height: 1.6;
}

.page-jackpot-high-payout-game-list__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-jackpot-high-payout-game-list__hero {
    position: relative;
    background: linear-gradient(135deg, #DC143C, #FFD700);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-jackpot-high-payout-game-list__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-jackpot-high-payout-game-list__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jackpot-high-payout-game-list__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-jackpot-high-payout-game-list__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-jackpot-high-payout-game-list__section {
    padding: 60px 0;
    text-align: center;
}

.page-jackpot-high-payout-game-list__section:nth-of-type(even) {
    background-color: #2A2A3E;
}

.page-jackpot-high-payout-game-list__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.page-jackpot-high-payout-game-list__game-type-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
    background-color: #25253A;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-jackpot-high-payout-game-list__game-type-card:hover {
    transform: translateY(-10px);
}

.page-jackpot-high-payout-game-list__game-type-card--reversed {
    flex-direction: row-reverse;
}

.page-jackpot-high-payout-game-list__game-type-image,
.page-jackpot-high-payout-game-list__game-type-sub-image {
    width: 45%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-jackpot-high-payout-game-list__game-type-sub-image {
    margin-top: 20px;
    width: 100%;
}

.page-jackpot-high-payout-game-list__game-type-content {
    width: 55%;
}

.page-jackpot-high-payout-game-list__game-type-title {
    font-size: 2em;
    color: #DC143C;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-jackpot-high-payout-game-list__game-type-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-jackpot-high-payout-game-list__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-jackpot-high-payout-game-list__feature-item {
    background-color: #25253A;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.page-jackpot-high-payout-game-list__feature-item:hover {
    transform: translateY(-5px);
}

.page-jackpot-high-payout-game-list__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-jackpot-high-payout-game-list__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-jackpot-high-payout-game-list__feature-item p {
    font-size: 1em;
    color: #CCCCCC;
}

.page-jackpot-high-payout-game-list__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-jackpot-high-payout-game-list__strategy-list li {
    background-color: #25253A;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-jackpot-high-payout-game-list__strategy-item-title {
    font-size: 1.6em;
    color: #DC143C;
    margin-bottom: 10px;
}

.page-jackpot-high-payout-game-list__strategy-list p {
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-jackpot-high-payout-game-list__cta {
    background: linear-gradient(45deg, #1A1A2E, #3A1A2E);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-jackpot-high-payout-game-list__cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: #FFFFFF;
    text-align: center;
}

.page-jackpot-high-payout-game-list__cta .page-jackpot-high-payout-game-list__section-title {
    color: #FFD700;
    font-size: 3em;
}

.page-jackpot-high-payout-game-list__cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-jackpot-high-payout-game-list__cta-image {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 300px;
    height: auto;
    opacity: 0.6;
    z-index: 0;
    filter: drop-shadow(0 0 10px #FFD700);
}

.page-jackpot-high-payout-game-list__faq-item {
    background-color: #25253A;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-jackpot-high-payout-game-list__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-jackpot-high-payout-game-list__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-jackpot-high-payout-game-list__faq-question.active::after {
    transform: rotate(45deg);
}

.page-jackpot-high-payout-game-list__faq-answer {
    font-size: 1.1em;
    color: #CCCCCC;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #3A3A5A;
    margin-top: 10px;
}

.page-jackpot-high-payout-game-list__faq-question.active + .page-jackpot-high-payout-game-list__faq-answer {
    display: block;
}

/* Buttons */
.page-jackpot-high-payout-game-list__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-jackpot-high-payout-game-list__button--primary {
    background-color: #FFD700;
    color: #1A1A2E;
    border: 2px solid #FFD700;
}

.page-jackpot-high-payout-game-list__button--primary:hover {
    background-color: #DC143C;
    color: #FFFFFF;
    border-color: #DC143C;
    transform: translateY(-3px);
}

.page-jackpot-high-payout-game-list__button--secondary {
    background-color: #DC143C;
    color: #FFFFFF;
    border: 2px solid #DC143C;
}

.page-jackpot-high-payout-game-list__button--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    border-color: #FFD700;
    transform: translateY(-3px);
}

/* Links */
.page-jackpot-high-payout-game-list__link-inline {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-jackpot-high-payout-game-list__link-inline:hover {
    color: #DC143C;
    text-decoration: underline;
}

.page-jackpot-high-payout-game-list__highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-jackpot-high-payout-game-list__hero-title {
        font-size: 2.8em;
    }

    .page-jackpot-high-payout-game-list__section-title {
        font-size: 2.2em;
    }

    .page-jackpot-high-payout-game-list__game-type-card {
        flex-direction: column;
        text-align: center;
    }

    .page-jackpot-high-payout-game-list__game-type-card--reversed {
        flex-direction: column;
    }

    .page-jackpot-high-payout-game-list__game-type-image,
    .page-jackpot-high-payout-game-list__game-type-content {
        width: 100%;
    }

    .page-jackpot-high-payout-game-list__game-type-image {
        margin-bottom: 20px;
    }

    .page-jackpot-high-payout-game-list__hero {
        padding: 80px 0;
        min-height: 400px;
    }
    .page-jackpot-high-payout-game-list__cta-image {
        width: 200px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 768px) {
    .page-jackpot-high-payout-game-list__hero-title {
        font-size: 2.2em;
    }

    .page-jackpot-high-payout-game-list__hero-description {
        font-size: 1.1em;
    }

    .page-jackpot-high-payout-game-list__section-title {
        font-size: 1.8em;
    }

    .page-jackpot-high-payout-game-list__game-type-title {
        font-size: 1.6em;
    }

    .page-jackpot-high-payout-game-list__feature-title {
        font-size: 1.3em;
    }

    .page-jackpot-high-payout-game-list__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-jackpot-high-payout-game-list__cta .page-jackpot-high-payout-game-list__section-title {
        font-size: 2.5em;
    }
    .page-jackpot-high-payout-game-list__faq-question {
        font-size: 1.2em;
    }
    .page-jackpot-high-payout-game-list__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-jackpot-high-payout-game-list__hero-title {
        font-size: 1.8em;
    }
    .page-jackpot-high-payout-game-list__section-title {
        font-size: 1.5em;
    }
    .page-jackpot-high-payout-game-list__game-type-card {
        padding: 20px;
    }
    .page-jackpot-high-payout-game-list__feature-item {
        padding: 20px;
    }
    .page-jackpot-high-payout-game-list__cta .page-jackpot-high-payout-game-list__section-title {
        font-size: 2em;
    }
    .page-jackpot-high-payout-game-list__cta-image {
        display: none;
    }
}