/* style/resources-hello88-popular-games-guide.css */

/* Base styles for the page content */
.page-resources-hello88-popular-games-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Container for content width */
.page-resources-hello88-popular-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Article content area for long reads */
.page-resources-hello88-popular-games-guide__article-content {
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.page-resources-hello88-popular-games-guide__hero {
    background: linear-gradient(135deg, #1A237E, #FFC107);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-resources-hello88-popular-games-guide__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-resources-hello88-popular-games-guide__hero > .page-resources-hello88-popular-games-guide__container {
    position: relative;
    z-index: 2;
}

.page-resources-hello88-popular-games-guide__back-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.page-resources-hello88-popular-games-guide__back-link:hover {
    color: #FFC107;
}

.page-resources-hello88-popular-games-guide__title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-resources-hello88-popular-games-guide__subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-resources-hello88-popular-games-guide__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-resources-hello88-popular-games-guide__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.page-resources-hello88-popular-games-guide__button--primary {
    background-color: #FFC107;
    color: #1A237E;
    border: 2px solid #FFC107;
}

.page-resources-hello88-popular-games-guide__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #ffffff;
}

.page-resources-hello88-popular-games-guide__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-resources-hello88-popular-games-guide__button--secondary:hover {
    background-color: #ffffff;
    color: #1A237E;
    border-color: #ffffff;
}

.page-resources-hello88-popular-games-guide__button--tertiary {
    background-color: #1A237E;
    color: #FFC107;
    border: 2px solid #1A237E;
}

.page-resources-hello88-popular-games-guide__button--tertiary:hover {
    background-color: #0d1259;
    border-color: #0d1259;
    color: #FFC107;
}


.page-resources-hello88-popular-games-guide__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Headings */
.page-resources-hello88-popular-games-guide__heading {
    font-size: 2rem;
    color: #1A237E;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFC107;
    padding-bottom: 10px;
}

.page-resources-hello88-popular-games-guide__sub-heading {
    font-size: 1.5rem;
    color: #1A237E;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraphs */
.page-resources-hello88-popular-games-guide__article-content p {
    margin-bottom: 1em;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* Lists */
.page-resources-hello88-popular-games-guide__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-resources-hello88-popular-games-guide__list li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.page-resources-hello88-popular-games-guide__list ol {
    list-style: decimal;
    margin-left: 20px;
    margin-top: 10px;
}

/* Images within content */
.page-resources-hello88-popular-games-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 25px;
    margin-bottom: 25px;
}

.page-resources-hello88-popular-games-guide__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Call to action banner */
.page-resources-hello88-popular-games-guide__cta-banner {
    background: linear-gradient(90deg, #1A237E, #3F51B5);
    color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-hello88-popular-games-guide__cta-banner-content {
    max-width: 700px;
}

.page-resources-hello88-popular-games-guide__cta-banner-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #FFC107;
}

.page-resources-hello88-popular-games-guide__cta-banner-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.page-resources-hello88-popular-games-guide__cta-banner-image {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-hello88-popular-games-guide__title {
        font-size: 2.2rem;
    }

    .page-resources-hello88-popular-games-guide__subtitle {
        font-size: 1rem;
    }

    .page-resources-hello88-popular-games-guide__heading {
        font-size: 1.8rem;
    }

    .page-resources-hello88-popular-games-guide__sub-heading {
        font-size: 1.3rem;
    }

    .page-resources-hello88-popular-games-guide__article-content {
        padding: 20px;
        margin: 20px auto;
    }

    .page-resources-hello88-popular-games-guide__cta-group {
        flex-direction: column;
    }

    .page-resources-hello88-popular-games-guide__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-hello88-popular-games-guide__cta-banner {
        padding: 30px 20px;
    }

    .page-resources-hello88-popular-games-guide__cta-banner-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-resources-hello88-popular-games-guide__title {
        font-size: 1.8rem;
    }

    .page-resources-hello88-popular-games-guide__hero {
        padding: 60px 0;
    }

    .page-resources-hello88-popular-games-guide__button {
        width: 90%;
    }
}