* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: white;
}
body {
    background: black;
    padding-bottom: 100px;
}
.header {
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}
.header .logoBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.header .logoBox .logo {
    width: 40px;
    height: 40px;
    background: url(./../images/VSU-Box-iOS-Default-512x512@1x.png) no-repeat;
    background-size: 100%;
}
.header .logoBox .name {
    font-weight: 600;
    font-size: 20px;
}
.header .menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}
.header .menu .item {
    transition: 0.5s;
    cursor: pointer;
}
.header .menu .item:hover {
    transform: scale(1.1);
    color: rgb(0, 122, 255)
}
.box1 {
    max-height: 600px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.box1 .right {
    background: url(./../images/Free\ iPhone\ Air1\ 1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    width: 500px;
    mask:  linear-gradient(rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
}
.box1 .left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.box1 .left .title {
    font-size: 56px;
    font-weight: 700;
}
.box1 .left .description {
    max-width: 400px;
    opacity: 0.5;
}
.box2 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.box2 .title {
    font-size: 36px;
    font-weight: 600;
}
.box2 .newsBox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.box2 .newsBox .news-box {
    background: rgb(28, 28, 30);
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.5s;
}
.box2 .newsBox .news-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.box2 .newsBox .news-box .ntitle {
    font-size: 20px;
    font-weight: 600;
}
.box2 .newsBox .news-box .text {
    font-size: 14px;
    font-weight: 400;
}
.box2 .newsBox .news-box .box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}
.box2 .newsBox .news-box .box .author {
    font-weight: 500;
}
.box2 .newsBox .news-box .box .date {
    font-size: 14px;
    opacity: 0.5;
}
.box1 .left .buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;  
}
.box1 .left .buttons .button {
    height: 35px;
    background: rgb(28, 28, 30);
    padding-left: 15px;
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius:35px;
    cursor: pointer;
    gap: 10px;
    transition: 0.5s;
}
.box1 .left .buttons .button .icon {
    width: 20px;
    height: 20px;
    transition: 0.5s;
    background: white;
}
.box1 .left .buttons .button .icon.Android {
    mask-image: url(https://vsu-box.whoennrl.ru/app/assets/iphone.gen1.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: left center;
}

.box1 .left .buttons .button .icon.Windows {
    mask-image: url(https://vsu-box.whoennrl.ru/app/assets/square.grid.2x2.fill.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: left center;
}
.box1 .left .buttons .button .icon.macOS {
    mask-image: url(https://vsu-box.whoennrl.ru/app/assets/apple.logo.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: left center;
}
.box1 .left .buttons .button .icon.web {
    mask-image: url(https://vsu-box.whoennrl.ru/app/assets/globe.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: left center;
}
.box1 .left .buttons .button .icon.iOS {
    mask-image: url(https://vsu-box.whoennrl.ru/app/assets/apple.logo.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: left center;
}
.box1 .left .buttons .button:hover {
    background: rgb(0, 122, 255);
    color: white;
}
.box1 .left .buttons .button:hover .icon {
    background: white;
}
.newsContent {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}
.newsContent .title {
    font-size: 40px;
    font-weight: 600;
}
.newsContent .badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.newsContent .content img {
    border-radius: 20px;
    max-width: 100%;
}
.newsContent .content {
    display: flex;
    flex-direction: column;
    line-height: 36px;
    gap: 20px;
    font-size: 16px;
}
a {
    font-weight: 600;
    text-decoration: none;
    color: rgb(0, 122, 255)
}
.newsContent .content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 30px;
    margin-bottom: 10px;
    box-sizing: content-box;
    line-height: 26px;
}
.newsContent .content > h1, h2, h3, h4, h5, h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.allNews {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}
.allNews .title {
    font-size: 40px;
    font-weight: 600;
}
.allNews .news-box {
    background: rgb(28, 28, 30);
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.5s;
}
.allNews .news-box .ntitle {
    font-size: 20px;
    font-weight: 600;
}
.allNews .news-box .text {
    font-size: 14px;
    font-weight: 400;
}
.allNews .news-box .box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}
.allNews .news-box .box .author {
    font-weight: 500;
}
.allNews .news-box .box .date {
    font-size: 14px;
    opacity: 0.5;
}
.footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0.5;
    padding-bottom: 0px;
}
.downloadContent {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}
.downloadContent .title {
    font-size: 40px;
    font-weight: 600;
}
.downloadContent .pretitle {
    font-size: 24px;
    font-weight: 600;
}
.downloadContent .text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.downloadContent .imageBox img {
    max-width: 400px;
}
.downloadContent .imageBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.roadmap {
    display: block;
}
.roadmap .item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch
}
.roadmap .item .dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.roadmap .item .dot span {
    width: 15px;
    height: 15px;
    background: white;
    display: block;
    border-radius: 1000px;
    margin-left: -41px;
}
.roadmap .item .content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.roadmap .item .iTitle {
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
}
.roadmap .item .iDescription {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.2px;
    margin-bottom: 20px;
    max-width: 500px;
}
.roadmap .item .line {
    width: 2px;
    min-width: 2px;
    background: white;
    display: block;
}
.roadmap .item:first-child .line {
    background: linear-gradient(0deg, white 51%, rgba(0, 0, 0, 0) 50%)
}
.roadmap .item:last-child .line {
    background: linear-gradient(180deg, white 51%, rgba(0, 0, 0, 0) 50%)
}
.box3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}
.box3 .left .title {
    font-size: 36px;
    font-weight: 600;
}
.snos {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.5;
    font-style: italic;
}
.newsContent .badges .views {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.newsContent .badges .views::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background-color: white;
    mask-image: url(https://vsu-box.whoennrl.ru/app/assets/eye.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}

@media screen and (max-width: 1000px) {
    .header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .box1 {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 20px;
    }
    .box1 .left {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .box2 {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }
    .box2 .newsBox {
        display: flex;
        flex-direction: column;
    }
    .box3 {
        display: flex;
        flex-direction: column;
    }
    .box3 .left {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px
    }
    .box3 .right {
        width: 100%;
        padding: 20px;
        padding-left: 40px;
    }
    .snos {
        padding: 20px;
    }
    .newsContent {
        padding: 20px;
    }
    .newsContent img {
        max-width: 100%;
    }
    .allNews {
        padding: 20px;
    }
    .downloadContent {
        padding: 20px;
    }
    .downloadContent img {
        max-width: 100%;
    }

    .footer {
        flex-wrap: wrap;
    }
}

.downloadContent .releases {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.downloadContent .releases .release {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgb(28, 28, 30);
    border-radius: 30px;
    outline: 1px solid rgba(255, 255, 255, 0.1);
    outline-offset: -1px;
}
.downloadContent .releases .release .version-title {
    font-size: 24px;
    font-weight: 600;
}
.downloadContent .releases .release .version-description {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.5;
} 
.downloadContent .releases .release .download-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    background : rgb(0, 122, 255);
    color: white;
    padding: 10px;
    border-radius: 20px;
}
.downloadContent .releases .release .download-button:hover {
    background: rgb(0, 100, 210);
}
.downloadContent .releases .release .version-badges {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}
.downloadContent .releases .release .version-badges .version-channel {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    background: rgb(28, 28, 30);
    outline: 1px solid rgba(255, 255, 255, 0.1);
    outline-offset: -1px;
    padding: 10px;
    border-radius: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 14px;
}
.newsContent blockquote {
    border-left: 2px solid rgb(0, 122, 255);
    padding-left: 10px;
    margin-left: 0px;
    margin-right: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}