/* style/resources-hm88-slot-game-recommendations.css */
.page-resources-hm88-slot-game-recommendations {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-resources-hm88-slot-game-recommendations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-hm88-slot-game-recommendations__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-resources-hm88-slot-game-recommendations__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-hm88-slot-game-recommendations__section-title .highlight {
    color: #FFCC00;
}

.page-resources-hm88-slot-game-recommendations__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-resources-hm88-slot-game-recommendations__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-resources-hm88-slot-game-recommendations__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient for depth */
    color: #ffffff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-resources-hm88-slot-game-recommendations__hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-resources-hm88-slot-game-recommendations__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffffff;
}

.page-resources-hm88-slot-game-recommendations__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-resources-hm88-slot-game-recommendations__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-resources-hm88-slot-game-recommendations__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-resources-hm88-slot-game-recommendations__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-hm88-slot-game-recommendations__btn.primary-btn {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-resources-hm88-slot-game-recommendations__btn.primary-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-resources-hm88-slot-game-recommendations__btn.secondary-btn {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-resources-hm88-slot-game-recommendations__btn.secondary-btn:hover {
    background-color: #004080;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.page-resources-hm88-slot-game-recommendations__btn.large-btn {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources-hm88-slot-game-recommendations__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-hm88-slot-game-recommendations__feature-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-resources-hm88-slot-game-recommendations__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-hm88-slot-game-recommendations__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-resources-hm88-slot-game-recommendations__feature-item p {
    color: #666;
    font-size: 1em;
}

.page-resources-hm88-slot-game-recommendations__img-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-resources-hm88-slot-game-recommendations__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-hm88-slot-game-recommendations__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.page-resources-hm88-slot-game-recommendations__game-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-hm88-slot-game-recommendations__game-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-resources-hm88-slot-game-recommendations__game-card-title {
    font-size: 1.8em;
    color: #003366;
    margin: 20px 0 10px;
    padding: 0 20px;
}

.page-resources-hm88-slot-game-recommendations__game-card-desc {
    color: #666;
    font-size: 0.95em;
    padding: 0 20px;
    flex-grow: 1;
}

.page-resources-hm88-slot-game-recommendations__game-features {
    list-style: none;
    padding: 0 20px 15px;
    margin: 15px 0;
    text-align: left;
}

.page-resources-hm88-slot-game-recommendations__game-features li {
    margin-bottom: 8px;
    color: #444;
    font-size: 0.9em;
}

.page-resources-hm88-slot-game-recommendations__game-features li i {
    color: #FFCC00;
    margin-right: 8px;
}

.page-resources-hm88-slot-game-recommendations__game-card .page-resources-hm88-slot-game-recommendations__btn {
    margin: 20px;
    align-self: center;
}

.page-resources-hm88-slot-game-recommendations__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.page-resources-hm88-slot-game-recommendations__grid-2-cols.reverse-order {
    direction: rtl;
}

.page-resources-hm88-slot-game-recommendations__grid-2-cols.reverse-order > div {
    direction: ltr;
}

.page-resources-hm88-slot-game-recommendations__step-by-step {
    padding: 20px;
}

.page-resources-hm88-slot-game-recommendations__step-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 25px;
}

.page-resources-hm88-slot-game-recommendations__ordered-list,
.page-resources-hm88-slot-game-recommendations__bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.page-resources-hm88-slot-game-recommendations__ordered-list li,
.page-resources-hm88-slot-game-recommendations__bullet-list li {
    background-color: #e6f0f9; /* Lighter blue for list items */
    border-left: 5px solid #003366;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
    position: relative;
}

.page-resources-hm88-slot-game-recommendations__ordered-list li strong {
    color: #003366;
}

.page-resources-hm88-slot-game-recommendations__ordered-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFCC00;
    color: #003366;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-hm88-slot-game-recommendations__bullet-list li {
    border-left: 5px solid #FFCC00;
}

.page-resources-hm88-slot-game-recommendations__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-hm88-slot-game-recommendations__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-resources-hm88-slot-game-recommendations__promo-card {
    background-color: #003366;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-hm88-slot-game-recommendations__promo-card:hover {
    transform: translateY(-5px);
    background-color: #004080;
}

.page-resources-hm88-slot-game-recommendations__promo-title {
    font-size: 1.6em;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-resources-hm88-slot-game-recommendations__promo-card p {
    font-size: 1em;
    color: #e0e0e0;
}

.page-resources-hm88-slot-game-recommendations__cta-banner {
    background-color: #FFCC00;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 30px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.page-resources-hm88-slot-game-recommendations__cta-img {
    width: 200px;
    height: auto;
    margin-right: 30px;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-resources-hm88-slot-game-recommendations__cta-content {
    flex-grow: 1;
    color: #003366;
}

.page-resources-hm88-slot-game-recommendations__cta-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 10px;
}

.page-resources-hm88-slot-game-recommendations__cta-text {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-resources-hm88-slot-game-recommendations__cta-banner .page-resources-hm88-slot-game-recommendations__btn {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
}

.page-resources-hm88-slot-game-recommendations__cta-banner .page-resources-hm88-slot-game-recommendations__btn:hover {
    background-color: #ffffff;
    color: #003366;
    border-color: #003366;
}

.page-resources-hm88-slot-game-recommendations__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-hm88-slot-game-recommendations__tip-item {
    background-color: #f0f8ff; /* Very light blue */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #cceeff;
    transition: border-color 0.3s ease;
}

.page-resources-hm88-slot-game-recommendations__tip-item:hover {
    border-color: #FFCC00;
}

.page-resources-hm88-slot-game-recommendations__tip-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.page-resources-hm88-slot-game-recommendations__tip-item p {
    color: #444;
    font-size: 0.95em;
}

.page-resources-hm88-slot-game-recommendations__security-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.page-resources-hm88-slot-game-recommendations__security-item {
    flex: 1 1 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-hm88-slot-game-recommendations__security-item i {
    font-size: 3em;
    color: #003366;
    margin-bottom: 15px;
}

.page-resources-hm88-slot-game-recommendations__security-item h3 {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-resources-hm88-slot-game-recommendations__security-item p {
    color: #666;
}

.page-resources-hm88-slot-game-recommendations__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-resources-hm88-slot-game-recommendations__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-hm88-slot-game-recommendations__faq-question {
    font-size: 1.25em;
    color: #003366;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f7fa;
    transition: background-color 0.3s ease;
}

.page-resources-hm88-slot-game-recommendations__faq-question:hover {
    background-color: #e6f0f9;
}

.page-resources-hm88-slot-game-recommendations__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-resources-hm88-slot-game-recommendations__faq-item.active .page-resources-hm88-slot-game-recommendations__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-hm88-slot-game-recommendations__faq-answer {
    padding: 0 20px 20px;
    color: #555;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-hm88-slot-game-recommendations__faq-item.active .page-resources-hm88-slot-game-recommendations__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 0 20px 20px;
}

.page-resources-hm88-slot-game-recommendations__section.conclusion {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-resources-hm88-slot-game-recommendations__section.conclusion .page-resources-hm88-slot-game-recommendations__section-title {
    color: #ffffff;
}

.page-resources-hm88-slot-game-recommendations__section.conclusion .page-resources-hm88-slot-game-recommendations__section-title::after {
    background-color: #FFCC00;
}

.page-resources-hm88-slot-game-recommendations__section.conclusion .page-resources-hm88-slot-game-recommendations__section-description {
    color: #e0e0e0;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-hm88-slot-game-recommendations__hero-title {
        font-size: 2.8em;
    }
    .page-resources-hm88-slot-game-recommendations__section-title {
        font-size: 2em;
    }
    .page-resources-hm88-slot-game-recommendations__grid-2-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-resources-hm88-slot-game-recommendations__grid-2-cols.reverse-order {
        direction: ltr;
    }
    .page-resources-hm88-slot-game-recommendations__cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .page-resources-hm88-slot-game-recommendations__cta-img {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .page-resources-hm88-slot-game-recommendations__hero-title {
        font-size: 2.2em;
    }
    .page-resources-hm88-slot-game-recommendations__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-hm88-slot-game-recommendations__section-title {
        font-size: 1.8em;
    }
    .page-resources-hm88-slot-game-recommendations__features-grid,
    .page-resources-hm88-slot-game-recommendations__game-card-grid,
    .page-resources-hm88-slot-game-recommendations__promo-grid,
    .page-resources-hm88-slot-game-recommendations__tips-grid,
    .page-resources-hm88-slot-game-recommendations__security-features {
        grid-template-columns: 1fr;
    }
    .page-resources-hm88-slot-game-recommendations__security-item {
        max-width: 100%;
    }
    .page-resources-hm88-slot-game-recommendations__ordered-list li::before {
        left: 10px;
        transform: translateY(-50%) translateX(-100%);
    }
    .page-resources-hm88-slot-game-recommendations__ordered-list li,
    .page-resources-hm88-slot-game-recommendations__bullet-list li {
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .page-resources-hm88-slot-game-recommendations__hero {
        padding: 80px 0;
    }
    .page-resources-hm88-slot-game-recommendations__hero-title {
        font-size: 1.8em;
    }
    .page-resources-hm88-slot-game-recommendations__section-title {
        font-size: 1.5em;
    }
    .page-resources-hm88-slot-game-recommendations__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-hm88-slot-game-recommendations__cta-title {
        font-size: 1.5em;
    }
}

/* Icon styles (placeholder, actual icons would be loaded via font-awesome or similar) */
.icon-star::before { content: '⭐'; margin-right: 5px; }
.icon-lock::before { content: '🔒'; }
.icon-shield::before { content: '🛡️'; }
.icon-support::before { content: '📞'; }