/* style/news-platform-updates.css */

.page-news-platform-updates {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Hero Section */
.page-news-platform-updates__hero {
    position: relative;
    height: 500px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background-color: #0A2463;
}

.page-news-platform-updates__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.page-news-platform-updates__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.8), rgba(255, 215, 0, 0.4));
    z-index: 2;
}

.page-news-platform-updates__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.page-news-platform-updates__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-news-platform-updates__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}

/* General Section Styling */
.page-news-platform-updates__section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-news-platform-updates__section:nth-of-type(even) {
    background-color: #fff;
}

.page-news-platform-updates__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
}

.page-news-platform-updates__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-news-platform-updates__item-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

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

.page-news-platform-updates__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-updates__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-news-platform-updates__grid-item .page-news-platform-updates__item-title {
    color: #FFD700;
}

/* Feature List */
.page-news-platform-updates__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-news-platform-updates__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-news-platform-updates__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

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

.page-news-platform-updates__game-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-updates__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-news-platform-updates__game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.page-news-platform-updates__game-card .page-news-platform-updates__card-title {
    padding: 20px;
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 0;
}

.page-news-platform-updates__game-card p {
    padding: 0 20px 20px;
    color: #555;
}

/* CTA Block */
.page-news-platform-updates__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #0A2463;
    border-radius: 8px;
    color: #fff;
}

.page-news-platform-updates__cta-block p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #fff;
}

/* Security List */
.page-news-platform-updates__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-news-platform-updates__security-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

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

.page-news-platform-updates__promo-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-news-platform-updates__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-news-platform-updates__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.page-news-platform-updates__promo-card .page-news-platform-updates__card-title {
    padding: 15px 20px 10px;
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 0;
}

.page-news-platform-updates__promo-card p {
    padding: 0 20px 15px;
    color: #555;
}

/* Get Started Steps */
.page-news-platform-updates__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-news-platform-updates__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-news-platform-updates__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #0A2463;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-news-platform-updates__faq-list {
    margin-top: 40px;
}

.page-news-platform-updates__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.page-news-platform-updates__faq-question {
    font-size: 1.2em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-news-platform-updates__faq-item.active .page-news-platform-updates__faq-question::after {
    transform: rotate(45deg);
}

.page-news-platform-updates__faq-answer {
    font-size: 1em;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none;
}

.page-news-platform-updates__faq-item.active .page-news-platform-updates__faq-answer {
    display: block;
}

/* Commitment Section */
.page-news-platform-updates__commitment {
    background-color: #0A2463;
    color: #fff;
    text-align: center;
}

.page-news-platform-updates__commitment .page-news-platform-updates__section-title {
    color: #FFD700;
}

.page-news-platform-updates__commitment .page-news-platform-updates__section-description {
    color: #fff;
}

/* Buttons */
.page-news-platform-updates__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-news-platform-updates__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-news-platform-updates__btn--primary:hover {
    background-color: #e6c200;
    color: #0A2463;
}

.page-news-platform-updates__btn--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-news-platform-updates__btn--secondary:hover {
    background-color: #071a47;
    color: #FFD700;
    border-color: #e6c200;
}

.page-news-platform-updates__btn--link {
    background: none;
    color: #0A2463;
    padding: 8px 15px;
    border: 1px solid #0A2463;
}

.page-news-platform-updates__btn--link:hover {
    background-color: #0A2463;
    color: #fff;
}

.page-news-platform-updates__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-news-platform-updates__hero {
        height: 400px;
    }

    .page-news-platform-updates__hero-title {
        font-size: 2.5em;
    }

    .page-news-platform-updates__hero-subtitle,
    .page-news-platform-updates__section-description {
        font-size: 1em;
    }

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

    .page-news-platform-updates__item-title {
        font-size: 1.3em;
    }

    .page-news-platform-updates__grid,
    .page-news-platform-updates__feature-list,
    .page-news-platform-updates__game-grid,
    .page-news-platform-updates__promo-grid,
    .page-news-platform-updates__steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-news-platform-updates__hero {
        height: 350px;
    }

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

    .page-news-platform-updates__hero-subtitle {
        font-size: 0.9em;
    }

    .page-news-platform-updates__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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