/* style/resources-go99-game-introduction.css */
.page-resources-go99-game-introduction {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-resources-go99-game-introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-go99-game-introduction__hero-section {
    background: linear-gradient(135deg, #0A6847 0%, #208a65 100%); /* Slightly lighter green for gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-resources-go99-game-introduction__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-go99-game-introduction__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-resources-go99-game-introduction__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-go99-game-introduction__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A6847; /* Deep green text */
}

.page-resources-go99-game-introduction__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-go99-game-introduction__btn--secondary {
    background-color: #0A6847; /* Deep green button */
    color: #FFFFFF;
    border: 2px solid #FFD700;
}

.page-resources-go99-game-introduction__btn--secondary:hover {
    background-color: #074a32;
    transform: translateY(-2px);
}

.page-resources-go99-game-introduction__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources-go99-game-introduction__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.page-resources-go99-game-introduction__section:nth-child(even) {
    background-color: #fefefe;
}

.page-resources-go99-game-introduction__section-title {
    font-size: 2.5em;
    color: #0A6847;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-go99-game-introduction__sub-section-title {
    font-size: 1.8em;
    color: #0A6847;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-go99-game-introduction__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-go99-game-introduction__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-resources-go99-game-introduction__content-text {
    flex: 1;
}

.page-resources-go99-game-introduction__content-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444444;
}

.page-resources-go99-game-introduction__content-text ul,
.page-resources-go99-game-introduction__content-text ol {
    margin-left: 25px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444444;
}

.page-resources-go99-game-introduction__content-text li {
    margin-bottom: 8px;
}

.page-resources-go99-game-introduction__content-image {
    flex: 1;
    text-align: center;
}

.page-resources-go99-game-introduction__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-resources-go99-game-introduction__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-go99-game-introduction__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #f4fcf8; /* Light green background for feature items */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-resources-go99-game-introduction__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-resources-go99-game-introduction__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-resources-go99-game-introduction__feature-item h3 {
    font-size: 1.5em;
    color: #0A6847;
    margin-bottom: 15px;
}

.page-resources-go99-game-introduction__feature-item p {
    color: #555555;
    font-size: 1em;
}

.page-resources-go99-game-introduction__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-resources-go99-game-introduction__promo-list li {
    background-color: #e6ffe6; /* Very light green */
    border-left: 5px solid #0A6847;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #222222;
}

.page-resources-go99-game-introduction__review ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-go99-game-introduction__review ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444444;
}

.page-resources-go99-game-introduction__tip-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-resources-go99-game-introduction__tip-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333333;
}

.page-resources-go99-game-introduction__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-resources-go99-game-introduction__faq-question {
    font-size: 1.3em;
    color: #0A6847;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-go99-game-introduction__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-resources-go99-game-introduction__faq-item.active .page-resources-go99-game-introduction__faq-question::after {
    transform: rotate(45deg);
}

.page-resources-go99-game-introduction__faq-answer {
    font-size: 1.05em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-resources-go99-game-introduction__faq-item.active .page-resources-go99-game-introduction__faq-answer {
    max-height: 200px; /* Adjust as needed for content length */
    padding-top: 15px;
}

.page-resources-go99-game-introduction__cta-section {
    background-color: #0A6847;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-resources-go99-game-introduction__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-go99-game-introduction__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-go99-game-introduction__hero-title {
        font-size: 2.8em;
    }

    .page-resources-go99-game-introduction__section-title {
        font-size: 2em;
    }

    .page-resources-go99-game-introduction__content-grid {
        flex-direction: column;
    }

    .page-resources-go99-game-introduction__content-grid--reverse {
        flex-direction: column;
    }

    .page-resources-go99-game-introduction__content-image {
        margin-top: 30px;
    }

    .page-resources-go99-game-introduction__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-go99-game-introduction__hero-section {
        padding: 80px 0;
    }

    .page-resources-go99-game-introduction__hero-title {
        font-size: 2.2em;
    }

    .page-resources-go99-game-introduction__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-go99-game-introduction__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }

    .page-resources-go99-game-introduction__section {
        padding: 40px 0;
    }

    .page-resources-go99-game-introduction__section-title {
        font-size: 1.8em;
    }

    .page-resources-go99-game-introduction__sub-section-title {
        font-size: 1.5em;
    }

    .page-resources-go99-game-introduction__cta-title {
        font-size: 2.2em;
    }

    .page-resources-go99-game-introduction__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-go99-game-introduction__hero-section {
        padding: 60px 0;
    }

    .page-resources-go99-game-introduction__hero-title {
        font-size: 1.8em;
    }

    .page-resources-go99-game-introduction__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-go99-game-introduction__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .page-resources-go99-game-introduction__section-title {
        font-size: 1.6em;
    }

    .page-resources-go99-game-introduction__sub-section-title {
        font-size: 1.3em;
    }

    .page-resources-go99-game-introduction__feature-item {
        padding: 20px;
    }

    .page-resources-go99-game-introduction__cta-title {
        font-size: 1.8em;
    }

    .page-resources-go99-game-introduction__cta-description {
        font-size: 1em;
    }
}