/* === ОБЩИЕ СТИЛИ КАРТОЧЕК === */
.achieve-item,
.boost-item,
.leader-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    transition: all 0.2s;
    pointer-events: auto;
    gap: 10px;
}

.achieve-item:active,
.boost-item:active {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(0.99);
}

.boost-item.boost-locked {
    opacity: 0.5;
}

/* Карточка достижений */
.achieve-item.locked {
    filter: grayscale(80%);
    opacity: 0.45;
}

.achieve-img,
.boost-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    object-fit: contain;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
}

.achieve-info,
.boost-info {
    flex-grow: 1;
    min-width: 0;
}

.achieve-name,
.boost-name {
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 3px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.achieve-desc,
.boost-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.3;
}

.achieve-status {
    font-size: 18px;
    flex-shrink: 0;
}

/* === КНОПКА ПОКУПКИ === */
.buy-btn {
    background: linear-gradient(135deg, #ffd700, #ff8800);
    color: #000;
    border: none;
    padding: 9px 13px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    min-width: 76px;
    font-size: 12px;
    pointer-events: auto;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
    text-align: center;
    line-height: 1.4;
}

.buy-btn:active {
    transform: scale(0.93);
}

.buy-btn:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

/* === ТАБЛИЦА ЛИДЕРОВ === */
.leader-item {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    padding: 14px 16px;
    border-radius: 14px;
}

.your-score {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 136, 0, 0.08)) !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    color: var(--accent) !important;
    font-weight: 800 !important;
}