.page-news {
    color: #F2FFF6; /* Text Main color, suitable for dark background */
    background-color: #08160F; /* Background color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    background-color: #08160F;
}

.page-news__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
}

.page-news__hero-content {
    text-align: center;
    max-width: 900px;
    margin-top: -60px; /* Pull content slightly over the image for better visual flow */
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-news__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E; /* Gold color for main title */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__description {
    font-size: 1.15rem;
    color: #A7D9B8; /* Text Secondary color */
    margin-bottom: 30px;
}

.page-news__section {
    padding: 80px 20px;
    background-color: #08160F;
    color: #F2FFF6;
}

.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-news__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2C14E; /* Gold color for section titles */
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-news__section-description {
    font-size: 1.1rem;
    color: #A7D9B8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.page-news__news-card {
    background-color: #11271B; /* Card BG color */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-news__card-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
}

.page-news__card-content {
    padding: 25px;
}

.page-news__card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-news__card-title a {
    color: #F2FFF6; /* Text Main color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: #22C768; /* Auxiliary color */
}

.page-news__card-meta {
    font-size: 0.9rem;
    color: #A7D9B8;
    margin-bottom: 15px;
}

.page-news__card-text {
    font-size: 1rem;
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-news__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main color */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news__btn-secondary {
    background-color: transparent;
    color: #2AD16F; /* Lighter green for text */
    border: 2px solid #2E7A4E; /* Border color */
}

.page-news__btn-secondary:hover {
    background-color: #2AD16F;
    color: #F2FFF6;
    border-color: #2AD16F;
}

.page-news__view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-news__promotions {
    background-color: #0A4B2C; /* Deep Green */
}

.page-news__promo-card {
    display: flex;
    background-color: #11271B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
}

.page-news__promo-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-news__promo-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-news__promo-title {
    font-size: 1.8rem;
    color: #F2C14E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-news__promo-text {
    font-size: 1.05rem;
    color: #A7D9B8;
    margin-bottom: 25px;
}

.page-news__promo-highlights {
    background-color: #11271B;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news__promo-subtitle,
.page-news__feature-subtitle,
.page-news__security-subtitle {
    font-size: 1.5rem;
    color: #2AD16F;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-news__promo-list,
.page-news__feature-list,
.page-news__security-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-news__promo-list li,
.page-news__feature-list li,
.page-news__security-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #A7D9B8;
    font-size: 1rem;
}

.page-news__promo-list li::before,
.page-news__feature-list li::before,
.page-news__security-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #57E38D; /* Glow color */
    font-size: 1.1rem;
    line-height: 1;
}

.page-news__game-highlight {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.page-news__game-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.page-news__game-content {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.page-news__game-title {
    font-size: 1.8rem;
    color: #F2C14E;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-news__game-text {
    font-size: 1.05rem;
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-news__game-content .page-news__btn-secondary {
    margin-right: 15px;
    margin-bottom: 10px;
}

.page-news__feature-updates .page-news__btn-primary {
    margin-top: 30px;
}

.page-news__security-features {
    background-color: #11271B;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news__security-text {
    font-size: 1.05rem;
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-news__security-features .page-news__btn-secondary {
    margin-right: 15px;
    margin-top: 20px;
}

.page-news__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-news__faq-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-news__faq-item[open] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6;
    cursor: pointer;
    background-color: #1E3A2A;
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-news__faq-question::-webkit-details-marker {
    display: none;
}

.page-news__faq-qtext {
    flex-grow: 1;
}

.page-news__faq-toggle {
    font-size: 1.5rem;
    color: #57E38D;
    margin-left: 15px;
    width: 20px;
    text-align: center;
}

.page-news__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #A7D9B8;
}

.page-news__cta-section {
    padding: 80px 20px;
    background-color: #0A4B2C;
    text-align: center;
}

.page-news__cta-box {
    background-color: #11271B;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-news__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.page-news__cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-news__cta-description {
    font-size: 1.15rem;
    color: #A7D9B8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-news__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 400px; /* Limit button group width */
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-news__promo-card,
    .page-news__game-highlight {
        flex-direction: column;
    }

    .page-news__promo-image,
    .page-news__promo-content,
    .page-news__game-image,
    .page-news__game-content {
        width: 100%;
    }

    .page-news__promo-image {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .page-news__promo-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-news__hero-section {
        padding: 10px 15px 40px;
    }

    .page-news__hero-content {
        margin-top: -40px;
        padding: 0 15px;
    }

    .page-news__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-news__description {
        font-size: 1rem;
    }

    .page-news__section {
        padding: 50px 15px;
    }

    .page-news__section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-news__news-grid {
        grid-template-columns: 1fr;
    }

    .page-news__card-image {
        height: 200px;
    }

    .page-news__card-title {
        font-size: 1.3rem;
    }

    .page-news__promo-card,
    .page-news__game-highlight {
        gap: 20px;
    }

    .page-news__promo-content,
    .page-news__promo-highlights,
    .page-news__security-features {
        padding: 30px 20px;
    }

    .page-news__promo-title,
    .page-news__game-title {
        font-size: 1.5rem;
    }

    .page-news__promo-subtitle,
    .page-news__feature-subtitle,
    .page-news__security-subtitle {
        font-size: 1.3rem;
    }

    .page-news__faq-question {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .page-news__cta-section {
        padding: 50px 15px;
    }

    .page-news__cta-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-news__cta-description {
        font-size: 1rem;
    }

    .page-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
    }

    .page-news__btn-primary,
    .page-news__btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Mobile image responsiveness */
    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-news__section,
    .page-news__card,
    .page-news__container,
    .page-news__cta-box,
    .page-news__promo-card,
    .page-news__promo-highlights,
    .page-news__game-highlight,
    .page-news__feature-updates,
    .page-news__security-features {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-news__hero-section {
        padding-top: 10px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .page-news__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 0;
    }

    /* Mobile button responsiveness */
    .page-news__cta-button,
    .page-news__btn-primary,
    .page-news__btn-secondary,
    .page-news a[class*="button"],
    .page-news a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-news__cta-buttons,
    .page-news__button-group,
    .page-news__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-news__cta-buttons {
        flex-direction: column;
    }
}