.changelog-section {

    max-width: 1000px;

    margin: 0 auto;

    padding: 100px 20px;
}

.changelog-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(199,255,49,.08);

    border: 1px solid rgba(199,255,49,.2);

    color: #c7ff31;

    font-size: 13px;

    font-weight: 700;
}

.changelog-timeline {

    position: relative;

    margin-top: 60px;
}

.changelog-timeline::before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    right: 24px;

    width: 2px;

    background: linear-gradient(
        to bottom,
        #c7ff31,
        rgba(199,255,49,.1)
    );
}

.changelog-item {

    position: relative;

    padding-right: 70px;

    margin-bottom: 35px;
}

.changelog-dot {

    position: absolute;

    right: 13px;

    top: 35px;

    width: 24px;

    height: 24px;

    border-radius: 50%;

    background: #c7ff31;

    border: 5px solid #111;

    box-shadow:
        0 0 20px rgba(199,255,49,.5);
}

.changelog-card {

    background: rgba(12,12,12,.88);

    border: 1px solid rgba(199,255,49,.12);

    border-radius: 24px;

    padding: 24px;

    backdrop-filter: blur(12px);

    transition: .3s;
}

.changelog-card:hover {

    transform: translateY(-3px);

    border-color: rgba(199,255,49,.35);

    box-shadow:
        0 0 25px rgba(199,255,49,.08);
}

.changelog-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;
}

.version-label {

    display: inline-block;

    padding: 5px 12px;

    border-radius: 999px;

    background: rgba(255,170,0,.12);

    border: 1px solid rgba(255,170,0,.25);

    color: #ffb347;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 10px;
}

.version-label.stable {

    background: rgba(199,255,49,.1);

    border-color: rgba(199,255,49,.25);

    color: #c7ff31;
}

.changelog-header h3 {

    color: #fff;

    margin: 0;

    font-size: 22px;

    font-weight: 800;
}

.release-date {

    color: #9a9a9a;

    font-size: 14px;
}

.update-name {

    color: #fff;

    margin-bottom: 20px;

    font-size: 18px;
}

.update-list {

    list-style: none;

    padding: 0;

    margin: 0;
}

.update-list li {

    position: relative;

    padding-right: 26px;

    color: #d5d5d5;

    margin-bottom: 12px;
}

.update-list li::before {

    content: "✓";

    position: absolute;

    right: 0;

    color: #c7ff31;

    font-weight: 700;
}

.developer-note {

    margin-top: 20px;

    padding: 18px;

    border-radius: 16px;

    background: rgba(199,255,49,.05);

    border: 1px solid rgba(199,255,49,.12);
}

.developer-note strong {

    display: block;

    color: #c7ff31;

    margin-bottom: 10px;
}

.developer-note p {

    margin: 0;

    color: #d0d0d0;

    line-height: 2;
}

@media(max-width:768px){

    .changelog-item {

        padding-right: 55px;
    }

    .changelog-timeline::before {

        right: 18px;
    }

    .changelog-dot {

        right: 7px;
    }

    .changelog-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }
}