/* style/news-platform-update-march.css */
.page-news-platform-update-march {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Primary dark background */
    line-height: 1.6;
}

.page-news-platform-update-march__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news-platform-update-march__hero {
    background: linear-gradient(135deg, #0A192F 0%, #304462 100%); /* Gradient from primary to a slightly lighter blue */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-platform-update-march__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-news-platform-update-march__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-news-platform-update-march__subtitle {
    font-size: 1.4em;
    color: #f5e6d0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-platform-update-march__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-news-platform-update-march__intro,
.page-news-platform-update-march__features,
.page-news-platform-update-march__responsible-gaming,
.page-news-platform-update-march__faq,
.page-news-platform-update-march__call-to-action {
    padding: 60px 0;
    background-color: #1A2A43; /* Slightly lighter dark blue for sections */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-news-platform-update-march__intro .page-news-platform-update-march__text-content,
.page-news-platform-update-march__responsible-gaming .page-news-platform-update-march__text-content,
.page-news-platform-update-march__call-to-action .page-news-platform-update-march__text-content {
    font-size: 1.1em;
    color: #d0d7e2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-news-platform-update-march__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-platform-update-march__feature-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-update-march__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.page-news-platform-update-march__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD70080); /* Subtle glow for icons */
}

.page-news-platform-update-march__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news-platform-update-march__feature-description {
    font-size: 1em;
    color: #d0d7e2;
}

.page-news-platform-update-march__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.page-news-platform-update-march__cta-text {
    font-size: 1.3em;
    color: #f5e6d0;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-news-platform-update-march__faq-item {
    background-color: #0A192F;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update-march__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-news-platform-update-march__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-news-platform-update-march__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-news-platform-update-march__faq-answer {
    font-size: 1em;
    color: #d0d7e2;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-news-platform-update-march__faq-answer.active {
    max-height: 500px; /* Adjust as needed */
    padding-top: 15px;
}

.page-news-platform-update-march__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-news-platform-update-march__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-platform-update-march__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-news-platform-update-march__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update-march__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-news-platform-update-march__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update-march__btn--tertiary {
    background-color: #2a3d5a; /* A darker shade of blue */
    color: #f5e6d0;
    border: 2px solid #2a3d5a;
}

.page-news-platform-update-march__btn--tertiary:hover {
    background-color: #3b5071;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update-march .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-news-platform-update-march__title {
        font-size: 2.5em;
    }

    .page-news-platform-update-march__subtitle {
        font-size: 1.2em;
    }

    .page-news-platform-update-march__section-title {
        font-size: 2em;
    }

    .page-news-platform-update-march__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-news-platform-update-march__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-news-platform-update-march__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-news-platform-update-march__title {
        font-size: 2em;
    }

    .page-news-platform-update-march__subtitle {
        font-size: 1em;
    }

    .page-news-platform-update-march__section-title {
        font-size: 1.8em;
    }

    .page-news-platform-update-march__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}