.page-blog-five88-com-hot-games-2024 {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

.page-blog-five88-com-hot-games-2024__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-five88-com-hot-games-2024__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Fixed: small top padding */
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    background-color: var(--deep-navy);
}

.page-blog-five88-com-hot-games-2024__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-blog-five88-com-hot-games-2024__hero-content {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    z-index: 1;
    color: var(--text-main);
}

.page-blog-five88-com-hot-games-2024__main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(79, 168, 255, 0.5);
}

.page-blog-five88-com-hot-games-2024__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-five88-com-hot-games-2024__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-five88-com-hot-games-2024__cta-buttons--center {
    margin-top: 30px;
}

.page-blog-five88-com-hot-games-2024__btn-primary,
.page-blog-five88-com-hot-games-2024__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-five88-com-hot-games-2024__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: var(--text-main);
    border: 2px solid #2B73F6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-five88-com-hot-games-2024__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-five88-com-hot-games-2024__btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-five88-com-hot-games-2024__btn-secondary:hover {
    background: var(--border);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-blog-five88-com-hot-games-2024__introduction-section,
.page-blog-five88-com-hot-games-2024__game-analysis,
.page-blog-five88-com-hot-games-2024__promotions-section,
.page-blog-five88-com-hot-games-2024__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-five88-com-hot-games-2024__games-showcase,
.page-blog-five88-com-hot-games-2024__tips-section,
.page-blog-five88-com-hot-games-2024__faq-section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-five88-com-hot-games-2024__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-blog-five88-com-hot-games-2024__dark-bg {
    background-color: var(--deep-navy);
    color: var(--text-main);
}

.page-blog-five88-com-hot-games-2024__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color, #113B7A);
}

.page-blog-five88-com-hot-games-2024__dark-bg .page-blog-five88-com-hot-games-2024__section-title {
    color: var(--text-main);
}

.page-blog-five88-com-hot-games-2024__section-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.page-blog-five88-com-hot-games-2024__text-main {
    color: var(--text-main);
}

.page-blog-five88-com-hot-games-2024__text-secondary {
    color: var(--text-secondary);
}

/* Game Cards Grid */
.page-blog-five88-com-hot-games-2024__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-five88-com-hot-games-2024__game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
}

.page-blog-five88-com-hot-games-2024__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-five88-com-hot-games-2024__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.page-blog-five88-com-hot-games-2024__game-card-title {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-blog-five88-com-hot-games-2024__game-card-title a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-five88-com-hot-games-2024__game-card-title a:hover {
    color: #ffd700;
}

.page-blog-five88-com-hot-games-2024__game-card-text {
    font-size: 1rem;
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Game Analysis Section */
.page-blog-five88-com-hot-games-2024__analysis-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
    color: #333333;
}

.page-blog-five88-com-hot-games-2024__analysis-title {
    font-size: 2rem;
    color: var(--primary-color, #113B7A);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-blog-five88-com-hot-games-2024__analysis-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-blog-five88-com-hot-games-2024__analysis-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color, #1D5FD1);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-five88-com-hot-games-2024__analysis-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.page-blog-five88-com-hot-games-2024__analysis-list li {
    margin-bottom: 10px;
}

/* Tips Section */
.page-blog-five88-com-hot-games-2024__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-five88-com-hot-games-2024__tip-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-secondary);
}

.page-blog-five88-com-hot-games-2024__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-five88-com-hot-games-2024__tip-title {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Promotions Section */
.page-blog-five88-com-hot-games-2024__promo-list {
    list-style-type: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
    color: #333333;
}

.page-blog-five88-com-hot-games-2024__promo-list li {
    background-color: #f8f8f8;
    border-left: 5px solid var(--primary-color, #113B7A);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
}

.page-blog-five88-com-hot-games-2024__promo-list li b {
    color: var(--primary-color, #113B7A);
}

/* FAQ Section */
.page-blog-five88-com-hot-games-2024__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-five88-com-hot-games-2024__faq-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: left;
    color: var(--text-secondary);
}

.page-blog-five88-com-hot-games-2024__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    list-style: none;
    transition: background-color 0.3s ease;
}

.page-blog-five88-com-hot-games-2024__faq-question:hover {
    background-color: var(--divider);
}

.page-blog-five88-com-hot-games-2024__faq-item details > summary {
    list-style: none;
}

.page-blog-five88-com-hot-games-2024__faq-item details > summary::-webkit-details-marker {
    display: none;
}

.page-blog-five88-com-hot-games-2024__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.page-blog-five88-com-hot-games-2024__faq-item[open] .page-blog-five88-com-hot-games-2024__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-five88-com-hot-games-2024__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Conclusion Section */
.page-blog-five88-com-hot-games-2024__conclusion-section p {
    max-width: 900px;
    margin: 20px auto 30px;
    font-size: 1.1rem;
    color: #333333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-five88-com-hot-games-2024__main-title {
        font-size: 3rem;
    }

    .page-blog-five88-com-hot-games-2024__hero-description {
        font-size: 1.1rem;
    }

    .page-blog-five88-com-hot-games-2024__section-title {
        font-size: 2.5rem;
    }

    .page-blog-five88-com-hot-games-2024__game-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-five88-com-hot-games-2024__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-blog-five88-com-hot-games-2024__hero-image {
        max-height: 400px;
    }

    .page-blog-five88-com-hot-games-2024__hero-content {
        padding: 20px 15px;
    }

    .page-blog-five88-com-hot-games-2024__main-title {
        font-size: 2.2rem;
    }

    .page-blog-five88-com-hot-games-2024__hero-description {
        font-size: 1rem;
    }

    /* Buttons */
    .page-blog-five88-com-hot-games-2024__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
    }

    .page-blog-five88-com-hot-games-2024__btn-primary,
    .page-blog-five88-com-hot-games-2024__btn-secondary,
    .page-blog-five88-com-hot-games-2024 a[class*="button"],
    .page-blog-five88-com-hot-games-2024 a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* General Sections */
    .page-blog-five88-com-hot-games-2024__introduction-section,
    .page-blog-five88-com-hot-games-2024__game-analysis,
    .page-blog-five88-com-hot-games-2024__promotions-section,
    .page-blog-five88-com-hot-games-2024__conclusion-section,
    .page-blog-five88-com-hot-games-2024__games-showcase,
    .page-blog-five88-com-hot-games-2024__tips-section,
    .page-blog-five88-com-hot-games-2024__faq-section {
        padding: 40px 0;
    }

    .page-blog-five88-com-hot-games-2024__container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-five88-com-hot-games-2024__section-title {
        font-size: 1.8rem;
    }

    /* Game Cards Grid */
    .page-blog-five88-com-hot-games-2024__game-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-five88-com-hot-games-2024__game-card {
        padding-bottom: 15px;
    }

    .page-blog-five88-com-hot-games-2024__game-card-image {
        height: 180px;
    }

    .page-blog-five88-com-hot-games-2024__game-card-title {
        font-size: 1.3rem;
    }

    .page-blog-five88-com-hot-games-2024__game-card-text {
        font-size: 0.95rem;
    }

    /* Game Analysis */
    .page-blog-five88-com-hot-games-2024__analysis-item {
        padding: 25px;
    }

    .page-blog-five88-com-hot-games-2024__analysis-title {
        font-size: 1.6rem;
    }

    .page-blog-five88-com-hot-games-2024__analysis-subtitle {
        font-size: 1.3rem;
    }

    .page-blog-five88-com-hot-games-2024__analysis-list {
        font-size: 1rem;
        padding-left: 20px;
    }

    .page-blog-five88-com-hot-games-2024__analysis-image {
        max-height: 250px;
    }

    /* Tips Section */
    .page-blog-five88-com-hot-games-2024__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-five88-com-hot-games-2024__tip-card {
        padding: 25px;
    }

    .page-blog-five88-com-hot-games-2024__tip-title {
        font-size: 1.4rem;
    }

    /* Promotions */
    .page-blog-five88-com-hot-games-2024__promo-list {
        margin: 20px auto;
        padding: 0 10px;
    }

    .page-blog-five88-com-hot-games-2024__promo-list li {
        font-size: 1rem;
        padding: 12px 15px;
    }

    /* FAQ */
    .page-blog-five88-com-hot-games-2024__faq-list {
        margin-top: 30px;
    }

    .page-blog-five88-com-hot-games-2024__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-blog-five88-com-hot-games-2024__faq-answer {
        padding: 0 20px 15px;
        font-size: 1rem;
    }

    /* Conclusion */
    .page-blog-five88-com-hot-games-2024__conclusion-section p {
        font-size: 1rem;
        margin: 15px auto 25px;
    }

    /* Global Image Responsive Rule */
    .page-blog-five88-com-hot-games-2024 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-five88-com-hot-games-2024__section,
    .page-blog-five88-com-hot-games-2024__card,
    .page-blog-five88-com-hot-games-2024__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}