.ship-tab > ul {
    margin: 0 0 40px;
    padding: 12px 0;
    list-style: none;
    border-bottom: 1px solid #E6E6E6;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0 40px;
}
.ship-tab > ul > li {
    list-style: none;
}
.ship-tab > ul > li a {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: normal;
    line-height: 130%;
    position: relative;
    padding: 3px 0;
}
.ship-tab > ul > li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #93F4D5;
    height: 2px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}
.ship-tab > ul > li a.active {
    color: #93F4D5;
    text-shadow: 0 0 1px #93F4D5;
}
.ship-tab > ul > li a.active::after {
    opacity: 1;
    visibility: visible;
}

.tab-container-inner {
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    background-color: #180337;
    align-items: flex-start;
    gap: 0 40px;
}
.tab-left {
    flex-basis: 100%;
    max-width: 50%;
}
.tab-left-row {
    display: flex;
    margin: 0 0 40px;
}
.tab-left-row:last-child {
    margin: 0;
}
.month-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    color: #FFFFFF;
}
.tab-month {
    max-width: 30%;
    flex-basis: 100%;
}
.tab-list-content ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}
.tab-list-content ul:last-child {
    margin: 0;
}
.tab-list-content ul li {
    margin: 8px 0;
    list-style: none;
}
.tab-list-content .sub-title {
    color: #8381F5;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
}
.tab-list-content ul li a {
    font-size: 16px;
    line-height: 160%;
    font-weight: normal;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s linear;
}
.tab-list-content ul li a:hover {
    color: #93F4D5;
}
.tab-list-content ul li a.active {
    color: #93F4D5;
    text-shadow: 0 0 1px #93F4D5;
}
.tab-right {
    flex-basis: 100%;
    max-width: 50%;
    background: #8381F5;
    background: linear-gradient(0deg,rgba(131, 129, 245, 0) 0%, rgba(131, 129, 245, 0.25) 100%);
    border-radius: 10px;
    overflow: hidden;
    max-width: 625px;
}
.changelog-nav {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    justify-content: space-between;
    background-color: rgba(87, 56, 214, 0.4);
}
.changelog-nav .prev-btn, .changelog-nav .next-btn {
    background-color: transparent;
    border: 1px solid #49F4EC;
    padding: 4px 16px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: normal;
    line-height: 160%;
    cursor: pointer;
    transition: all 0.3s linear;
}
.changelog-nav .prev-btn:hover, .changelog-nav .next-btn:hover {
    background-color: #49F4EC;
    color: #180337;
}
.changelog-content {
    padding: 24px;
}
.changelog-entry h3 {
    font-size: 18px !important;
    line-height: 130% !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    margin: 0 0 15px !important;
}
.changelog-entry p {
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    color: #FFFFFF;
}
.changelog-nav .prev-btn:disabled , .changelog-nav .next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}