.history-container {
    padding: 0 3.5%;
    max-width: 1600px;
    margin: 15px 50px;
    width: 100%;
    z-index: 2;
}



.draw-title {
    font-size: 28px;
    font-weight: 400;
}

.draw-meta {
    font-size: 16px;
    color: #ffffff;
    display: flex;
    gap: 20px;
}

.status-active {
    color: #56e48a;
    font-weight: 400;
}

.content-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 550px; 
}

.promo-card-his {
    width: 100%;
    max-width: 550px;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 32px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.promo-fit-img-his {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.leaderboard {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 15px;
}

.table-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 11px;
    background: #2a2a2a;
    color: #fff;
}

.r1 { background: #812d2d; }
.r2 { background: #81632d; }
.r3 { background: #4d662c; }

.name {
    font-size: 14px;
    font-weight: 400;
}

.user-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-stats span:first-child {
    font-size: 14px;
    color: #ffffff;
}

.score {
    font-size: 14px;
    font-weight: 500;
    min-width: 35px;
    text-align: right;
}

/* Адаптив для узких экранов */
@media (max-width: 600px) {
    .content-stack {
        max-width: 100%;
    }
    .user-stats span:first-child {
        display: none;
    }
}