/* style/resources-best-games-on-nh88.css */

:root {
    --nh88-primary-color: #003366;
    --nh88-secondary-color: #FFCC00;
    --nh88-text-dark: #333333;
    --nh88-text-light: #ffffff;
    --nh88-background-light: #f5f5f5;
    --nh88-background-dark: #002244;
    --nh88-accent-gold: #e6b800;
    --nh88-border-color: #cccccc;
}

.page-resources-best-games-on-nh88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--nh88-text-dark);
    background-color: var(--nh88-background-light);
}

.page-resources-best-games-on-nh88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-best-games-on-nh88__hero {
    background: linear-gradient(135deg, var(--nh88-primary-color) 0%, var(--nh88-background-dark) 100%);
    color: var(--nh88-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-best-games-on-nh88__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--nh88-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-resources-best-games-on-nh88__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-resources-best-games-on-nh88__btn--primary {
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-resources-best-games-on-nh88__btn--primary:hover {
    background-color: var(--nh88-accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-resources-best-games-on-nh88__btn--secondary {
    background-color: transparent;
    color: var(--nh88-secondary-color);
    border: 2px solid var(--nh88-secondary-color);
    margin-left: 20px;
}

.page-resources-best-games-on-nh88__btn--secondary:hover {
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
    transform: translateY(-3px);
}

.page-resources-best-games-on-nh88__section-title {
    font-size: 2.5em;
    color: var(--nh88-primary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-resources-best-games-on-nh88__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: var(--nh88-text-dark);
}

.page-resources-best-games-on-nh88__intro {
    padding: 60px 0;
    background-color: var(--nh88-background-light);
}

.page-resources-best-games-on-nh88__intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-best-games-on-nh88__text-block {
    flex: 1;
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--nh88-text-dark);
}

.page-resources-best-games-on-nh88__text-block p {
    margin-bottom: 15px;
}

.page-resources-best-games-on-nh88__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-resources-best-games-on-nh88__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-best-games-on-nh88__game-categories {
    padding: 80px 0;
    background-color: var(--nh88-background-dark);
    color: var(--nh88-text-light);
}

.page-resources-best-games-on-nh88__game-categories .page-resources-best-games-on-nh88__section-title {
    color: var(--nh88-secondary-color);
}

.page-resources-best-games-on-nh88__game-categories .page-resources-best-games-on-nh88__section-description {
    color: var(--nh88-text-light);
}

.page-resources-best-games-on-nh88__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-best-games-on-nh88__game-card {
    background-color: var(--nh88-primary-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-best-games-on-nh88__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-best-games-on-nh88__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-best-games-on-nh88__card-title {
    font-size: 1.8em;
    color: var(--nh88-secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-best-games-on-nh88__card-text {
    font-size: 1em;
    color: var(--nh88-text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources-best-games-on-nh88__game-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.page-resources-best-games-on-nh88__game-list li {
    color: var(--nh88-text-light);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-resources-best-games-on-nh88__game-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--nh88-secondary-color);
}

.page-resources-best-games-on-nh88__game-card .page-resources-best-games-on-nh88__btn {
    width: 100%;
    margin-top: auto; /* Push button to bottom */
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
}

.page-resources-best-games-on-nh88__game-card .page-resources-best-games-on-nh88__btn:hover {
    background-color: var(--nh88-accent-gold);
    transform: translateY(-3px);
}

.page-resources-best-games-on-nh88__why-choose {
    padding: 80px 0;
    background-color: var(--nh88-background-light);
}

.page-resources-best-games-on-nh88__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-resources-best-games-on-nh88__reason-item {
    background-color: var(--nh88-text-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-resources-best-games-on-nh88__reason-item:hover {
    transform: translateY(-8px);
}

.page-resources-best-games-on-nh88__reason-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.page-resources-best-games-on-nh88__reason-title {
    font-size: 1.5em;
    color: var(--nh88-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-best-games-on-nh88__reason-text {
    font-size: 0.95em;
    color: var(--nh88-text-dark);
}

.page-resources-best-games-on-nh88__how-to-start {
    padding: 80px 0;
    background-color: var(--nh88-primary-color);
    color: var(--nh88-text-light);
}

.page-resources-best-games-on-nh88__how-to-start .page-resources-best-games-on-nh88__section-title {
    color: var(--nh88-secondary-color);
}

.page-resources-best-games-on-nh88__how-to-start .page-resources-best-games-on-nh88__section-description {
    color: var(--nh88-text-light);
}

.page-resources-best-games-on-nh88__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-resources-best-games-on-nh88__step-item {
    background-color: var(--nh88-background-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-best-games-on-nh88__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 204, 0, 0.3));
}

.page-resources-best-games-on-nh88__step-title {
    font-size: 1.6em;
    color: var(--nh88-secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-best-games-on-nh88__step-text {
    font-size: 0.95em;
    color: var(--nh88-text-light);
}

.page-resources-best-games-on-nh88__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-resources-best-games-on-nh88__responsible-gaming {
    padding: 80px 0;
    background-color: var(--nh88-background-light);
}

.page-resources-best-games-on-nh88__responsible-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-resources-best-games-on-nh88__image--small {
    max-width: 400px;
    flex-shrink: 0;
}

.page-resources-best-games-on-nh88__faq {
    padding: 80px 0;
    background-color: var(--nh88-primary-color);
    color: var(--nh88-text-light);
}

.page-resources-best-games-on-nh88__faq .page-resources-best-games-on-nh88__section-title {
    color: var(--nh88-secondary-color);
}

.page-resources-best-games-on-nh88__faq-item {
    background-color: var(--nh88-background-dark);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-best-games-on-nh88__faq-question {
    font-size: 1.3em;
    color: var(--nh88-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-resources-best-games-on-nh88__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-resources-best-games-on-nh88__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-best-games-on-nh88__faq-answer {
    font-size: 1em;
    color: var(--nh88-text-light);
    display: none;
    padding-top: 10px;
}

.page-resources-best-games-on-nh88__faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-best-games-on-nh88__hero-title {
        font-size: 2.5em;
    }

    .page-resources-best-games-on-nh88__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-best-games-on-nh88__intro-content,
    .page-resources-best-games-on-nh88__responsible-content {
        flex-direction: column;
        text-align: center;
    }

    .page-resources-best-games-on-nh88__image-wrapper,
    .page-resources-best-games-on-nh88__image--small {
        margin-top: 30px;
    }

    .page-resources-best-games-on-nh88__image {
        max-width: 80%;
    }

    .page-resources-best-games-on-nh88__section-title {
        font-size: 2em;
    }

    .page-resources-best-games-on-nh88__category-grid,
    .page-resources-best-games-on-nh88__why-choose-grid,
    .page-resources-best-games-on-nh88__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-resources-best-games-on-nh88__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-resources-best-games-on-nh88__hero {
        padding: 80px 0;
    }

    .page-resources-best-games-on-nh88__hero-title {
        font-size: 2em;
    }

    .page-resources-best-games-on-nh88__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-best-games-on-nh88__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-best-games-on-nh88__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-resources-best-games-on-nh88__cta-bottom .page-resources-best-games-on-nh88__btn {
        display: block;
        margin: 15px auto;
    }

    .page-resources-best-games-on-nh88__section-title {
        font-size: 1.8em;
    }

    .page-resources-best-games-on-nh88__card-title {
        font-size: 1.5em;
    }

    .page-resources-best-games-on-nh88__reason-title,
    .page-resources-best-games-on-nh88__step-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-resources-best-games-on-nh88__hero-title {
        font-size: 1.8em;
    }

    .page-resources-best-games-on-nh88__hero-subtitle {
        font-size: 0.9em;
    }

    .page-resources-best-games-on-nh88__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-best-games-on-nh88__section-title {
        font-size: 1.5em;
    }

    .page-resources-best-games-on-nh88__image {
        max-width: 100%;
    }
}