.participants__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.participants__card-bg {
    background: linear-gradient(137deg, #da8207 0%, #dd9318 9.33%, #ffcb3c 23.04%, #ffcb3c 67.88%, #e39c1e 79.92%, #fbc63a 83.56%), #464646;
    padding: 2px;
    width: calc(100% / 3 - (48px / 3));
}

.participants__card {
    padding: 24px;
    background: #000;
    width: 100%;
    height: 100%;
}

.participants__card-category {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    background: linear-gradient(137deg, #da8207 0%, #dd9318 9.33%, #ffcb3c 23.04%, #ffcb3c 67.88%, #e39c1e 79.92%, #fbc63a 83.56%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.participants__card-category-image {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.participants__card-name {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 144%;
    color: #fff;
    margin-top: 6px;
    word-break: break-word;
}

.participants__card-votes {
    margin-top: 20px;
    width: 100%;
}

.participants__card-votes-progress {
    width: 100%;
    background: #535353;
    border-radius: 16px;
    height: 8px;
}

.participants__card-votes-progress-inner {
    background: linear-gradient(137deg, #da8207 0%, #dd9318 9.33%, #ffcb3c 23.04%, #ffcb3c 67.88%, #e39c1e 79.92%, #fbc63a 83.56%);
    height: 100%;
    border-radius: 16px;
}

.participants__card-votes-text {
    margin-top: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.participants__card-votes-text-delimiter {
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.participants__card-actions {
    margin-top: 20px;
}

.participants__type {
    margin-top: 40px;
    width: 100%;
}

.switch {
    width: 100%;
    display: flex;
    gap: 6px;
    border: 2px solid #da8207;
    padding: 6px;
    width: 100%;
    height: 61px;
    position: relative;
}

.switch__item {
    flex: 1;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms;
    z-index: 2;
    position: relative;
    text-align: center;
}

.switch__item:hover {
    opacity: 0.8;
}

.switch__item.active {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #945600;
}

.switch__pointer {
    background: linear-gradient(137deg, #da8207 0%, #dd9318 9.33%, #ffcb3c 23.04%, #ffcb3c 67.88%, #e39c1e 79.92%, #fbc63a 83.56%), #464646;
    padding: 10px;
    width: 50%;
    height: 49px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: all 300ms;
    z-index: 1;
}

.participants__filters {
    margin-top: 40px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.participants__filters-item {
    flex: 1;
}

.participants__filters-item-label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    color: #a4a4a4;
}

.participants__filters-item-control {
    margin-top: 8px;
    width: 100%;
}

.participants-page {
    margin-top: 40px;
}

.vote-btn-bg {
    background: linear-gradient(137deg, #da8207 0%, #dd9318 9.33%, #ffcb3c 23.04%, #ffcb3c 67.88%, #e39c1e 79.92%, #fbc63a 83.56%);
    padding: 2px;
    width: 100%;
    height: 100%;
}

.vote-btn {
    width: 100%;
    height: 60px;
    background: #000;;
    transition: all 0.3s ease;
}

.vote-btn:hover {
    opacity: 0.9;
}

.vote-btn-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000;
}

.vote-btn-inner span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffcb3c;
}

.vote-btn-inner img {
    width: 17px;
    height: 16px;
    flex-shrink: 0;
}

.participants__list.dream {
    display: none;
}

.participants__list-title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.participants__list-group-title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}

.participants__list-group {
    position: relative;
    padding: 24px;
}

.participants__list-group {
    margin-top: 80px;
}

.participants__list-group-border {
    position: absolute;
}

.participants__list-group-border.left {
    left: -3px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #804E00;
}
.participants__list-group-border.top {
    left: -3px;
    top: -3px;
    width: calc(100% + 6px);
    height: 3px;
    background: linear-gradient(90deg, #804E00 0%,#E1D29B 100%);
}
.participants__list-group-border.right {
    right: -3px;
    top: 0px;
    width: 3px;
    height: 100%;
    background: #E1D29B;
}
.participants__list-group-border.bottom {
    bottom: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: 3px;
    background: linear-gradient(0deg, #804E00 0%,#E1D29B 100%);
}

@media (max-width: 980px) {
    .participants__list {
        gap: 12px;
    }
    .participants__card-bg {
        width: calc(100% / 2 - (24px / 2));
    }
    .participants__filters-item {
        width: calc(100% / 2 - (24px / 2));
        flex: auto;
    }
    .switch__item,
    .switch__item.active {
        font-size: 20px;
    }
    .page_title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .participants__card-bg {
        width: 100%;
    }
    .participants__filters-item {
        width: 100%;
    }
    .page_title {
        font-size: 32px;
    }
    .switch__item,
    .switch__item.active {
        font-size: 16px;
    }
    .participants__list-title {
        font-size: 24px;
    }
    .participants__list-group-title {
        font-size: 28px;
    }
    .participants__list-group {
        padding: 16px;
    }
}

@media (max-width: 420px) {
    .page_title {
        font-size: 28px;
    }
    .switch__item,
    .switch__item.active {
        font-size: 14px;
    }
    .participants__list-title {
        font-size: 20px;
    }
    .participants__list-group-title {
        font-size: 24px;
    }
}