/* Полноэкранный центрированный контейнер */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #02010f;
    color: #222;
}

.center-wrap {
    min-height: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.card {
    max-width: 380px;
    width: 100%;
}
.card-logo{

}
.card-logo-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.card-chart{
    margin:0 0 30px 0;
}
.card-chart-title{
    font-size: 32px;
    color:#fff;
    line-height: 150%;
    text-align: center;
    margin:0 0 30px 0;
}
.card-chart-rows{

}
.card-chart-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin:0 0 20px 0;
}
.card-chart-row-name{
    font-size: 16px;
    font-weight: 500;
    color: #c4c9d0;
    text-align: right;
}
.card-chart-row-value{
    font-size: 16px;
    font-weight: 500;
    color: #c4c9d0;
}

.card-chart-row-line{
    width: 100%;
    position: relative;
    display: flex;
    height: 20px;
    border-radius: 10px;
    background: #0d1823;
    margin:6px 0 0 0;
}
.card-chart-row-line span{
    position: absolute;
    top:0;
    left:0;
    display: flex;
    height: 20px;
    border-radius: 10px;
}

.presale{
    text-align: center;
    margin:0 0 100px 0;
}
.presale-title{
    font-size: 32px;
    color:#fff;
    line-height: 150%;
    margin:0 0 30px 0;
}
.presale-text{
    font-size: 16px;
    font-weight: 500;
    color: #c4c9d0;
    margin:0 0 10px 0;
}
.presale-button{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding:0 15px;
    border-radius: 4px;
    background: #2d6bc8;
    font-size: 16px;
    font-weight: 500;
    color:#fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}
.presale-button:hover{
    background: #3879da;
}
/* Небольшая адаптация для узких экранов */
@media (max-width: 420px) {

}