/* style/index-five88-hot-games-recommendation.css */

:root {
    --five88-primary-color: #FFD700; /* Gold */
    --five88-secondary-color: #8B0000; /* Dark Red */
    --five88-text-dark: #333;
    --five88-text-light: #fff;
    --five88-bg-dark: #1a1a1a;
    --five88-bg-light-grey: #f5f5f5;
    --five88-accent-blue: #007bff; /* for contrast emphasis */
}

.page-index-five88-hot-games-recommendation {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--five88-text-dark);
    background-color: var(--five88-bg-light-grey);
}

.page-index-five88-hot-games-recommendation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-five88-hot-games-recommendation__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-five88-hot-games-recommendation__section:nth-of-type(even) {
    background-color: #e8e8e8;
}

.page-index-five88-hot-games-recommendation__section-title {
    font-size: 2.8em;
    color: var(--five88-secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-five88-hot-games-recommendation__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--five88-primary-color);
    border-radius: 2px;
}

.page-index-five88-hot-games-recommendation__hero {
    background: linear-gradient(135deg, var(--five88-primary-color) 0%, var(--five88-secondary-color) 100%);
    color: var(--five88-text-light);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    min-height: 600px;
}

.page-index-five88-hot-games-recommendation__hero-content {
    max-width: 600px;
    padding: 20px;
}

.page-index-five88-hot-games-recommendation__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--five88-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-five88-hot-games-recommendation__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-index-five88-hot-games-recommendation__hero-image-wrapper {
    flex-shrink: 0;
    width: 500px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-five88-hot-games-recommendation__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-index-five88-hot-games-recommendation__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-index-five88-hot-games-recommendation__btn--primary {
    background-color: var(--five88-primary-color);
    color: var(--five88-secondary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-five88-hot-games-recommendation__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-five88-hot-games-recommendation__btn--secondary {
    background-color: var(--five88-secondary-color);
    color: var(--five88-text-light);
    border: 2px solid var(--five88-primary-color);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.page-index-five88-hot-games-recommendation__btn--secondary:hover {
    background-color: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.6);
}

.page-index-five88-hot-games-recommendation__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    margin-top: 15px;
}

.page-index-five88-hot-games-recommendation__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-index-five88-hot-games-recommendation__about-five88 p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-five88-hot-games-recommendation__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-five88-hot-games-recommendation__feature-item:hover {
    transform: translateY(-10px);
}

.page-index-five88-hot-games-recommendation__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-five88-hot-games-recommendation__feature-item h3 {
    font-size: 1.5em;
    color: var(--five88-secondary-color);
    margin-bottom: 15px;
}

.page-index-five88-hot-games-recommendation__feature-item p {
    font-size: 1em;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__cta-text {
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--five88-text-dark);
    font-weight: bold;
}

.page-index-five88-hot-games-recommendation__game-categories > p {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-five88-hot-games-recommendation__game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-index-five88-hot-games-recommendation__game-card:hover {
    transform: translateY(-10px);
}

.page-index-five88-hot-games-recommendation__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index-five88-hot-games-recommendation__game-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-index-five88-hot-games-recommendation__game-card-content h3 {
    font-size: 1.6em;
    color: var(--five88-secondary-color);
    margin-bottom: 10px;
}

.page-index-five88-hot-games-recommendation__game-card-content p {
    font-size: 1em;
    color: var(--five88-text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-five88-hot-games-recommendation__promotions > p {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-five88-hot-games-recommendation__promo-card {
    background-color: var(--five88-bg-dark);
    color: var(--five88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid var(--five88-primary-color);
}

.page-index-five88-hot-games-recommendation__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-five88-hot-games-recommendation__promo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-index-five88-hot-games-recommendation__promo-card h3 {
    font-size: 1.8em;
    color: var(--five88-primary-color);
    margin-bottom: 15px;
}

.page-index-five88-hot-games-recommendation__promo-card p {
    font-size: 1em;
    color: var(--five88-text-light);
    opacity: 0.9;
}

.page-index-five88-hot-games-recommendation__guide > p {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-five88-hot-games-recommendation__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-index-five88-hot-games-recommendation__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-five88-hot-games-recommendation__step-item h3 {
    font-size: 1.6em;
    color: var(--five88-secondary-color);
    margin-bottom: 15px;
}

.page-index-five88-hot-games-recommendation__step-item p {
    font-size: 1em;
    color: var(--five88-text-dark);
    margin-bottom: 20px;
}

.page-index-five88-hot-games-recommendation__tips-safety ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 30px auto;
    text-align: left;
}

.page-index-five88-hot-games-recommendation__tips-safety li {
    background-color: #fff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--five88-primary-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__tips-safety li strong {
    color: var(--five88-secondary-color);
}

.page-index-five88-hot-games-recommendation__tips-safety p {
    font-size: 1.1em;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__why-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 30px auto;
    text-align: left;
}

.page-index-five88-hot-games-recommendation__why-list li {
    background-color: var(--five88-bg-dark);
    color: var(--five88-text-light);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--five88-primary-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
}

.page-index-five88-hot-games-recommendation__why-list li strong {
    color: var(--five88-primary-color);
}

.page-index-five88-hot-games-recommendation__faq .page-index-five88-hot-games-recommendation__accordion {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-index-five88-hot-games-recommendation__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-index-five88-hot-games-recommendation__accordion-header {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--five88-primary-color);
    color: var(--five88-secondary-color);
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-five88-hot-games-recommendation__accordion-header:hover,
.page-index-five88-hot-games-recommendation__accordion-header.active {
    background-color: #e6c200;
}

.page-index-five88-hot-games-recommendation__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-five88-hot-games-recommendation__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-five88-hot-games-recommendation__accordion-content {
    padding: 0 25px;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-five88-hot-games-recommendation__accordion-content.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px 25px;
}

.page-index-five88-hot-games-recommendation__accordion-content p {
    margin-bottom: 15px;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__accordion-content .page-index-five88-hot-games-recommendation__btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

.page-index-five88-hot-games-recommendation__final-cta-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--five88-text-dark);
}

.page-index-five88-hot-games-recommendation__floating-ad-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Arial', sans-serif;
}

.page-index-five88-hot-games-recommendation__floating-toggle-btn {
    background-color: var(--five88-secondary-color);
    color: var(--five88-primary-color);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-five88-hot-games-recommendation__floating-toggle-btn:hover {
    background-color: #a00000;
    transform: translateY(-3px);
}

.page-index-five88-hot-games-recommendation__floating-content {
    background-color: var(--five88-bg-dark);
    border: 2px solid var(--five88-primary-color);
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    color: var(--five88-text-light);
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.page-index-five88-hot-games-recommendation__floating-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-index-five88-hot-games-recommendation__floating-content p {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--five88-text-light);
}

.page-index-five88-hot-games-recommendation__floating-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.page-index-five88-hot-games-recommendation__floating-content li {
    margin-bottom: 8px;
}

.page-index-five88-hot-games-recommendation__floating-content a {
    color: var(--five88-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-five88-hot-games-recommendation__floating-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-five88-hot-games-recommendation__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 0;
    }

    .page-index-five88-hot-games-recommendation__hero-content {
        max-width: 100%;
    }

    .page-index-five88-hot-games-recommendation__hero-title {
        font-size: 3em;
    }

    .page-index-five88-hot-games-recommendation__hero-image-wrapper {
        width: 80%;
        height: auto;
        margin-top: 40px;
    }

    .page-index-five88-hot-games-recommendation__section-title {
        font-size: 2.2em;
    }

    .page-index-five88-hot-games-recommendation__features-grid,
    .page-index-five88-hot-games-recommendation__game-grid,
    .page-index-five88-hot-games-recommendation__promo-grid,
    .page-index-five88-hot-games-recommendation__guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-five88-hot-games-recommendation__hero {
        padding: 60px 0;
    }

    .page-index-five88-hot-games-recommendation__hero-title {
        font-size: 2.5em;
    }

    .page-index-five88-hot-games-recommendation__hero-description {
        font-size: 1.1em;
    }

    .page-index-five88-hot-games-recommendation__section {
        padding: 40px 0;
    }

    .page-index-five88-hot-games-recommendation__section-title {
        font-size: 1.8em;
    }

    .page-index-five88-hot-games-recommendation__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-five88-hot-games-recommendation__floating-ad-menu {
        bottom: 15px;
        right: 15px;
    }

    .page-index-five88-hot-games-recommendation__floating-toggle-btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-index-five88-hot-games-recommendation__floating-content {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .page-index-five88-hot-games-recommendation__hero-title {
        font-size: 2em;
    }

    .page-index-five88-hot-games-recommendation__hero-description {
        font-size: 1em;
    }

    .page-index-five88-hot-games-recommendation__hero-image-wrapper {
        width: 95%;
    }

    .page-index-five88-hot-games-recommendation__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}