/* style/resources-may88-game-types-features.css */

/* Variables */
:root {
    --may88-primary-color: #4A0E6B;
    --may88-secondary-color: #FFD700;
    --may88-text-dark: #2C0542;
    --may88-text-light: #FFFFFF;
    --may88-background-light: #F8F8F8;
    --may88-background-dark: #3A0C5C;
    --may88-accent-green: #b5f194; /* Complementary to primary */
}

.page-resources-may88-game-types-features {
    font-family: 'Arial', sans-serif;
    color: var(--may88-text-dark);
    line-height: 1.6;
    background-color: var(--may88-background-light);
}

.page-resources-may88-game-types-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-may88-game-types-features__hero {
    background: linear-gradient(135deg, var(--may88-primary-color), #6D169C);
    color: var(--may88-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-may88-game-types-features__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: rotate(20deg);
    z-index: 0;
}

.page-resources-may88-game-types-features__hero > .page-resources-may88-game-types-features__container {
    position: relative;
    z-index: 1;
}

.page-resources-may88-game-types-features__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--may88-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-resources-may88-game-types-features__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-resources-may88-game-types-features__button:hover {
    background-color: #FFC400;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-may88-game-types-features__content-wrapper {
    padding: 60px 0;
}

.page-resources-may88-game-types-features__article-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--may88-text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-may88-game-types-features__heading {
    font-size: 2.2em;
    color: var(--may88-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--may88-secondary-color);
    padding-bottom: 10px;
    font-weight: bold;
}

.page-resources-may88-game-types-features__sub-heading {
    font-size: 1.8em;
    color: var(--may88-text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-may88-game-types-features__article-content p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    color: #333;
}

.page-resources-may88-game-types-features__article-content a {
    color: var(--may88-primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-resources-may88-game-types-features__article-content a:hover {
    color: var(--may88-secondary-color);
    text-decoration: underline;
}

.page-resources-may88-game-types-features__image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-may88-game-types-features__image-inline {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-may88-game-types-features__article-content ul,
.page-resources-may88-game-types-features__article-content ol {
    margin-bottom: 1.5em;
    padding-left: 25px;
}

.page-resources-may88-game-types-features__article-content li {
    margin-bottom: 0.8em;
    font-size: 1.1em;
    color: #444;
}

.page-resources-may88-game-types-features__cta-box {
    background-color: var(--may88-background-dark);
    color: var(--may88-text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-may88-game-types-features__cta-box p {
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--may88-text-light);
}

.page-resources-may88-game-types-features__cta-box .page-resources-may88-game-types-features__button {
    background-color: var(--may88-secondary-color);
    color: var(--may88-primary-color);
}

.page-resources-may88-game-types-features__cta-box .page-resources-may88-game-types-features__button:hover {
    background-color: #FFC400;
}

.page-resources-may88-game-types-features__faq {
    margin-bottom: 25px;
    padding: 15px 20px;
    background-color: var(--may88-background-light);
    border-left: 5px solid var(--may88-primary-color);
    border-radius: 5px;
}

.page-resources-may88-game-types-features__faq .page-resources-may88-game-types-features__sub-heading {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--may88-primary-color);
}

.page-resources-may88-game-types-features__faq p {
    margin-bottom: 0;
    font-size: 1.05em;
    color: #555;
}

.page-resources-may88-game-types-features__back-link-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #ccc;
}

.page-resources-may88-game-types-features__back-link {
    font-size: 1.2em;
    color: var(--may88-primary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid var(--may88-primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-resources-may88-game-types-features__back-link:hover {
    background-color: var(--may88-primary-color);
    color: var(--may88-text-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-may88-game-types-features__title {
        font-size: 2.5em;
    }

    .page-resources-may88-game-types-features__subtitle {
        font-size: 1.2em;
    }

    .page-resources-may88-game-types-features__heading {
        font-size: 1.8em;
    }

    .page-resources-may88-game-types-features__sub-heading {
        font-size: 1.5em;
    }

    .page-resources-may88-game-types-features__article-content {
        padding: 20px;
    }

    .page-resources-may88-game-types-features__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-may88-game-types-features__cta-box p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-may88-game-types-features__title {
        font-size: 2em;
    }

    .page-resources-may88-game-types-features__subtitle {
        font-size: 1em;
    }

    .page-resources-may88-game-types-features__heading {
        font-size: 1.5em;
    }

    .page-resources-may88-game-types-features__sub-heading {
        font-size: 1.3em;
    }

    .page-resources-may88-game-types-features__article-content {
        padding: 15px;
    }

    .page-resources-may88-game-types-features__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-may88-game-types-features__cta-box p {
        font-size: 1em;
    }
}