body {
    background:
        radial-gradient(circle at 18% 18%, rgba(90, 12, 16, 0.18), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(45, 61, 98, 0.08), transparent 24%),
        linear-gradient(180deg, #0b0f14 0%, #0d1117 100%);
}

.updates-hero {
    padding: 170px 0 80px;
    text-align: center;
}

.updates-hero__container {
    max-width: 920px;
}

.updates-hero__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(179, 18, 23, 0.12);
    border: 1px solid rgba(179, 18, 23, 0.24);
    color: #d85a5d;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.updates-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.updates-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #aeb7c2;
    font-size: 1.04rem;
    line-height: 1.9;
}

.updates-featured {
    padding: 0 0 100px;
}

.featured-update {
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(179, 18, 23, 0.12) 0%, rgba(17, 22, 29, 0.96) 35%, rgba(17, 22, 29, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-update__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.featured-update__version {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(179, 18, 23, 0.14);
    border: 1px solid rgba(179, 18, 23, 0.22);
    color: #ff8b8f;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-update__date {
    color: #97a3b2;
    font-size: 0.92rem;
    font-weight: 700;
}

.featured-update h2 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.featured-update p {
    max-width: 880px;
    color: #b3bcc7;
    font-size: 1rem;
    line-height: 1.9;
}

.featured-update__stats {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.featured-stat {
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(12, 17, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-stat strong {
    display: block;
    margin-bottom: 8px;
    color: #f5f7fa;
    font-size: 1rem;
    font-weight: 900;
}

.featured-stat span {
    color: #97a3b2;
    font-size: 0.92rem;
    font-weight: 700;
}

.updates-section {
    padding: 0 0 120px;
}

.updates-list {
    display: grid;
    gap: 24px;
}

.update-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(17, 22, 29, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.update-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.update-card__version {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(179, 18, 23, 0.12);
    color: #ff8b8f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.update-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 900;
}

.update-card__date {
    color: #97a3b2;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.update-card__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.update-block {
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(12, 17, 23, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.update-block h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.98rem;
    font-weight: 900;
}

.update-block ul {
    display: grid;
    gap: 10px;
}

.update-block li {
    color: #aeb7c2;
    font-size: 0.95rem;
    line-height: 1.8;
}

.update-block--green h4 {
    color: #73de98;
}

.update-block--blue h4 {
    color: #7eb0ff;
}

.update-block--red h4 {
    color: #ff8686;
}

@media (max-width: 1100px) {
    .update-card__grid,
    .featured-update__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .updates-hero {
        padding: 145px 0 70px;
    }

    .updates-featured,
    .updates-section {
        padding-bottom: 80px;
    }

    .featured-update,
    .update-card,
    .featured-stat,
    .update-block {
        border-radius: 18px;
    }

    .featured-update,
    .update-card {
        padding: 24px;
    }

    .featured-update__top,
    .update-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .update-card__date {
        white-space: normal;
    }
}