:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg-color: #111111;
    --page-bg-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --header-offset: 120px; /* Default desktop offset */
}

.page-blog-nustargame-latest-features {
    background-color: var(--page-bg-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-nustargame-latest-features__hero-section {
    position: relative;
    padding-top: var(--header-offset); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, #222222, #0A0A0A); /* Dark gradient for the hero section */
    color: var(--text-main-color);
    text-align: center;
    overflow: hidden; /* Ensure no image overflow */
}

.page-blog-nustargame-latest-features__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-blog-nustargame-latest-features__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    filter: none; /* No CSS filters */
}

.page-blog-nustargame-latest-features__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure sufficient height */
}

.page-blog-nustargame-latest-features__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
    max-width: 60ch; /* Limit width for readability */
}

.page-blog-nustargame-latest-features__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    max-width: 80ch; /* Limit width for readability */
}

.page-blog-nustargame-latest-features__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; /* Ensure container fills width */
    max-width: 500px; /* Limit button group width */
    box-sizing: border-box;
}

.page-blog-nustargame-latest-features__btn-primary,
.page-blog-nustargame-latest-features__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons fit */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-blog-nustargame-latest-features__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text for contrast */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-nustargame-latest-features__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-nustargame-latest-features__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.2);
}

.page-blog-nustargame-latest-features__btn-secondary:hover {
    background-color: rgba(255, 211, 107, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-blog-nustargame-latest-features__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-blog-nustargame-latest-features__section:last-of-type {
    border-bottom: none;
}

.page-blog-nustargame-latest-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-nustargame-latest-features__section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-blog-nustargame-latest-features__paragraph {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main-color);
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-nustargame-latest-features__image-wrapper {
    text-align: center;
    margin: 40px auto;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-nustargame-latest-features__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    filter: none; /* No CSS filters */
    min-width: 200px;
    min-height: 200px;
}

.page-blog-nustargame-latest-features__game-list,
.page-blog-nustargame-latest-features__payment-options {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
}

.page-blog-nustargame-latest-features__list-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-nustargame-latest-features__list-item strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-blog-nustargame-latest-features__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-blog-nustargame-latest-features__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-nustargame-latest-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-blog-nustargame-latest-features__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-nustargame-latest-features__faq-question h3 {
    margin: 0;
    color: var(--text-main-color);
    font-size: 1.1rem;
    flex-grow: 1;
}

.page-blog-nustargame-latest-features__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-blog-nustargame-latest-features__faq-item.active .page-blog-nustargame-latest-features__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-nustargame-latest-features__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-main-color);
}

.page-blog-nustargame-latest-features__faq-item.active .page-blog-nustargame-latest-features__faq-answer {
    max-height: 1000px !important; /* Use !important for override */
    padding: 20px; /* Restore padding when active */
}

.page-blog-nustargame-latest-features__faq-answer p {
    margin: 0;
    font-size: 1rem;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-nustargame-latest-features__hero-content {
        min-height: 400px;
    }
    .page-blog-nustargame-latest-features__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-nustargame-latest-features__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-offset: 100px; /* Mobile header offset */
    }

    .page-blog-nustargame-latest-features__hero-section {
        padding-top: var(--header-offset) !important; /* Apply mobile offset */
    }

    .page-blog-nustargame-latest-features__hero-content {
        padding: 60px 15px;
        min-height: 350px;
    }

    .page-blog-nustargame-latest-features__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        max-width: 100%;
    }

    .page-blog-nustargame-latest-features__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        max-width: 100%;
    }

    .page-blog-nustargame-latest-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-nustargame-latest-features__btn-primary,
    .page-blog-nustargame-latest-features__btn-secondary {
        width: 100% !important; /* Force full width for mobile buttons */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-blog-nustargame-latest-features__section {
        padding: 40px 0;
    }

    .page-blog-nustargame-latest-features__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-nustargame-latest-features__section-title {
        font-size: 1.8rem;
    }

    .page-blog-nustargame-latest-features__paragraph {
        font-size: 1rem;
        max-width: 100%;
    }

    .page-blog-nustargame-latest-features__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-blog-nustargame-latest-features__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-nustargame-latest-features__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-blog-nustargame-latest-features__faq-question h3 {
        font-size: 1rem;
    }
    .page-blog-nustargame-latest-features__faq-answer {
        padding: 0 15px;
    }
    .page-blog-nustargame-latest-features__faq-item.active .page-blog-nustargame-latest-features__faq-answer {
        padding: 15px;
    }
    .page-blog-nustargame-latest-features__faq-toggle {
        font-size: 1.5rem;
    }
}

/* Ensure content area images are not small */
.page-blog-nustargame-latest-features img:not(.page-blog-nustargame-latest-features__hero-image) {
    min-width: 200px;
    min-height: 200px;
}

/* Color contrast enforcement */
.page-blog-nustargame-latest-features {
    color: var(--text-main-color); /* #FFF6D6 on #0A0A0A background */
}
.page-blog-nustargame-latest-features__card,
.page-blog-nustargame-latest-features__list-item,
.page-blog-nustargame-latest-features__faq-item {
    background: var(--card-bg-color); /* #111111 */
    color: var(--text-main-color); /* #FFF6D6 */
}
/* Ensure button text is white on gradient button */
.page-blog-nustargame-latest-features__btn-primary {
    color: #ffffff;
}
/* Ensure secondary button text has enough contrast with its background */
.page-blog-nustargame-latest-features__btn-secondary {
    color: var(--secondary-color); /* #FFD36B on transparent/dark background */
}

/* No CSS filters on images */
.page-blog-nustargame-latest-features img {
    filter: none;
}