.page-blog-2024-top-slot-games {
    padding-top: 10px; /* Small top padding for first section */
    background-color: #100224; /* Dark background as per WOW88 style */
    color: var(--secondary-color);
    font-family: Arial, sans-serif;
}

.page-blog-2024-top-slot-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.page-blog-2024-top-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
}

.page-blog-2024-top-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-blog-2024-top-slot-games__hero-content {
    width: 100%;
    max-width: 800px;
}

.page-blog-2024-top-slot-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.page-blog-2024-top-slot-games__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #CCCCCC;
}

.page-blog-2024-top-slot-games__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-blog-2024-top-slot-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.page-blog-2024-top-slot-games__btn--register {
    background-color: var(--register-button-color);
    color: var(--register-login-font-color);
}

.page-blog-2024-top-slot-games__btn--register:hover {
    background-color: #A00707;
}

.page-blog-2024-top-slot-games__btn--login {
    background-color: var(--login-button-color);
    color: var(--register-login-font-color);
}

.page-blog-2024-top-slot-games__btn--login:hover {
    background-color: #A00707;
}

.page-blog-2024-top-slot-games__btn--play {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-blog-2024-top-slot-games__btn--play:hover {
    background-color: #005f2c;
}

.page-blog-2024-top-slot-games__btn--view-all {
    background-color: #83a1f2;
    color: var(--secondary-color);
}

.page-blog-2024-top-slot-games__btn--view-all:hover {
    background-color: #688cec;
}

.page-blog-2024-top-slot-games__section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent dark background for sections */
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-blog-2024-top-slot-games__section:first-of-type {
    margin-top: 30px;
}

.page-blog-2024-top-slot-games__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-2024-top-slot-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-blog-2024-top-slot-games__text-content {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-blog-2024-top-slot-games__highlight {
    color: var(--register-login-font-color);
    font-weight: bold;
}

.page-blog-2024-top-slot-games__slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-2024-top-slot-games__slot-card {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-blog-2024-top-slot-games__slot-card:hover {
    transform: translateY(-5px);
}

.page-blog-2024-top-slot-games__slot-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-2024-top-slot-games__slot-card-content {
    padding: 20px;
    text-align: center;
}

.page-blog-2024-top-slot-games__slot-card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-blog-2024-top-slot-games__slot-card-title a {
    color: var(--register-login-font-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-2024-top-slot-games__slot-card-title a:hover {
    color: var(--primary-color);
}

.page-blog-2024-top-slot-games__slot-card-description {
    font-size: 0.95em;
    color: #C0C0C0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.page-blog-2024-top-slot-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-blog-2024-top-slot-games__benefit-item {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-2024-top-slot-games__benefit-icon {
    width: 100%;
    max-width: 200px; /* Ensure images are not too small */
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.page-blog-2024-top-slot-games__benefit-title {
    font-size: 1.4em;
    color: var(--register-login-font-color);
    margin-bottom: 10px;
}

.page-blog-2024-top-slot-games__benefit-description {
    font-size: 0.95em;
    color: #C0C0C0;
    line-height: 1.6;
}

.page-blog-2024-top-slot-games__guide-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.page-blog-2024-top-slot-games__guide-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-2024-top-slot-games__guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.page-blog-2024-top-slot-games__guide-list-item {
    background-color: rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #E0E0E0;
    position: relative;
    padding-left: 40px;
}

.page-blog-2024-top-slot-games__guide-list-item:last-child {
    margin-bottom: 0;
}

.page-blog-2024-top-slot-games__guide-list-item::before {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-blog-2024-top-slot-games__promotion-card {
    display: flex;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    align-items: center;
}

.page-blog-2024-top-slot-games__promotion-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-2024-top-slot-games__promotion-content {
    padding: 30px;
    width: 50%;
    text-align: left;
}

.page-blog-2024-top-slot-games__promotion-title {
    font-size: 1.8em;
    color: var(--register-login-font-color);
    margin-bottom: 15px;
}

.page-blog-2024-top-slot-games__promotion-description {
    font-size: 1.0em;
    color: #C0C0C0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.page-blog-2024-top-slot-games__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-blog-2024-top-slot-games__faq-item {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
}

.page-blog-2024-top-slot-games__faq-question {
    font-size: 1.2em;
    color: var(--secondary-color);
    padding: 18px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-blog-2024-top-slot-games__faq-question:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.page-blog-2024-top-slot-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-2024-top-slot-games__faq-item--active .page-blog-2024-top-slot-games__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-blog-2024-top-slot-games__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-2024-top-slot-games__faq-answer p {
    padding-bottom: 15px;
    margin: 0;
    color: #E0E0E0;
    line-height: 1.6;
}

.page-blog-2024-top-slot-games__faq-item--active .page-blog-2024-top-slot-games__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-blog-2024-top-slot-games__guide-content {
        flex-direction: column;
    }
    .page-blog-2024-top-slot-games__promotion-card {
        flex-direction: column;
    }
    .page-blog-2024-top-slot-games__promotion-image,
    .page-blog-2024-top-slot-games__promotion-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-blog-2024-top-slot-games__hero-section,
    .page-blog-2024-top-slot-games__section {
        padding: 30px 15px;
    }
    .page-blog-2024-top-slot-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-blog-2024-top-slot-games__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }
    .page-blog-2024-top-slot-games__hero-actions {
        flex-direction: column;
    }
    .page-blog-2024-top-slot-games__btn {
        width: 100%;
        max-width: 250px;
    }
    .page-blog-2024-top-slot-games__slot-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .page-blog-2024-top-slot-games__benefit-icon {
        max-width: 150px;
    }
    .page-blog-2024-top-slot-games__guide-image {
        max-width: 100%;
    }
    .page-blog-2024-top-slot-games__guide-list-item {
        font-size: 0.95em;
    }
    .page-blog-2024-top-slot-games img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-2024-top-slot-games__hero-section {
        padding: 20px 10px;
    }
    .page-blog-2024-top-slot-games__section {
        padding: 25px 10px;
    }
    .page-blog-2024-top-slot-games__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-blog-2024-top-slot-games__description {
        font-size: 0.95em;
    }
    .page-blog-2024-top-slot-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-blog-2024-top-slot-games__slot-card-title {
        font-size: 1.3em;
    }
    .page-blog-2024-top-slot-games__promotion-title {
        font-size: 1.5em;
    }
    .page-blog-2024-top-slot-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-blog-2024-top-slot-games__faq-question::after {
        right: 20px;
    }
    .page-blog-2024-top-slot-games__faq-answer p {
        font-size: 0.9em;
    }
    .page-blog-2024-top-slot-games__promotion-content {
        padding: 20px;
    }
}