@import url(/static/styles/home.css);



body {
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}
*:not(input):not(textarea):not(select) {
    user-select: none;
}
.top-menu {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.top-menu .top-menu__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-family: 'Dela Gothic One';
    font-size: 24px;
}
.top-menu .top-menu__logo .top-menu__logo__text {
    font-family: 'Dela Gothic One';
}
.top-menu .top-menu__logo__image {
    width: 50px;
    height: 50px;
    background: url(/static/logo-dark/VSU-Box-iOS-Dark-128@1x.png) no-repeat;
    background-size: contain;
}
.top-menu .top-menu__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.top-menu .top-menu__links a {
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
}
.footer {
    background: rgb(28, 28, 30);
    width: 100%;
    margin-top: auto;
    padding: 40px;
}
.footer .footer__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-family: 'Dela Gothic One';
    font-size: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.footer .footer__logo .footer__logo__text {
    font-family: 'Dela Gothic One';
    font-size: 16px;
}
.footer .footer__logo__image {
    width: 50px;
    height: 50px;
    background: url(/static/logo-dark/VSU-Box-iOS-Dark-128@1x.png) no-repeat;
    background-size: contain;
}
.footer .footer__description {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgb(170, 170, 170);
    margin-top: 10px;
}
.footer .footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer .footer__column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer .footer__column__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
}
.footer .footer__column__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer .footer__column__links a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    opacity: 0.5;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}
.footer .footer__column__links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.content {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.content.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.content .big_title {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}
.content .text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}
.content .title {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 36px;
}
.content .post-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
}
.content a {
    text-decoration: underline;
    color: rgb(0, 122, 255);
}
.content .meta {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.5;
}
.content.article img {
    max-width: 100%;
}
.content.news-list .news-box {
    background: rgb(28, 28, 30);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 30px;
}
.content.news-list .news-box img {
    width: 100%;
    border-radius: 10px;
}
.content.news-list .all_news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.content.news-list .news-box .news-box__meta {
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    opacity: 0.5
}
.content.news-list .news-box .news-box__title {
    font-size: 24px;
    font-family: "Dela Gothic One", sans-serif;
}
.content.news-list .news-box .news-box__content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;   
    font-family: "Inter", sans-serif;
}
.clicker {
    cursor: pointer;
}
.content.report #issueForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-family: "Inter", sans-serif;
}
.content.report #issueForm .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.content.report #issueForm input, .content.report #issueForm textarea {
    background: rgb(28, 28, 30);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    outline: 1px solid rgba(255, 255, 255, 0.15);
    outline-offset: -1px;
    border: none;
    font-size: 16px;
    color: white;
    resize: none;
    font-family: "Inter", sans-serif;
}
.content.report #issueForm textarea {
    height: 150px;
}
.content.report #issueForm button {
    background: rgb(0, 122, 255);
    color: white;
    width: auto;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}
.content.report #issueForm .hint {
    opacity: 0.5;
}

.content.s404 img {
    width: 100%;
}
.content.developers .devs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.content.developers .devBox {
    background: rgb(28, 28, 30);
    border-radius: 30px;
    height: 400px; 
    position: relative; 
    overflow: hidden;
    display: flex;
    align-items: flex-end; 
}
.content.developers .devBox img {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.content.developers .devBox .infoBox {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0)); 
}
.content.developers .devBox .infoBox .name {
    font-size: 36px;
    font-family: "Dela Gothic One", sans-serif;
    color: #fff; 
}
.content.developers .devBox .infoBox .description {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #ccc;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Dela Gothic One", sans-serif;
    padding-bottom: 10px;
    padding-top: 10px;
}

.release {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: "Inter", sans-serif;
}
.release .top {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 140px;
    gap: 50px;
}
.release .top .logo-app {
    width: 100px;
    height: 100px;
    background: url(/static/logo-dark/VSU-Box-iOS-Dark-128@2x.png) no-repeat;
    background-size: 100%;
}
.release .top .data {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}
.release .top .data .title {
    font-size: 36px;
    font-weight: 900;
    font-family: "Dela Gothic One", sans-serif;
}
.release .top .data .description {
    font-size: 14px;
    font-weight: 400;
}
.release .top .data a {
    background: rgb(0, 122, 255);
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 50px;
    margin-top: auto;
    text-decoration: none;
}
.release a {
    color: rgb(0, 122, 255);
    text-decoration: none;
}
.release > h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
}
.release .box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-top: 1px solid rgb(28, 28, 30);
    padding-top: 20px;
}
.release .box .topBar {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.release .box .topBar .title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Dela Gothic One", sans-serif;
}
.release .box .screens {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
}
.release .box .screens img {
    max-width: 400px;
    max-height: 400px;
    border-radius: 20px;
}
.release .MetaBox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 20px;
}
.release .MetaBox .meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgb(28, 28, 30);
    padding: 20px;
    border-radius: 30px;
}
.release .MetaBox .meta .title {
    opacity: 0.5;
}
.release .miniMeta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}
.release .miniMeta .miniBox {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    color: rgb(0, 122, 255);
}
.release .miniMeta .miniBox .name {
    color: rgb(0, 122, 255);
}
.release .miniMeta .miniBox .icon {
    width: 25px;
    height: 25px;
    background: rgb(0, 122, 255);
}
.release .miniMeta .miniBox.privacy .icon {
    mask-image: url(https://vsu-box.whoennrl.ru/app/assets/hand.raised.fill.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}
.release .miniMeta .miniBox.report .icon {
    mask-image: url(https://vsu-box.whoennrl.ru/app/assets/exclamationmark.triangle.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}
@media screen and (max-width: 1000px) {
    .release {
        padding-left: 20px;
        padding-right: 20px;
    }
    .release .top {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
    .release .MetaBox {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .release .miniMeta {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

.release ul {
  list-style-type: none;
  padding-left: 0;
}

.release ul li::before {
  content: "— "; 
}








.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 .iContent {
    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%)
}

@media screen and (max-width: 1000px) {
    .footer .footer__columns {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .top-menu {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .top-menu .top-menu__links {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .content.news-list .all_news {
        display: flex;
        flex-direction: column;
    }
    .content .title {
        font-size: 24px;
    }
    .content.developers .devs {
        display: flex;
        flex-direction: column;
    }
    .release {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: none;
        margin-right: none;
    }
    .release .top {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
    .release .MetaBox {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .release .screens {
        max-width: calc(100vw - 40px);
    }
    .release .miniMeta {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .content {
        width: 100%;
        padding: 20px;
    }
}

.footer__logo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
    padding-bottom: 20px;
}
.footer__logo__text {
    opacity: 0.5;
}
.footer__logo__text:hover {
    opacity: 1;
}
.footer__logo .footer__deep__link {
    font-size: 16px;
    opacity: 0.5;
}
.footer__logo .footer__deep__link:hover {
    opacity: 1;
    text-decoration: underline;
}
.footer__logo .footer__deep__link_sep {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: white;
    mask-image: url(/static/imgs/chevron.right.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}