/* style/hi88-jackpot-strategy-game-selection.css */
.page-hi88-jackpot-strategy-game-selection {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text for contrast with dark background */
    background-color: #0A192F; /* Deep tech blue primary background */
}

.page-hi88-jackpot-strategy-game-selection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hi88-jackpot-strategy-game-selection__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #364a6d 100%); /* Gradient with primary color */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-hi88-jackpot-strategy-game-selection__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-hi88-jackpot-strategy-game-selection__hero-subtitle {
    font-size: 1.5em;
    color: #f5e6d0; /* Complementary color for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hi88-jackpot-strategy-game-selection__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for CTA */
    color: #0A192F; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-hi88-jackpot-strategy-game-selection__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-hi88-jackpot-strategy-game-selection__content-section {
    padding: 60px 0;
}

.page-hi88-jackpot-strategy-game-selection__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-hi88-jackpot-strategy-game-selection__sub-section-title {
    font-size: 1.8em;
    color: #f5e6d0; /* Complementary color for sub-section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-hi88-jackpot-strategy-game-selection__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-hi88-jackpot-strategy-game-selection__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-hi88-jackpot-strategy-game-selection__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-hi88-jackpot-strategy-game-selection__list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #FFD700; /* Auxiliary color for list bullets */
    font-size: 1.2em;
    top: 0;
}

.page-hi88-jackpot-strategy-game-selection__nested-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    color: #E0E0E0;
}

.page-hi88-jackpot-strategy-game-selection__nested-list li {
    font-size: 1em;
    margin-bottom: 5px;
    padding-left: 0;
}

.page-hi88-jackpot-strategy-game-selection__nested-list li::before {
    content: none;
}

.page-hi88-jackpot-strategy-game-selection__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-hi88-jackpot-strategy-game-selection__cta-button--inline {
    margin-top: 20px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.page-hi88-jackpot-strategy-game-selection__cta-button--center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-hi88-jackpot-strategy-game-selection__action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-hi88-jackpot-strategy-game-selection__action-button {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-hi88-jackpot-strategy-game-selection__action-button:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-hi88-jackpot-strategy-game-selection .highlight {
    color: #FFD700;
    font-weight: bold;
}

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

    .page-hi88-jackpot-strategy-game-selection__hero-subtitle {
        font-size: 1.2em;
    }

    .page-hi88-jackpot-strategy-game-selection__section-title {
        font-size: 2em;
    }

    .page-hi88-jackpot-strategy-game-selection__sub-section-title {
        font-size: 1.5em;
    }

    .page-hi88-jackpot-strategy-game-selection__paragraph,
    .page-hi88-jackpot-strategy-game-selection__list li {
        font-size: 1em;
    }

    .page-hi88-jackpot-strategy-game-selection__cta-button,
    .page-hi88-jackpot-strategy-game-selection__action-button {
        font-size: 1em;
        padding: 12px 20px;
    }

    .page-hi88-jackpot-strategy-game-selection__action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hi88-jackpot-strategy-game-selection__hero-title {
        font-size: 2em;
    }

    .page-hi88-jackpot-strategy-game-selection__hero-subtitle {
        font-size: 1em;
    }

    .page-hi88-jackpot-strategy-game-selection__section-title {
        font-size: 1.8em;
    }

    .page-hi88-jackpot-strategy-game-selection__sub-section-title {
        font-size: 1.3em;
    }

    .page-hi88-jackpot-strategy-game-selection__cta-button,
    .page-hi88-jackpot-strategy-game-selection__action-button {
        width: 100%;
        max-width: 280px;
    }
}