:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* General page styling */
.page-news-platform-updates {
    background-color: var(--background-color);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-news-platform-updates a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-news-platform-updates a:hover {
    text-decoration: underline;
    color: var(--glow-color);
}

/* Section spacing and titles */
.page-news-platform-updates__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    background-color: var(--deep-green);
}

.page-news-platform-updates__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

.page-news-platform-updates__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-news-platform-updates__hero-content {
    max-width: 900px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
    margin-top: -100px; /* Overlap slightly with image for visual flow */
    position: relative;
    z-index: 1;
    background-color: rgba(8, 22, 15, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-news-platform-updates__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-news-platform-updates__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-news-platform-updates__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-platform-updates__btn-primary,
.page-news-platform-updates__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-news-platform-updates__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-news-platform-updates__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-news-platform-updates__btn-secondary {
    background: transparent;
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
}

.page-news-platform-updates__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-news-platform-updates__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-news-platform-updates__section--dark-bg {
    background-color: var(--background-color);
    color: var(--text-main);
}

.page-news-platform-updates__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
    font-weight: bold;
}

.page-news-platform-updates__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--gold-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-news-platform-updates__sub-title {
    font-size: 1.8em;
    color: var(--glow-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news-platform-updates__paragraph {
    font-size: 1.05em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Image-text blocks */
.page-news-platform-updates__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-news-platform-updates__image-text-block--reverse {
    flex-direction: row-reverse;
}

.page-news-platform-updates__block-image {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    object-fit: cover;
    width: 100%;
    height: auto;
}

.page-news-platform-updates__text-block {
    flex: 1;
    min-width: 400px;
}

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

.page-news-platform-updates__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-updates__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 20px var(--glow-color);
}

.page-news-platform-updates__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-news-platform-updates__card-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news-platform-updates__card-text {
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Guide Steps */
.page-news-platform-updates__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-platform-updates__step-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    padding-top: 60px; /* Space for number */
}

.page-news-platform-updates__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--button-gradient);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid var(--gold-color);
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-news-platform-updates__step-title {
    font-size: 1.4em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-news-platform-updates__step-description {
    color: var(--text-secondary);
}

.page-news-platform-updates__final-cta {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-platform-updates__image-text-block,
    .page-news-platform-updates__image-text-block--reverse {
        flex-direction: column;
        gap: 30px;
    }
    .page-news-platform-updates__block-image,
    .page-news-platform-updates__text-block {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-news-platform-updates__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }

    .page-news-platform-updates__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

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

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

    .page-news-platform-updates__btn-primary,
    .page-news-platform-updates__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
    }

    .page-news-platform-updates__content-area {
        padding: 40px 15px;
    }

    .page-news-platform-updates__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-news-platform-updates__sub-title {
        font-size: 1.5em;
    }

    .page-news-platform-updates__paragraph {
        font-size: 0.95em;
    }

    .page-news-platform-updates__promo-support-grid,
    .page-news-platform-updates__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-news-platform-updates__card {
        padding: 25px;
    }

    .page-news-platform-updates__card-image {
        height: 180px;
    }

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

    .page-news-platform-updates__step-item {
        padding-top: 50px;
    }

    /* Mobile image responsiveness */
    .page-news-platform-updates img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-news-platform-updates__section,
    .page-news-platform-updates__card,
    .page-news-platform-updates__container,
    .page-news-platform-updates__hero-section,
    .page-news-platform-updates__hero-image-wrapper,
    .page-news-platform-updates__hero-content,
    .page-news-platform-updates__image-text-block,
    .page-news-platform-updates__text-block,
    .page-news-platform-updates__promo-support-grid,
    .page-news-platform-updates__guide-steps,
    .page-news-platform-updates__final-cta {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-news-platform-updates__hero-section {
        padding-top: 10px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-news-platform-updates__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-news-platform-updates__content-area {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}