.tournament-page {
    width: calc(100vw - 40px);
    max-width: 1380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.tournament-page .top {
    background: url(../../../system/slider/tournament/background.png);
    width: 100%;
    max-width: 1146px;
    height: 381px;
    background-size: 100%;
    margin-top: 170px;
    border-radius: 24px;
    position: relative;
    z-index: 0;
}

.tournament-page .tournament-top-fix {
    width: 100%;
    max-width: 1146px;
    height: 381px;
}

.tournament-page .top .layer {
    width: 100%;
    height: 381px;
    margin-top: -381px;
    display: flex;
} 
.tournament-page .top .layer .girl {
    width: 585px;
    height: 557px;
    background: url(../../../system/slider/tournament/girl.png);
    background-size: 100%;
    background-repeat: no-repeat;
    transform: scale(-1, 1) translate(30px, -176px);
} 
.tournament-page .top .layer:first-child {
    justify-content: flex-end;
    margin-top: 0;
}
.tournament-page .top .layer:last-child {}
.tournament-page .top .layer.details {
    width: calc(100% - 80px);
    height: calc(381px - 80px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
} 

.tournament-page .top .layer.details .title {
    font-size: 64px;
    font-weight: 900;
    line-height: 100%;
    text-shadow: 0 5.043px 0 rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    color: #fff;
}
.tournament-page .top .layer.details .title span {
    color: #F5D919;
}
.tournament-page .top .layer.details .descriptions {font-size: 14px;font-weight: 500;color: #fff;}
.tournament-page .top .layer.details .buttons {
    display: flex;
    gap: 10px;
}
.tournament-page .top .layer.details .buttons .white-button {
    color: #DD7A32;
    height: 65px;
    padding: 0px 60px;
}

.tournament-page .top .layer.details .tournament-timer {
    border: 1px solid rgba(18, 47, 80, 0.1);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    backdrop-filter: blur(10px);
    -o-backdrop-filter:  blur(10px);
    -moz-backdrop-filter: blur(10px);
    display: flex;
    width: 210px;
    height: 65px;
    justify-content: space-evenly;
}
.tournament-page .top .layer.details .tournament-timer .timer-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tournament-page .top .layer.details .tournament-timer .timer-zone .title {
    text-shadow: unset;
    font-size: 10px !important;
    line-height: unset !important;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}
.tournament-page .top .layer.details .tournament-timer .timer-zone .value {color: #fff;font-size: 17px;font-weight: bold;}


.tournament-page .tasks {
    display: flex;
    width: 100%;
    max-width: 1146px;
    gap: 20px;
}
.tournament-page .tasks .task {
    border: 1px solid rgba(224, 125, 50, 0.1);
    border-radius: 24px;
    background: rgba(255, 158, 48, 0.1);
    padding: 20px;
    overflow: hidden;
}
.tournament-page .tasks .task .task-top {
    display: flex;
    justify-content: space-between;
}
.tournament-page .tasks .task .task-top .left {display: flex;flex-direction: column;gap: 10px;}
.tournament-page .tasks .task .task-top .left span {
    color: #fff;
    background: #E07D32;
    padding: 5px 10px;
    border-radius: 24px;
    font-size: 12px;
    display: flex;
    width: fit-content;
}
.tournament-page .tasks .task .task-top .left .title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.tournament-page .tasks .task .task-top .right {}
.tournament-page .tasks .task .task-top .right .icon {
    width: 81px;
    height: 81px;
    background: #E07D32;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(31px, -31px);
}
.tournament-page .tasks .task .task-top .right .icon svg {}
.tournament-page .tasks .task .description {
    font-size: 16px;
    font-weight: 300;
    margin-top: -10px;
}

.tournament-page .tournament-table {
    width: 100%;
    max-width: 1146px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tournament-page .tournament-table .title {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}
.tournament-page .tournament-table .tt-table {
    width: calc(100% - 40px);
    max-width: 1146px;
    display: flex;
    flex-direction: column;
    background: #101626;
    padding: 20px;
    border-radius: 24px;
    gap: 10px;
}
.tournament-page .tournament-table .tt-table .thead {display: flex;justify-content: space-between;width: calc(100% - 40px);padding: 0px 20px;}
.tournament-page .tournament-table .tt-table .thead .th {
    font-size: 12px !important;
    color: rgba(48,52,79,0.7);
}
.tournament-page .tournament-table .tt-table .tbody {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tournament-page .tournament-table .tt-table .tbody .tr {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 50px;
    background: rgba(79,84,106,0.1);
    border-radius: 14px;
    align-items: center;
    width: calc(100% - 42px);
    padding: 0px 20px;
}
.tournament-page .tournament-table .tt-table .tbody .tr .td {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
}

.tournament-page .tournament-table .tt-table .place {
    width: 55px;
}
.tournament-page .tournament-table .tt-table .username {
    width: calc(60% - 55px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.tournament-page .tournament-table .tt-table .wins {
    width: 20%;
    text-align: center;
}
.tournament-page .tournament-table .tt-table .prize {
    width: 20%;
    text-align: right;
}

.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(1) {
    border-radius: 14px;
    border: 1px solid rgba(245, 217, 25, 0.10);
    background: linear-gradient(90deg, rgba(245, 217, 25, 0.50) 0%, rgba(245, 217, 25, 0.10) 100%);
}
.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(1) .place {
    color: #F5D919;
}
.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(1) .prize {
    color: #F5D919;
    font-weight: 500;
}
.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(2) {
    border-radius: 14px;
    border: 1px solid #C0C0C0;
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.50) 0%, rgba(255, 255, 255, 0.10) 100%);
}
.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(2) .place {
    color: #aaafb8;
}
.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(2) .prize {
    color: #aaafb8;
    font-weight: 500;
}
.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(3) {
    border-radius: 14px;
    border: 1px solid rgba(205, 127, 50, 0.10);
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.50) 0%, rgba(205, 127, 50, 0.10) 100%);
}
.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(3) .place {
    color: #e1b085;
}
.tournament-page .tournament-table .tt-table .tbody .tr:nth-child(3) .prize {
    color: #e1b085;
    font-weight: 500;
}

@media (max-width: 1154px) {.tournament-page .top .layer .girl {transform: scale(-1, 1) scale(0.8) translate(-20px, -150px);}}
@media (max-width: 1030px) {.tournament-page .top .layer .girl {transform: scale(-1, 1) scale(0.7) translate(-110px, -132px);}}
@media (max-width: 954px) {
    .tournament-page .top .layer .girl {transform: scale(-1, 1) scale(0.7) translate(-200px, -132px);}

    .tournament-page .top {
        overflow: hidden;
        width: 100%;
        background-size: 130%;
    }
}

@media (max-width: 800px) {
    .tournament-page .top .layer.details .title {
        font-size: 40px;
    }
    .tournament-page .top .layer.details .descriptions {
        width: 59%;
    }
    .tournament-page .top .layer.details .buttons .white-button {
        padding: 0px 20px;
        height: 50px;
    }
    .tournament-page .top .layer.details .tournament-timer {
        height: 50px;
        width: auto;
        padding: 0px 15px;
        gap: 11px;
    }
    .tournament-page .top .layer.details .tournament-timer .timer-zone {}
    .tournament-page .top .layer.details .tournament-timer .timer-zone .title {}
    .tournament-page .top .layer.details .tournament-timer .timer-zone .value {}

    .tournament-page .top {}
    .tournament-page .top .layer .girl {}
}

@media (max-width: 575px) {
    .tournament-page .top {
        background-size: 200%;
    }
    .tournament-page .top .layer .girl {
        transform: scale(-1, 1) scale(0.7) translate(-240px, -32px);
    }
    .tournament-page .top .layer:first-child {}
}

@media (max-width: 450px) {
    .tournament-page .top .layer.details .title {
        font-size: 34px;
    }
    .tournament-page .top .layer.details .descriptions {
        width: 70%;
    }

    .tournament-page .top {
        background-size: 230%;
    }

    .tournament-page .top .layer .girl {
        transform: scale(-1, 1) scale(0.7) translate(-160px, 68px);
    }

    .tournament-page .top .layer.details .tournament-timer {
        width: 201px;
        padding: 0;
    }

    .tournament-page .top .layer.details .buttons {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 1154px) {
    .tournament-page .top {
        margin-top: 50px;
    }
}

@media (max-width: 1030px) {
    .tournament-page .top {
        margin-top: 0px;
    }
}

@media (max-width: 800px) {
    .tournament-page .tasks {
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    .tournament-page .tournament-table .tt-table .wins {
        display: none;
    }

    .tournament-page .tournament-table .tt-table .username {
        width: calc(80% - 55px)
    }
}

.tournament-page .faq {
    width: 100%;
    max-width: 1146px;
}