.changelog2 {
    max-width: 800px;
    margin: 40px auto;
    padding: 24px;
    background-color: #ffaa01;
    border: 3px solid #d68d00;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.changelog2 h1 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 8px;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.current-version {
    font-weight: 900;
    text-align: center;
    margin: 0 0 24px;
    font-size: 1.2rem;
    color: #ffffff;
}

.version-text-beta {
    color: #eeff00;
}

.versions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.version-beta {
    border: 2px solid #0056b3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0011ff;
    font-weight: 800;
    background: linear-gradient(135deg, #eaf5ff, #bdd9f7);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    width: 250px;
}

.version-changes {
    margin-top: 12px;
    color: #d60000;
    font-weight: 600;
    line-height: 1.5;
    display: block;
}