.updates-hero {
    display: grid;
    align-items: center;
    min-height: 46vh;
    padding: 72px 6vw 64px;
    border-bottom: 1px solid var(--border);
}

.updates-container {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.updates-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.98;
    text-wrap: balance;
}

.updates-hero p:not(.eyebrow) {
    max-width: 680px;
    margin: 22px 0 0;
    color: #e2ded3;
    font-size: 1.04rem;
}

.updates-section {
    padding: 58px 6vw 72px;
}

.updates-feed {
    display: grid;
    gap: 12px;
}

.update-card {
    background:
        linear-gradient(180deg, rgba(255, 248, 233, 0.035), rgba(56, 212, 135, 0.015)),
        rgba(31, 29, 29, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    padding: 16px 18px;
}

.update-card--current {
    border-color: rgba(56, 212, 135, 0.36);
}

.discord-message {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.discord-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.discord-content {
    min-width: 0;
}

.discord-header {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: baseline;
    min-height: 20px;
}

.discord-header strong {
    color: #ff4d4d;
    font-size: 0.95rem;
    font-weight: 850;
}

.discord-header time {
    color: #a9a39c;
    font-size: 0.78rem;
    font-weight: 700;
}

.discord-badge {
    color: #fff;
    padding: 1px 6px 2px;
    background: #5865f2;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.update-card h2 {
    margin: 1px 0 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.1;
}

.update-card p,
.update-body li {
    margin: 6px 0 0;
    color: #f1eeee;
    font-size: 0.95rem;
    line-height: 1.45;
}

.update-body {
    margin-top: 6px;
}

.update-body p {
    margin: 0 0 4px;
}

.update-body ul {
    display: grid;
    gap: 2px;
    margin: 4px 0 10px;
    padding-left: 22px;
}

.update-body li {
    margin: 0;
}

.update-body strong {
    color: #ffffff;
    font-weight: 850;
}

.update-body em {
    color: #f4eee6;
}

.update-body code {
    padding: 2px 5px;
    color: #f8f8f2;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.86em;
}

.update-body a {
    color: #79a7ff;
    font-weight: 800;
    text-decoration: none;
}

.update-body a:hover {
    color: #f7f0e4;
}

.discord-line-break {
    height: 12px;
}

.update-link {
    display: inline-flex;
    margin-top: 10px;
    color: #79a7ff;
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
}

.update-link:hover {
    color: #f7f0e4;
}

.update-empty {
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 620px) {
    .update-card {
        padding: 14px;
    }

    .discord-message {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
    }

    .discord-avatar {
        width: 36px;
        height: 36px;
    }
}
