/* style/games-new-game-mystery-orient.css */

.page-games-new-game-mystery-orient {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A2B4C; /* Main dark blue background */
    line-height: 1.6;
}

.page-games-new-game-mystery-orient__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height for visual impact */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-games-new-game-mystery-orient__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-games-new-game-mystery-orient__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 43, 76, 0.7), rgba(26, 43, 76, 0.9));
    z-index: 2;
}

.page-games-new-game-mystery-orient__hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    max-width: 900px;
    padding: 0 20px;
}

.page-games-new-game-mystery-orient__hero-title {
    font-size: 3.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Accent gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-games-new-game-mystery-orient__hero-subtitle {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-games-new-game-mystery-orient__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-games-new-game-mystery-orient__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 10px;
    cursor: pointer;
}

.page-games-new-game-mystery-orient__btn--primary {
    background-color: #FFD700;
    color: #1A2B4C;
    border: 2px solid #FFD700;
}

.page-games-new-game-mystery-orient__btn--primary:hover {
    background-color: #E6C200;
    color: #0F1A30;
}

.page-games-new-game-mystery-orient__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-games-new-game-mystery-orient__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
}

.page-games-new-game-mystery-orient__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-games-new-game-mystery-orient__section {
    padding: 80px 0;
    text-align: center;
}

.page-games-new-game-mystery-orient__section--intro {
    background-color: #1A2B4C;
}

.page-games-new-game-mystery-orient__section--features {
    background-color: #0F1A30;
}

.page-games-new-game-mystery-orient__section--gameplay {
    background-color: #1A2B4C;
}

.page-games-new-game-mystery-orient__section--rewards {
    background-color: #0F1A30;
}

.page-games-new-game-mystery-orient__section--platform-advantage {
    background-color: #1A2B4C;
}

.page-games-new-game-mystery-orient__section--responsible-gaming {
    background-color: #0F1A30;
}

.page-games-new-game-mystery-orient__section--cta {
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    position: relative;
    padding: 100px 0;
}

.page-games-new-game-mystery-orient__section--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 43, 76, 0.8);
    z-index: 1;
}

.page-games-new-game-mystery-orient__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-new-game-mystery-orient__container--cta {
    position: relative;
    z-index: 2;
}

.page-games-new-game-mystery-orient__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-games-new-game-mystery-orient__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-games-new-game-mystery-orient__section-title--light {
    color: #FFFFFF;
}

.page-games-new-game-mystery-orient__section-title--light::after {
    background-color: #FFFFFF;
}

.page-games-new-game-mystery-orient__text-block {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-games-new-game-mystery-orient__text-block--light {
    color: #FFFFFF;
}

.page-games-new-game-mystery-orient__keyword-emphasis {
    color: #FFD700;
    font-weight: bold;
}

.page-games-new-game-mystery-orient__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-games-new-game-mystery-orient__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-games-new-game-mystery-orient__feature-item {
    background-color: #1A2B4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-games-new-game-mystery-orient__feature-item:hover {
    transform: translateY(-10px);
}

.page-games-new-game-mystery-orient__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-new-game-mystery-orient__feature-description {
    font-size: 1em;
    color: #C0C0C0;
}

.page-games-new-game-mystery-orient__two-column-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-games-new-game-mystery-orient__column-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-games-new-game-mystery-orient__column-image {
    flex: 1;
    min-width: 300px;
}

.page-games-new-game-mystery-orient__image-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-games-new-game-mystery-orient__feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    text-align: left;
}

.page-games-new-game-mystery-orient__feature-list li {
    background-color: #0F1A30;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-games-new-game-mystery-orient__list-highlight {
    color: #FFD700;
}

.page-games-new-game-mystery-orient__rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-games-new-game-mystery-orient__reward-item {
    background-color: #1A2B4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-games-new-game-mystery-orient__reward-item:hover {
    transform: translateY(-10px);
}

.page-games-new-game-mystery-orient__reward-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-new-game-mystery-orient__reward-description {
    font-size: 1em;
    color: #C0C0C0;
}

.page-games-new-game-mystery-orient__image-rewards {
    margin-top: 60px;
}

.page-games-new-game-mystery-orient__platform-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-games-new-game-mystery-orient__platform-list li {
    background-color: #0F1A30;
    margin-bottom: 12px;
    padding: 18px 25px;
    border-left: 6px solid #FFD700;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.page-games-new-game-mystery-orient__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-games-new-game-mystery-orient__section--faq {
    background-color: #0F1A30;
    text-align: left;
}

.page-games-new-game-mystery-orient__faq-item {
    background-color: #1A2B4C;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-games-new-game-mystery-orient__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-games-new-game-mystery-orient__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
}

/* A simple way to show/hide answer, JS will toggle a class */
.page-games-new-game-mystery-orient__faq-item.active .page-games-new-game-mystery-orient__faq-question::after {
    content: '-';
}

.page-games-new-game-mystery-orient__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-left: 10px;
}

.page-games-new-game-mystery-orient__faq-item.active .page-games-new-game-mystery-orient__faq-answer {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-games-new-game-mystery-orient__hero-title {
        font-size: 3em;
    }
    .page-games-new-game-mystery-orient__hero-subtitle {
        font-size: 1.5em;
    }
    .page-games-new-game-mystery-orient__section-title {
        font-size: 2.2em;
    }
    .page-games-new-game-mystery-orient__two-column-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-games-new-game-mystery-orient__hero-section {
        height: 500px;
    }
    .page-games-new-game-mystery-orient__hero-title {
        font-size: 2.5em;
    }
    .page-games-new-game-mystery-orient__hero-subtitle {
        font-size: 1.2em;
    }
    .page-games-new-game-mystery-orient__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-new-game-mystery-orient__section {
        padding: 60px 0;
    }
    .page-games-new-game-mystery-orient__section-title {
        font-size: 1.8em;
    }
    .page-games-new-game-mystery-orient__text-block {
        font-size: 1em;
    }
    .page-games-new-game-mystery-orient__feature-grid, .page-games-new-game-mystery-orient__rewards-grid {
        grid-template-columns: 1fr;
    }
    .page-games-new-game-mystery-orient__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-new-game-mystery-orient__btn--large {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-games-new-game-mystery-orient__hero-section {
        height: 400px;
    }
    .page-games-new-game-mystery-orient__hero-title {
        font-size: 2em;
    }
    .page-games-new-game-mystery-orient__hero-subtitle {
        font-size: 1em;
    }
    .page-games-new-game-mystery-orient__btn {
        margin: 5px 0;
    }
    .page-games-new-game-mystery-orient__section {
        padding: 40px 0;
    }
    .page-games-new-game-mystery-orient__section-title {
        font-size: 1.5em;
    }
    .page-games-new-game-mystery-orient__faq-question {
        font-size: 1.2em;
    }
    .page-games-new-game-mystery-orient__faq-answer {
        font-size: 0.95em;
    }
}